google-apis-discoveryengine_v1beta 0.71.0 → 0.72.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 484cd2e81da9cff62a455125362fec0a2edfbaf1c0d308cc061a4bf6d512112e
|
4
|
+
data.tar.gz: 639ab724dc9b400babe57c9b5907af235cc22069a132f697aca233a24bad05ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64be6a2a8b3f8fb0c76d191a23358e829e0a6868eb3edba1f1cf8fccd9bd6de52d41622e44c1c31f97551d5e90068ae508ac003b5fb173c0ea5e82c0f7c31572
|
7
|
+
data.tar.gz: d6bf7f38a163c0248c3dccf0b92a5475f428e5c27abaa7efd3cd655b8181eb34b3a7cb4088f477671d93ae8eb5267ddca3bac8e10b91e9cdb0a54028dc0a2368
|
data/CHANGELOG.md
CHANGED
@@ -5877,7 +5877,7 @@ module Google
|
|
5877
5877
|
class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun
|
5878
5878
|
include Google::Apis::Core::Hashable
|
5879
5879
|
|
5880
|
-
# The number of documents deleted.
|
5880
|
+
# Optional. The number of documents deleted.
|
5881
5881
|
# Corresponds to the JSON property `deletedRecordCount`
|
5882
5882
|
# @return [Fixnum]
|
5883
5883
|
attr_accessor :deleted_record_count
|
@@ -5887,8 +5887,7 @@ module Google
|
|
5887
5887
|
# @return [String]
|
5888
5888
|
attr_accessor :entity_name
|
5889
5889
|
|
5890
|
-
# The total number of documents failed at sync at
|
5891
|
-
# indexing, etc).
|
5890
|
+
# Optional. The total number of documents failed at sync at indexing stage.
|
5892
5891
|
# Corresponds to the JSON property `errorRecordCount`
|
5893
5892
|
# @return [Fixnum]
|
5894
5893
|
attr_accessor :error_record_count
|
@@ -5899,13 +5898,13 @@ module Google
|
|
5899
5898
|
# @return [Array<Google::Apis::DiscoveryengineV1beta::GoogleRpcStatus>]
|
5900
5899
|
attr_accessor :errors
|
5901
5900
|
|
5902
|
-
# The number of documents extracted from connector source, ready to be
|
5903
|
-
# to VAIS.
|
5901
|
+
# Optional. The number of documents extracted from connector source, ready to be
|
5902
|
+
# ingested to VAIS.
|
5904
5903
|
# Corresponds to the JSON property `extractedRecordCount`
|
5905
5904
|
# @return [Fixnum]
|
5906
5905
|
attr_accessor :extracted_record_count
|
5907
5906
|
|
5908
|
-
# The number of documents indexed.
|
5907
|
+
# Optional. The number of documents indexed.
|
5909
5908
|
# Corresponds to the JSON property `indexedRecordCount`
|
5910
5909
|
# @return [Fixnum]
|
5911
5910
|
attr_accessor :indexed_record_count
|
@@ -5915,13 +5914,13 @@ module Google
|
|
5915
5914
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress]
|
5916
5915
|
attr_accessor :progress
|
5917
5916
|
|
5918
|
-
# The number of documents scheduled to be crawled/extracted from
|
5919
|
-
# source. This only applies to third party connectors.
|
5917
|
+
# Optional. The number of documents scheduled to be crawled/extracted from
|
5918
|
+
# connector source. This only applies to third party connectors.
|
5920
5919
|
# Corresponds to the JSON property `scheduledRecordCount`
|
5921
5920
|
# @return [Fixnum]
|
5922
5921
|
attr_accessor :scheduled_record_count
|
5923
5922
|
|
5924
|
-
# The number of requests sent to 3p API.
|
5923
|
+
# Optional. The number of requests sent to 3p API.
|
5925
5924
|
# Corresponds to the JSON property `sourceApiRequestCount`
|
5926
5925
|
# @return [Fixnum]
|
5927
5926
|
attr_accessor :source_api_request_count
|
@@ -6834,6 +6833,13 @@ module Google
|
|
6834
6833
|
# @return [Hash<String,Object>]
|
6835
6834
|
attr_accessor :auth_params
|
6836
6835
|
|
6836
|
+
# Tenant information for a connector source. This includes some of the same
|
6837
|
+
# information stored in the Credential message, but is limited to only what is
|
6838
|
+
# needed to provide a list of accessible tenants to the user.
|
6839
|
+
# Corresponds to the JSON property `tenant`
|
6840
|
+
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaTenant]
|
6841
|
+
attr_accessor :tenant
|
6842
|
+
|
6837
6843
|
def initialize(**args)
|
6838
6844
|
update!(**args)
|
6839
6845
|
end
|
@@ -6842,6 +6848,7 @@ module Google
|
|
6842
6848
|
def update!(**args)
|
6843
6849
|
@additional_params = args[:additional_params] if args.key?(:additional_params)
|
6844
6850
|
@auth_params = args[:auth_params] if args.key?(:auth_params)
|
6851
|
+
@tenant = args[:tenant] if args.key?(:tenant)
|
6845
6852
|
end
|
6846
6853
|
end
|
6847
6854
|
|
@@ -12070,6 +12077,42 @@ module Google
|
|
12070
12077
|
end
|
12071
12078
|
end
|
12072
12079
|
|
12080
|
+
# Tenant information for a connector source. This includes some of the same
|
12081
|
+
# information stored in the Credential message, but is limited to only what is
|
12082
|
+
# needed to provide a list of accessible tenants to the user.
|
12083
|
+
class GoogleCloudDiscoveryengineV1alphaTenant
|
12084
|
+
include Google::Apis::Core::Hashable
|
12085
|
+
|
12086
|
+
# Optional display name for the tenant, e.g. "My Slack Team".
|
12087
|
+
# Corresponds to the JSON property `displayName`
|
12088
|
+
# @return [String]
|
12089
|
+
attr_accessor :display_name
|
12090
|
+
|
12091
|
+
# The tenant's instance ID. Examples: Jira ("8594f221-9797-5f78-1fa4-
|
12092
|
+
# 485e198d7cd0"), Slack ("T123456").
|
12093
|
+
# Corresponds to the JSON property `id`
|
12094
|
+
# @return [String]
|
12095
|
+
attr_accessor :id
|
12096
|
+
|
12097
|
+
# The URI of the tenant, if applicable. For example, the URI of a Jira instance
|
12098
|
+
# is https://my-jira-instance.atlassian.net, and a Slack tenant does not have a
|
12099
|
+
# URI.
|
12100
|
+
# Corresponds to the JSON property `uri`
|
12101
|
+
# @return [String]
|
12102
|
+
attr_accessor :uri
|
12103
|
+
|
12104
|
+
def initialize(**args)
|
12105
|
+
update!(**args)
|
12106
|
+
end
|
12107
|
+
|
12108
|
+
# Update properties of this object
|
12109
|
+
def update!(**args)
|
12110
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
12111
|
+
@id = args[:id] if args.key?(:id)
|
12112
|
+
@uri = args[:uri] if args.key?(:uri)
|
12113
|
+
end
|
12114
|
+
end
|
12115
|
+
|
12073
12116
|
# Metadata related to the progress of the TrainCustomModel operation. This is
|
12074
12117
|
# returned by the google.longrunning.Operation.metadata field.
|
12075
12118
|
class GoogleCloudDiscoveryengineV1alphaTrainCustomModelMetadata
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1beta
|
18
18
|
# Version of the google-apis-discoveryengine_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.72.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 = "20250701"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1900,6 +1900,12 @@ module Google
|
|
1900
1900
|
include Google::Apis::Core::JsonObjectSupport
|
1901
1901
|
end
|
1902
1902
|
|
1903
|
+
class GoogleCloudDiscoveryengineV1alphaTenant
|
1904
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1905
|
+
|
1906
|
+
include Google::Apis::Core::JsonObjectSupport
|
1907
|
+
end
|
1908
|
+
|
1903
1909
|
class GoogleCloudDiscoveryengineV1alphaTrainCustomModelMetadata
|
1904
1910
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1905
1911
|
|
@@ -6010,6 +6016,8 @@ module Google
|
|
6010
6016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6011
6017
|
hash :additional_params, as: 'additionalParams'
|
6012
6018
|
hash :auth_params, as: 'authParams'
|
6019
|
+
property :tenant, as: 'tenant', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaTenant, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaTenant::Representation
|
6020
|
+
|
6013
6021
|
end
|
6014
6022
|
end
|
6015
6023
|
|
@@ -7383,6 +7391,15 @@ module Google
|
|
7383
7391
|
end
|
7384
7392
|
end
|
7385
7393
|
|
7394
|
+
class GoogleCloudDiscoveryengineV1alphaTenant
|
7395
|
+
# @private
|
7396
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7397
|
+
property :display_name, as: 'displayName'
|
7398
|
+
property :id, as: 'id'
|
7399
|
+
property :uri, as: 'uri'
|
7400
|
+
end
|
7401
|
+
end
|
7402
|
+
|
7386
7403
|
class GoogleCloudDiscoveryengineV1alphaTrainCustomModelMetadata
|
7387
7404
|
# @private
|
7388
7405
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.72.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_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.72.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|