@@ -5877,7 +5877,7 @@ def update!(**args)
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 @@ class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun
5887
5887
# @return [String]
5888
5888
attr_accessor :entity_name
5889
5889
5890
- # The total number of documents failed at sync at any stage (extraction,
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 @@ class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun
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 ingested
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 @@ class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRun
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 connector
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 @@ class GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig
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 @@ def initialize(**args)
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 @@ def update!(**args)
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
0 commit comments