Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEstimateDataSizeResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEstimateDataSizeResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb
Overview
Response of the EstimateDataSize request. If the long running operation was successful, then this message is returned by the google.longrunning.Operations. response field if the operation was successful.
Instance Attribute Summary collapse
-
#data_size_bytes ⇒ Fixnum
Data size in terms of bytes.
-
#document_count ⇒ Fixnum
Total number of documents.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaEstimateDataSizeResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaEstimateDataSizeResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaEstimateDataSizeResponse
Returns a new instance of GoogleCloudDiscoveryengineV1alphaEstimateDataSizeResponse.
3259 3260 3261 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3259 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_size_bytes ⇒ Fixnum
Data size in terms of bytes.
Corresponds to the JSON property dataSizeBytes
3252 3253 3254 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3252 def data_size_bytes @data_size_bytes end |
#document_count ⇒ Fixnum
Total number of documents.
Corresponds to the JSON property documentCount
3257 3258 3259 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3257 def document_count @document_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3264 3265 3266 3267 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3264 def update!(**args) @data_size_bytes = args[:data_size_bytes] if args.key?(:data_size_bytes) @document_count = args[:document_count] if args.key?(:document_count) end |