google-apis-discoveryengine_v1alpha 0.98.0 → 0.99.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 +4 -0
- data/lib/google/apis/discoveryengine_v1alpha/classes.rb +97 -9
- data/lib/google/apis/discoveryengine_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/discoveryengine_v1alpha/representations.rb +38 -1
- data/lib/google/apis/discoveryengine_v1alpha/service.rb +20 -79
- 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: dd253ed437936d825be942cb8a67fb37ce1d54117c076a80fc14d1c424acf957
|
|
4
|
+
data.tar.gz: 66c2363e749643dd79bd1e7331918cb4de65da19049b64f43316f20ca6d75409
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3638671ef5b9ce5c02c7a0cc6a3049e7398b89852d913a51bc09d8901450c5d710863093e6bfd6e2188cc5d739c64dfe951050ec23d4ac376ce7c2f0986ac3d2
|
|
7
|
+
data.tar.gz: 056d0d1f6a8660a40cae7d7963f09400eb0d623660d589411d55f357eae60d384856552a8a784fcc1a980e5c93036a3ec0aba2d9e4f15045f6b871915d7b47b4
|
data/CHANGELOG.md
CHANGED
|
@@ -2232,6 +2232,11 @@ module Google
|
|
|
2232
2232
|
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DestinationConfig>]
|
|
2233
2233
|
attr_accessor :destination_configs
|
|
2234
2234
|
|
|
2235
|
+
# Output only. The dynamic tools fetched for this connector.
|
|
2236
|
+
# Corresponds to the JSON property `dynamicTools`
|
|
2237
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DynamicTool>]
|
|
2238
|
+
attr_accessor :dynamic_tools
|
|
2239
|
+
|
|
2235
2240
|
# Output only. The list of FQDNs of the data connector can egress to. This
|
|
2236
2241
|
# includes both FQDN derived from the customer provided instance URL and default
|
|
2237
2242
|
# per connector type FQDNs. Note: This field is derived from both the
|
|
@@ -2446,6 +2451,7 @@ module Google
|
|
|
2446
2451
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2447
2452
|
@data_source = args[:data_source] if args.key?(:data_source)
|
|
2448
2453
|
@destination_configs = args[:destination_configs] if args.key?(:destination_configs)
|
|
2454
|
+
@dynamic_tools = args[:dynamic_tools] if args.key?(:dynamic_tools)
|
|
2449
2455
|
@egress_fqdns = args[:egress_fqdns] if args.key?(:egress_fqdns)
|
|
2450
2456
|
@end_user_config = args[:end_user_config] if args.key?(:end_user_config)
|
|
2451
2457
|
@entities = args[:entities] if args.key?(:entities)
|
|
@@ -3672,6 +3678,44 @@ module Google
|
|
|
3672
3678
|
end
|
|
3673
3679
|
end
|
|
3674
3680
|
|
|
3681
|
+
# Configuration for dynamic tools.
|
|
3682
|
+
class GoogleCloudDiscoveryengineV1DynamicTool
|
|
3683
|
+
include Google::Apis::Core::Hashable
|
|
3684
|
+
|
|
3685
|
+
# Optional. The description of the tool.
|
|
3686
|
+
# Corresponds to the JSON property `description`
|
|
3687
|
+
# @return [String]
|
|
3688
|
+
attr_accessor :description
|
|
3689
|
+
|
|
3690
|
+
# Optional. The display name of the tool.
|
|
3691
|
+
# Corresponds to the JSON property `displayName`
|
|
3692
|
+
# @return [String]
|
|
3693
|
+
attr_accessor :display_name
|
|
3694
|
+
|
|
3695
|
+
# Optional. Whether the tool is enabled.
|
|
3696
|
+
# Corresponds to the JSON property `enabled`
|
|
3697
|
+
# @return [Boolean]
|
|
3698
|
+
attr_accessor :enabled
|
|
3699
|
+
alias_method :enabled?, :enabled
|
|
3700
|
+
|
|
3701
|
+
# Required. The name of the tool.
|
|
3702
|
+
# Corresponds to the JSON property `name`
|
|
3703
|
+
# @return [String]
|
|
3704
|
+
attr_accessor :name
|
|
3705
|
+
|
|
3706
|
+
def initialize(**args)
|
|
3707
|
+
update!(**args)
|
|
3708
|
+
end
|
|
3709
|
+
|
|
3710
|
+
# Update properties of this object
|
|
3711
|
+
def update!(**args)
|
|
3712
|
+
@description = args[:description] if args.key?(:description)
|
|
3713
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
3714
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
3715
|
+
@name = args[:name] if args.key?(:name)
|
|
3716
|
+
end
|
|
3717
|
+
end
|
|
3718
|
+
|
|
3675
3719
|
# Metadata related to the progress of the SiteSearchEngineService.
|
|
3676
3720
|
# EnableAdvancedSiteSearch operation. This will be returned by the google.
|
|
3677
3721
|
# longrunning.Operation.metadata field.
|
|
@@ -7507,6 +7551,11 @@ module Google
|
|
|
7507
7551
|
# @return [String]
|
|
7508
7552
|
attr_accessor :name
|
|
7509
7553
|
|
|
7554
|
+
# Observability config for a resource.
|
|
7555
|
+
# Corresponds to the JSON property `observabilityConfig`
|
|
7556
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig]
|
|
7557
|
+
attr_accessor :observability_config
|
|
7558
|
+
|
|
7510
7559
|
# Output only. The reason why the agent was rejected. Only set if the state is
|
|
7511
7560
|
# PRIVATE, and got there via rejection.
|
|
7512
7561
|
# Corresponds to the JSON property `rejectionReason`
|
|
@@ -7559,6 +7608,7 @@ module Google
|
|
|
7559
7608
|
@language_code = args[:language_code] if args.key?(:language_code)
|
|
7560
7609
|
@managed_agent_definition = args[:managed_agent_definition] if args.key?(:managed_agent_definition)
|
|
7561
7610
|
@name = args[:name] if args.key?(:name)
|
|
7611
|
+
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
7562
7612
|
@rejection_reason = args[:rejection_reason] if args.key?(:rejection_reason)
|
|
7563
7613
|
@sharing_config = args[:sharing_config] if args.key?(:sharing_config)
|
|
7564
7614
|
@starter_prompts = args[:starter_prompts] if args.key?(:starter_prompts)
|
|
@@ -9246,11 +9296,6 @@ module Google
|
|
|
9246
9296
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswerReferenceChunkInfo]
|
|
9247
9297
|
attr_accessor :chunk_info
|
|
9248
9298
|
|
|
9249
|
-
# Output only. The search queries that produced this reference.
|
|
9250
|
-
# Corresponds to the JSON property `queries`
|
|
9251
|
-
# @return [Array<String>]
|
|
9252
|
-
attr_accessor :queries
|
|
9253
|
-
|
|
9254
9299
|
# Structured search information.
|
|
9255
9300
|
# Corresponds to the JSON property `structuredDocumentInfo`
|
|
9256
9301
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswerReferenceStructuredDocumentInfo]
|
|
@@ -9268,7 +9313,6 @@ module Google
|
|
|
9268
9313
|
# Update properties of this object
|
|
9269
9314
|
def update!(**args)
|
|
9270
9315
|
@chunk_info = args[:chunk_info] if args.key?(:chunk_info)
|
|
9271
|
-
@queries = args[:queries] if args.key?(:queries)
|
|
9272
9316
|
@structured_document_info = args[:structured_document_info] if args.key?(:structured_document_info)
|
|
9273
9317
|
@unstructured_document_info = args[:unstructured_document_info] if args.key?(:unstructured_document_info)
|
|
9274
9318
|
end
|
|
@@ -13850,6 +13894,11 @@ module Google
|
|
|
13850
13894
|
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDestinationConfig>]
|
|
13851
13895
|
attr_accessor :destination_configs
|
|
13852
13896
|
|
|
13897
|
+
# Output only. The dynamic tools fetched for this connector.
|
|
13898
|
+
# Corresponds to the JSON property `dynamicTools`
|
|
13899
|
+
# @return [Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDynamicTool>]
|
|
13900
|
+
attr_accessor :dynamic_tools
|
|
13901
|
+
|
|
13853
13902
|
# Output only. The list of FQDNs of the data connector can egress to. This
|
|
13854
13903
|
# includes both FQDN derived from the customer provided instance URL and default
|
|
13855
13904
|
# per connector type FQDNs. Note: This field is derived from both the
|
|
@@ -14065,6 +14114,7 @@ module Google
|
|
|
14065
14114
|
@data_protection_policy = args[:data_protection_policy] if args.key?(:data_protection_policy)
|
|
14066
14115
|
@data_source = args[:data_source] if args.key?(:data_source)
|
|
14067
14116
|
@destination_configs = args[:destination_configs] if args.key?(:destination_configs)
|
|
14117
|
+
@dynamic_tools = args[:dynamic_tools] if args.key?(:dynamic_tools)
|
|
14068
14118
|
@egress_fqdns = args[:egress_fqdns] if args.key?(:egress_fqdns)
|
|
14069
14119
|
@end_user_config = args[:end_user_config] if args.key?(:end_user_config)
|
|
14070
14120
|
@entities = args[:entities] if args.key?(:entities)
|
|
@@ -15888,6 +15938,44 @@ module Google
|
|
|
15888
15938
|
end
|
|
15889
15939
|
end
|
|
15890
15940
|
|
|
15941
|
+
# Configuration for dynamic tools.
|
|
15942
|
+
class GoogleCloudDiscoveryengineV1alphaDynamicTool
|
|
15943
|
+
include Google::Apis::Core::Hashable
|
|
15944
|
+
|
|
15945
|
+
# Optional. The description of the tool.
|
|
15946
|
+
# Corresponds to the JSON property `description`
|
|
15947
|
+
# @return [String]
|
|
15948
|
+
attr_accessor :description
|
|
15949
|
+
|
|
15950
|
+
# Optional. The display name of the tool.
|
|
15951
|
+
# Corresponds to the JSON property `displayName`
|
|
15952
|
+
# @return [String]
|
|
15953
|
+
attr_accessor :display_name
|
|
15954
|
+
|
|
15955
|
+
# Optional. Whether the tool is enabled.
|
|
15956
|
+
# Corresponds to the JSON property `enabled`
|
|
15957
|
+
# @return [Boolean]
|
|
15958
|
+
attr_accessor :enabled
|
|
15959
|
+
alias_method :enabled?, :enabled
|
|
15960
|
+
|
|
15961
|
+
# Required. The name of the tool.
|
|
15962
|
+
# Corresponds to the JSON property `name`
|
|
15963
|
+
# @return [String]
|
|
15964
|
+
attr_accessor :name
|
|
15965
|
+
|
|
15966
|
+
def initialize(**args)
|
|
15967
|
+
update!(**args)
|
|
15968
|
+
end
|
|
15969
|
+
|
|
15970
|
+
# Update properties of this object
|
|
15971
|
+
def update!(**args)
|
|
15972
|
+
@description = args[:description] if args.key?(:description)
|
|
15973
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
15974
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
15975
|
+
@name = args[:name] if args.key?(:name)
|
|
15976
|
+
end
|
|
15977
|
+
end
|
|
15978
|
+
|
|
15891
15979
|
# Defines embedding config, used for bring your own embeddings feature.
|
|
15892
15980
|
class GoogleCloudDiscoveryengineV1alphaEmbeddingConfig
|
|
15893
15981
|
include Google::Apis::Core::Hashable
|
|
@@ -26279,9 +26367,9 @@ module Google
|
|
|
26279
26367
|
# Required. The ID to use for the Collection, which will become the final
|
|
26280
26368
|
# component of the Collection's resource name. A new Collection is created as
|
|
26281
26369
|
# part of the DataConnector setup. DataConnector is a singleton resource under
|
|
26282
|
-
# Collection, managing all DataStores of the Collection.
|
|
26283
|
-
#
|
|
26284
|
-
#
|
|
26370
|
+
# Collection, managing all DataStores of the Collection. Should conform to [RFC-
|
|
26371
|
+
# 1034](https://tools.ietf.org/html/rfc1034) standard with a length limit of 63
|
|
26372
|
+
# characters. Otherwise, an `INVALID_ARGUMENT` error is returned.
|
|
26285
26373
|
# Corresponds to the JSON property `collectionId`
|
|
26286
26374
|
# @return [String]
|
|
26287
26375
|
attr_accessor :collection_id
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DiscoveryengineV1alpha
|
|
18
18
|
# Version of the google-apis-discoveryengine_v1alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.99.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 = "20260317"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -580,6 +580,12 @@ module Google
|
|
|
580
580
|
include Google::Apis::Core::JsonObjectSupport
|
|
581
581
|
end
|
|
582
582
|
|
|
583
|
+
class GoogleCloudDiscoveryengineV1DynamicTool
|
|
584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
585
|
+
|
|
586
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
587
|
+
end
|
|
588
|
+
|
|
583
589
|
class GoogleCloudDiscoveryengineV1EnableAdvancedSiteSearchMetadata
|
|
584
590
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
585
591
|
|
|
@@ -2506,6 +2512,12 @@ module Google
|
|
|
2506
2512
|
include Google::Apis::Core::JsonObjectSupport
|
|
2507
2513
|
end
|
|
2508
2514
|
|
|
2515
|
+
class GoogleCloudDiscoveryengineV1alphaDynamicTool
|
|
2516
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2517
|
+
|
|
2518
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2519
|
+
end
|
|
2520
|
+
|
|
2509
2521
|
class GoogleCloudDiscoveryengineV1alphaEmbeddingConfig
|
|
2510
2522
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2511
2523
|
|
|
@@ -6483,6 +6495,8 @@ module Google
|
|
|
6483
6495
|
property :data_source, as: 'dataSource'
|
|
6484
6496
|
collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DestinationConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DestinationConfig::Representation
|
|
6485
6497
|
|
|
6498
|
+
collection :dynamic_tools, as: 'dynamicTools', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DynamicTool, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DynamicTool::Representation
|
|
6499
|
+
|
|
6486
6500
|
collection :egress_fqdns, as: 'egressFqdns'
|
|
6487
6501
|
property :end_user_config, as: 'endUserConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DataConnectorEndUserConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1DataConnectorEndUserConfig::Representation
|
|
6488
6502
|
|
|
@@ -6856,6 +6870,16 @@ module Google
|
|
|
6856
6870
|
end
|
|
6857
6871
|
end
|
|
6858
6872
|
|
|
6873
|
+
class GoogleCloudDiscoveryengineV1DynamicTool
|
|
6874
|
+
# @private
|
|
6875
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6876
|
+
property :description, as: 'description'
|
|
6877
|
+
property :display_name, as: 'displayName'
|
|
6878
|
+
property :enabled, as: 'enabled'
|
|
6879
|
+
property :name, as: 'name'
|
|
6880
|
+
end
|
|
6881
|
+
end
|
|
6882
|
+
|
|
6859
6883
|
class GoogleCloudDiscoveryengineV1EnableAdvancedSiteSearchMetadata
|
|
6860
6884
|
# @private
|
|
6861
6885
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -7848,6 +7872,8 @@ module Google
|
|
|
7848
7872
|
property :managed_agent_definition, as: 'managedAgentDefinition', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaManagedAgentDefinition, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaManagedAgentDefinition::Representation
|
|
7849
7873
|
|
|
7850
7874
|
property :name, as: 'name'
|
|
7875
|
+
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig::Representation
|
|
7876
|
+
|
|
7851
7877
|
property :rejection_reason, as: 'rejectionReason'
|
|
7852
7878
|
property :sharing_config, as: 'sharingConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentSharingConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAgentSharingConfig::Representation
|
|
7853
7879
|
|
|
@@ -8359,7 +8385,6 @@ module Google
|
|
|
8359
8385
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8360
8386
|
property :chunk_info, as: 'chunkInfo', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswerReferenceChunkInfo, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswerReferenceChunkInfo::Representation
|
|
8361
8387
|
|
|
8362
|
-
collection :queries, as: 'queries'
|
|
8363
8388
|
property :structured_document_info, as: 'structuredDocumentInfo', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswerReferenceStructuredDocumentInfo, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswerReferenceStructuredDocumentInfo::Representation
|
|
8364
8389
|
|
|
8365
8390
|
property :unstructured_document_info, as: 'unstructuredDocumentInfo', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswerReferenceUnstructuredDocumentInfo, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaAnswerReferenceUnstructuredDocumentInfo::Representation
|
|
@@ -9623,6 +9648,8 @@ module Google
|
|
|
9623
9648
|
property :data_source, as: 'dataSource'
|
|
9624
9649
|
collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDestinationConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDestinationConfig::Representation
|
|
9625
9650
|
|
|
9651
|
+
collection :dynamic_tools, as: 'dynamicTools', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDynamicTool, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDynamicTool::Representation
|
|
9652
|
+
|
|
9626
9653
|
collection :egress_fqdns, as: 'egressFqdns'
|
|
9627
9654
|
property :end_user_config, as: 'endUserConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig::Representation
|
|
9628
9655
|
|
|
@@ -10166,6 +10193,16 @@ module Google
|
|
|
10166
10193
|
end
|
|
10167
10194
|
end
|
|
10168
10195
|
|
|
10196
|
+
class GoogleCloudDiscoveryengineV1alphaDynamicTool
|
|
10197
|
+
# @private
|
|
10198
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10199
|
+
property :description, as: 'description'
|
|
10200
|
+
property :display_name, as: 'displayName'
|
|
10201
|
+
property :enabled, as: 'enabled'
|
|
10202
|
+
property :name, as: 'name'
|
|
10203
|
+
end
|
|
10204
|
+
end
|
|
10205
|
+
|
|
10169
10206
|
class GoogleCloudDiscoveryengineV1alphaEmbeddingConfig
|
|
10170
10207
|
# @private
|
|
10171
10208
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -709,9 +709,9 @@ module Google
|
|
|
709
709
|
# Required. The ID to use for the Collection, which will become the final
|
|
710
710
|
# component of the Collection's resource name. A new Collection is created as
|
|
711
711
|
# part of the DataConnector setup. DataConnector is a singleton resource under
|
|
712
|
-
# Collection, managing all DataStores of the Collection.
|
|
713
|
-
#
|
|
714
|
-
#
|
|
712
|
+
# Collection, managing all DataStores of the Collection. Should conform to [RFC-
|
|
713
|
+
# 1034](https://tools.ietf.org/html/rfc1034) standard with a length limit of 63
|
|
714
|
+
# characters. Otherwise, an `INVALID_ARGUMENT` error is returned.
|
|
715
715
|
# @param [String] fields
|
|
716
716
|
# Selector specifying which fields to include in a partial response.
|
|
717
717
|
# @param [String] quota_user
|
|
@@ -1211,8 +1211,8 @@ module Google
|
|
|
1211
1211
|
# Required. Full resource name of DataConnector, such as `projects/`project`/
|
|
1212
1212
|
# locations/`location`/collections/`collection_id`/dataConnector`. If the caller
|
|
1213
1213
|
# does not have permission to access the DataConnector, regardless of whether or
|
|
1214
|
-
# not it exists, a PERMISSION_DENIED error is returned. If the requested
|
|
1215
|
-
# DataConnector does not exist, a NOT_FOUND error is returned.
|
|
1214
|
+
# not it exists, a `PERMISSION_DENIED` error is returned. If the requested
|
|
1215
|
+
# DataConnector does not exist, a `NOT_FOUND` error is returned.
|
|
1216
1216
|
# @param [String] fields
|
|
1217
1217
|
# Selector specifying which fields to include in a partial response.
|
|
1218
1218
|
# @param [String] quota_user
|
|
@@ -1339,7 +1339,7 @@ module Google
|
|
|
1339
1339
|
# data_protection_policy` Note: Support for these fields may vary depending on
|
|
1340
1340
|
# the connector type. For example, not all connectors support `
|
|
1341
1341
|
# destination_configs`. If an unsupported or unknown field path is provided, the
|
|
1342
|
-
# request will return an INVALID_ARGUMENT error.
|
|
1342
|
+
# request will return an `INVALID_ARGUMENT` error.
|
|
1343
1343
|
# @param [String] fields
|
|
1344
1344
|
# Selector specifying which fields to include in a partial response.
|
|
1345
1345
|
# @param [String] quota_user
|
|
@@ -1514,12 +1514,12 @@ module Google
|
|
|
1514
1514
|
# Required. The parent DataConnector resource name, such as `projects/`project`/
|
|
1515
1515
|
# locations/`location`/collections/`collection_id`/dataConnector`. If the caller
|
|
1516
1516
|
# does not have permission to list ConnectorRuns under this DataConnector,
|
|
1517
|
-
# regardless of whether or not this DataConnector exists, a PERMISSION_DENIED
|
|
1517
|
+
# regardless of whether or not this DataConnector exists, a `PERMISSION_DENIED`
|
|
1518
1518
|
# error is returned.
|
|
1519
1519
|
# @param [Fixnum] page_size
|
|
1520
1520
|
# Requested page size. Server may return fewer items than requested. If
|
|
1521
1521
|
# unspecified, defaults to 10. The maximum value is 50; values above 50 will be
|
|
1522
|
-
# coerced to 50. If this field is negative, an INVALID_ARGUMENT error is
|
|
1522
|
+
# coerced to 50. If this field is negative, an `INVALID_ARGUMENT` error is
|
|
1523
1523
|
# returned.
|
|
1524
1524
|
# @param [String] page_token
|
|
1525
1525
|
# A page token, received from a previous `ListConnectorRuns` call. Provide this
|
|
@@ -6374,6 +6374,16 @@ module Google
|
|
|
6374
6374
|
# @param [String] parent
|
|
6375
6375
|
# Required. The parent resource name. Format: `projects/`project`/locations/`
|
|
6376
6376
|
# location`/collections/`collection`/engines/`engine`/assistants/`assistant``
|
|
6377
|
+
# @param [String] filter
|
|
6378
|
+
# Optional. Filters the Agents list. Supported fields: * `display_name`: display
|
|
6379
|
+
# name of the agent. Supports `=`, `:`. * `id`: ID of the agent. Supports `=`. *
|
|
6380
|
+
# `state`: state of the agent. Supports `=`. * `type`: type of the agent.
|
|
6381
|
+
# Supports `=` (e.g., "GOOGLE_MADE", "OUR_AGENTS"). * `create_time`: timestamp
|
|
6382
|
+
# when the agent was created. Supports `=`, `>`, `<`, `>=`, `<=`. * `update_time`
|
|
6383
|
+
# : timestamp when the agent was last updated. Supports `=`, `>`, `<`, `>=`, `<=`
|
|
6384
|
+
# . * `has_active_iam_proposals`: whether the agent has pending proposals.
|
|
6385
|
+
# Supports `=`. Examples: * `display_name = "My Agent"` * `type = "GOOGLE_MADE"`
|
|
6386
|
+
# * `create_time > "2023-01-01T00:00:00Z"` * `has_active_iam_proposals = true`
|
|
6377
6387
|
# @param [String] order_by
|
|
6378
6388
|
# Optional. A comma-separated list of fields to order by, sorted in ascending
|
|
6379
6389
|
# order. Use "desc" after a field name for descending. Supported fields: * `
|
|
@@ -6405,11 +6415,12 @@ module Google
|
|
|
6405
6415
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
6406
6416
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
6407
6417
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
6408
|
-
def list_project_location_collection_engine_assistant_agents(parent, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
6418
|
+
def list_project_location_collection_engine_assistant_agents(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
6409
6419
|
command = make_simple_command(:get, 'v1alpha/{+parent}/agents', options)
|
|
6410
6420
|
command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListAgentsResponse::Representation
|
|
6411
6421
|
command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListAgentsResponse
|
|
6412
6422
|
command.params['parent'] = parent unless parent.nil?
|
|
6423
|
+
command.query['filter'] = filter unless filter.nil?
|
|
6413
6424
|
command.query['orderBy'] = order_by unless order_by.nil?
|
|
6414
6425
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
6415
6426
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
@@ -13487,76 +13498,6 @@ module Google
|
|
|
13487
13498
|
execute_or_queue_command(command, &block)
|
|
13488
13499
|
end
|
|
13489
13500
|
|
|
13490
|
-
# Creates a new User Store.
|
|
13491
|
-
# @param [String] parent
|
|
13492
|
-
# Required. The parent collection resource name, such as `projects/`project`/
|
|
13493
|
-
# locations/`location``.
|
|
13494
|
-
# @param [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserStore] google_cloud_discoveryengine_v1alpha_user_store_object
|
|
13495
|
-
# @param [String] user_store_id
|
|
13496
|
-
# Required. The ID of the User Store to create. The ID must contain only letters
|
|
13497
|
-
# (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum
|
|
13498
|
-
# length is 63 characters.
|
|
13499
|
-
# @param [String] fields
|
|
13500
|
-
# Selector specifying which fields to include in a partial response.
|
|
13501
|
-
# @param [String] quota_user
|
|
13502
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
|
13503
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
13504
|
-
# @param [Google::Apis::RequestOptions] options
|
|
13505
|
-
# Request-specific options
|
|
13506
|
-
#
|
|
13507
|
-
# @yield [result, err] Result & error if block supplied
|
|
13508
|
-
# @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserStore] parsed result object
|
|
13509
|
-
# @yieldparam err [StandardError] error object if request failed
|
|
13510
|
-
#
|
|
13511
|
-
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserStore]
|
|
13512
|
-
#
|
|
13513
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
13514
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
13515
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
13516
|
-
def create_project_location_user_store(parent, google_cloud_discoveryengine_v1alpha_user_store_object = nil, user_store_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
13517
|
-
command = make_simple_command(:post, 'v1alpha/{+parent}/userStores', options)
|
|
13518
|
-
command.request_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserStore::Representation
|
|
13519
|
-
command.request_object = google_cloud_discoveryengine_v1alpha_user_store_object
|
|
13520
|
-
command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserStore::Representation
|
|
13521
|
-
command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaUserStore
|
|
13522
|
-
command.params['parent'] = parent unless parent.nil?
|
|
13523
|
-
command.query['userStoreId'] = user_store_id unless user_store_id.nil?
|
|
13524
|
-
command.query['fields'] = fields unless fields.nil?
|
|
13525
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
13526
|
-
execute_or_queue_command(command, &block)
|
|
13527
|
-
end
|
|
13528
|
-
|
|
13529
|
-
# Deletes the User Store.
|
|
13530
|
-
# @param [String] name
|
|
13531
|
-
# Required. The name of the User Store to delete. Format: `projects/`project`/
|
|
13532
|
-
# locations/`location`/userStores/`user_store_id``
|
|
13533
|
-
# @param [String] fields
|
|
13534
|
-
# Selector specifying which fields to include in a partial response.
|
|
13535
|
-
# @param [String] quota_user
|
|
13536
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
|
13537
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
13538
|
-
# @param [Google::Apis::RequestOptions] options
|
|
13539
|
-
# Request-specific options
|
|
13540
|
-
#
|
|
13541
|
-
# @yield [result, err] Result & error if block supplied
|
|
13542
|
-
# @yieldparam result [Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation] parsed result object
|
|
13543
|
-
# @yieldparam err [StandardError] error object if request failed
|
|
13544
|
-
#
|
|
13545
|
-
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation]
|
|
13546
|
-
#
|
|
13547
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
13548
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
13549
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
13550
|
-
def delete_project_location_user_store(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
13551
|
-
command = make_simple_command(:delete, 'v1alpha/{+name}', options)
|
|
13552
|
-
command.response_representation = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation::Representation
|
|
13553
|
-
command.response_class = Google::Apis::DiscoveryengineV1alpha::GoogleLongrunningOperation
|
|
13554
|
-
command.params['name'] = name unless name.nil?
|
|
13555
|
-
command.query['fields'] = fields unless fields.nil?
|
|
13556
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
13557
|
-
execute_or_queue_command(command, &block)
|
|
13558
|
-
end
|
|
13559
|
-
|
|
13560
13501
|
# Gets the User Store.
|
|
13561
13502
|
# @param [String] name
|
|
13562
13503
|
# Required. The name of the User Store to get. Format: `projects/`project`/
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-discoveryengine_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.99.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_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.99.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|