highbond_analysis (Resource)
Schema
Required
| collection_id | Number | The Id of the collection | 
| name | String | The name of the analysis | 
Optional
| description | String | The description of the analysis | 
| force_updates | Boolean | Allows overriding top-level 'create_only' option. | 
| id | String | The ID of this resource. | 
Read-Only
| created_at | String | The date the analysis was created | 
| updated_at | String | The date the analysis was updated | 
Example Usage
resource "highbond_analysis" "main" {
  collection_id = highbond_collection.main.id
  name          = "Example analysis"
  description   = "Dummy description"
  force_updates = true // Create only with force update changes
}
