Class: DatadogAPIClient::V2::DatastoreDataAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::DatastoreDataAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/datastore_data_attributes.rb
Overview
Detailed information about a datastore.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#created_at ⇒ Object
Timestamp when the datastore was created.
-
#creator_user_id ⇒ Object
The numeric ID of the user who created the datastore.
-
#creator_user_uuid ⇒ Object
The UUID of the user who created the datastore.
-
#description ⇒ Object
A human-readable description about the datastore.
-
#modified_at ⇒ Object
Timestamp when the datastore was last modified.
-
#name ⇒ Object
The display name of the datastore.
-
#org_id ⇒ Object
The ID of the organization that owns this datastore.
-
#primary_column_name ⇒ Object
readonly
The name of the primary key column for this datastore.
-
#primary_key_generation_strategy ⇒ Object
Can be set to
uuid
to automatically generate primary keys when new items are added.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
53 54 55 |
# File 'lib/datadog_api_client/v2/models/datastore_data_attributes.rb', line 53 def additional_properties @additional_properties end |
#created_at ⇒ Object
Timestamp when the datastore was created.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/datastore_data_attributes.rb', line 25 def created_at @created_at end |
#creator_user_id ⇒ Object
The numeric ID of the user who created the datastore.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/datastore_data_attributes.rb', line 28 def creator_user_id @creator_user_id end |
#creator_user_uuid ⇒ Object
The UUID of the user who created the datastore.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/datastore_data_attributes.rb', line 31 def creator_user_uuid @creator_user_uuid end |
#description ⇒ Object
A human-readable description about the datastore.
34 35 36 |
# File 'lib/datadog_api_client/v2/models/datastore_data_attributes.rb', line 34 def description @description end |
#modified_at ⇒ Object
Timestamp when the datastore was last modified.
37 38 39 |
# File 'lib/datadog_api_client/v2/models/datastore_data_attributes.rb', line 37 def modified_at @modified_at end |
#name ⇒ Object
The display name of the datastore.
40 41 42 |
# File 'lib/datadog_api_client/v2/models/datastore_data_attributes.rb', line 40 def name @name end |
#org_id ⇒ Object
The ID of the organization that owns this datastore.
43 44 45 |
# File 'lib/datadog_api_client/v2/models/datastore_data_attributes.rb', line 43 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
48 49 50 |
# File 'lib/datadog_api_client/v2/models/datastore_data_attributes.rb', line 48 def primary_column_name @primary_column_name end |
#primary_key_generation_strategy ⇒ Object
Can be set to uuid
to automatically generate primary keys when new items are added. Default value is none
, which requires you to supply a primary key for each new item.
51 52 53 |
# File 'lib/datadog_api_client/v2/models/datastore_data_attributes.rb', line 51 def primary_key_generation_strategy @primary_key_generation_strategy end |