Class: DatadogAPIClient::V2::ItemApiPayloadDataAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::ItemApiPayloadDataAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/item_api_payload_data_attributes.rb
Overview
Metadata and content of a datastore item.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#created_at ⇒ Object
Timestamp when the item was first created.
-
#modified_at ⇒ Object
Timestamp when the item was last modified.
-
#org_id ⇒ Object
The ID of the organization that owns this item.
-
#primary_column_name ⇒ Object
readonly
The name of the primary key column for this datastore.
-
#signature ⇒ Object
A unique signature identifying this item version.
-
#store_id ⇒ Object
The unique identifier of the datastore containing this item.
-
#value ⇒ Object
The data content (as key-value pairs) of a datastore item.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
47 48 49 |
# File 'lib/datadog_api_client/v2/models/item_api_payload_data_attributes.rb', line 47 def additional_properties @additional_properties end |
#created_at ⇒ Object
Timestamp when the item was first created.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/item_api_payload_data_attributes.rb', line 25 def created_at @created_at end |
#modified_at ⇒ Object
Timestamp when the item was last modified.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/item_api_payload_data_attributes.rb', line 28 def modified_at @modified_at end |
#org_id ⇒ Object
The ID of the organization that owns this item.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/item_api_payload_data_attributes.rb', line 31 def org_id @org_id end |
#primary_column_name ⇒ Object
The name of the primary key column for this datastore. Primary column names:
- Must abide by both PostgreSQL naming conventions
- Cannot exceed 63 characters
36 37 38 |
# File 'lib/datadog_api_client/v2/models/item_api_payload_data_attributes.rb', line 36 def primary_column_name @primary_column_name end |
#signature ⇒ Object
A unique signature identifying this item version.
39 40 41 |
# File 'lib/datadog_api_client/v2/models/item_api_payload_data_attributes.rb', line 39 def signature @signature end |
#store_id ⇒ Object
The unique identifier of the datastore containing this item.
42 43 44 |
# File 'lib/datadog_api_client/v2/models/item_api_payload_data_attributes.rb', line 42 def store_id @store_id end |
#value ⇒ Object
The data content (as key-value pairs) of a datastore item.
45 46 47 |
# File 'lib/datadog_api_client/v2/models/item_api_payload_data_attributes.rb', line 45 def value @value end |