in ec/ecdatasource/deploymentsdatasource/schema.go [88:149]
func deploymentsListSchema() schema.Attribute {
return schema.ListNestedAttribute{
Description: "List of deployments which match the specified query.",
Computed: true,
NestedObject: schema.NestedAttributeObject{
Attributes: map[string]schema.Attribute{
"deployment_id": schema.StringAttribute{
Description: "The deployment unique ID.",
Computed: true,
},
"name": schema.StringAttribute{
Description: "The name of the deployment.",
Computed: true,
},
"alias": schema.StringAttribute{
Description: "Deployment alias.",
Computed: true,
},
"elasticsearch_resource_id": schema.StringAttribute{
Description: "The Elasticsearch resource unique ID.",
Computed: true,
},
"elasticsearch_ref_id": schema.StringAttribute{
Description: "The Elasticsearch resource reference.",
Computed: true,
},
"kibana_resource_id": schema.StringAttribute{
Description: "The Kibana resource unique ID.",
Computed: true,
},
"kibana_ref_id": schema.StringAttribute{
Description: "The Kibana resource reference.",
Computed: true,
},
"apm_resource_id": schema.StringAttribute{
Description: "The APM resource unique ID.",
Computed: true,
},
"apm_ref_id": schema.StringAttribute{
Description: "The APM resource reference.",
Computed: true,
},
"integrations_server_resource_id": schema.StringAttribute{
Description: "The Integrations Server resource unique ID.",
Computed: true,
},
"integrations_server_ref_id": schema.StringAttribute{
Description: "The Integrations Server resource reference.",
Computed: true,
},
"enterprise_search_resource_id": schema.StringAttribute{
Description: "The Enterprise Search resource unique ID.",
Computed: true,
},
"enterprise_search_ref_id": schema.StringAttribute{
Description: "The Enterprise Search resource reference.",
Computed: true,
},
},
},
}
}