Merge branch 'main' into bump-deps
commit
61b70f7550
|
|
@ -72,6 +72,12 @@ func dataSourceManufacturers() *schema.Resource {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Required: true,
|
Required: true,
|
||||||
},
|
},
|
||||||
|
"notes_url": {
|
||||||
|
Description: "Notes for manufacturer.",
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Optional: true,
|
||||||
|
Computed: true,
|
||||||
|
},
|
||||||
"platform_count": {
|
"platform_count": {
|
||||||
Description: "Manufacturer's platform count.",
|
Description: "Manufacturer's platform count.",
|
||||||
Type: schema.TypeInt,
|
Type: schema.TypeInt,
|
||||||
|
|
|
||||||
|
|
@ -71,6 +71,12 @@ func resourceManufacturer() *schema.Resource {
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Required: true,
|
Required: true,
|
||||||
},
|
},
|
||||||
|
"notes_url": {
|
||||||
|
Description: "Notes for manufacturer.",
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Optional: true,
|
||||||
|
Computed: true,
|
||||||
|
},
|
||||||
"platform_count": {
|
"platform_count": {
|
||||||
Description: "Manufacturer's platform count.",
|
Description: "Manufacturer's platform count.",
|
||||||
Type: schema.TypeInt,
|
Type: schema.TypeInt,
|
||||||
|
|
@ -200,6 +206,7 @@ func resourceManufacturerRead(ctx context.Context, d *schema.ResourceData, meta
|
||||||
d.Set("description", item["description"].(string))
|
d.Set("description", item["description"].(string))
|
||||||
d.Set("display", item["display"].(string))
|
d.Set("display", item["display"].(string))
|
||||||
d.Set("id", item["id"].(string))
|
d.Set("id", item["id"].(string))
|
||||||
|
d.Set("notes_url", item["notes_url"].(string))
|
||||||
d.Set("slug", item["slug"].(string))
|
d.Set("slug", item["slug"].(string))
|
||||||
d.Set("url", item["url"].(string))
|
d.Set("url", item["url"].(string))
|
||||||
d.Set("last_updated", item["last_updated"].(string))
|
d.Set("last_updated", item["last_updated"].(string))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue