Class: DatadogAPIClient::V2::CreateUploadRequestDataAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::CreateUploadRequestDataAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/create_upload_request_data_attributes.rb
Overview
The definition of CreateUploadRequestDataAttributes
object.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#headers ⇒ Object
readonly
The headers of the file to upload.
-
#part_count ⇒ Object
readonly
The number of parts in the upload.
-
#part_size ⇒ Object
readonly
The size of each part in the upload in bytes.
-
#table_name ⇒ Object
readonly
The name of the reference table.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
36 37 38 |
# File 'lib/datadog_api_client/v2/models/create_upload_request_data_attributes.rb', line 36 def additional_properties @additional_properties end |
#headers ⇒ Object
The headers of the file to upload.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/create_upload_request_data_attributes.rb', line 25 def headers @headers end |
#part_count ⇒ Object
The number of parts in the upload.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/create_upload_request_data_attributes.rb', line 28 def part_count @part_count end |
#part_size ⇒ Object
The size of each part in the upload in bytes. For multipart uploads (part_count > 1), all parts except the last one must be at least 5,000,000 bytes. For single-part uploads (part_count = 1), any size is allowed.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/create_upload_request_data_attributes.rb', line 31 def part_size @part_size end |
#table_name ⇒ Object
The name of the reference table.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/create_upload_request_data_attributes.rb', line 34 def table_name @table_name end |