Class: DatadogAPIClient::V2::CreateAppsDatastoreRequestDataAttributes
- Inherits:
-
Object
- Object
- DatadogAPIClient::V2::CreateAppsDatastoreRequestDataAttributes
- Includes:
- BaseGenericModel
- Defined in:
- lib/datadog_api_client/v2/models/create_apps_datastore_request_data_attributes.rb
Overview
Configuration and metadata to create a new datastore.
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#description ⇒ Object
A human-readable description about the datastore.
-
#name ⇒ Object
readonly
The display name for the new datastore.
-
#org_access ⇒ Object
The organization access level for the 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.
41 42 43 |
# File 'lib/datadog_api_client/v2/models/create_apps_datastore_request_data_attributes.rb', line 41 def additional_properties @additional_properties end |
#description ⇒ Object
A human-readable description about the datastore.
25 26 27 |
# File 'lib/datadog_api_client/v2/models/create_apps_datastore_request_data_attributes.rb', line 25 def description @description end |
#name ⇒ Object
The display name for the new datastore.
28 29 30 |
# File 'lib/datadog_api_client/v2/models/create_apps_datastore_request_data_attributes.rb', line 28 def name @name end |
#org_access ⇒ Object
The organization access level for the datastore. For example, 'contributor'.
31 32 33 |
# File 'lib/datadog_api_client/v2/models/create_apps_datastore_request_data_attributes.rb', line 31 def org_access @org_access 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/create_apps_datastore_request_data_attributes.rb', line 36 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.
39 40 41 |
# File 'lib/datadog_api_client/v2/models/create_apps_datastore_request_data_attributes.rb', line 39 def primary_key_generation_strategy @primary_key_generation_strategy end |