-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
data_source_netapp_pool.go
85 lines (69 loc) · 2.34 KB
/
data_source_netapp_pool.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package netapp
import (
"fmt"
"time"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/azure"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/clients"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/timeouts"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils"
)
func dataSourceArmNetAppPool() *schema.Resource {
return &schema.Resource{
Read: dataSourceArmNetAppPoolRead,
Timeouts: &schema.ResourceTimeout{
Read: schema.DefaultTimeout(5 * time.Minute),
},
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
ValidateFunc: ValidateNetAppPoolName,
},
"resource_group_name": azure.SchemaResourceGroupNameForDataSource(),
"location": azure.SchemaLocationForDataSource(),
"account_name": {
Type: schema.TypeString,
Required: true,
ValidateFunc: ValidateNetAppAccountName,
},
"service_level": {
Type: schema.TypeString,
Computed: true,
},
"size_in_tb": {
Type: schema.TypeInt,
Computed: true,
},
},
}
}
func dataSourceArmNetAppPoolRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*clients.Client).NetApp.PoolClient
ctx, cancel := timeouts.ForRead(meta.(*clients.Client).StopContext, d)
defer cancel()
name := d.Get("name").(string)
accountName := d.Get("account_name").(string)
resourceGroup := d.Get("resource_group_name").(string)
resp, err := client.Get(ctx, resourceGroup, accountName, name)
if err != nil {
if utils.ResponseWasNotFound(resp.Response) {
return fmt.Errorf("Error: NetApp Pool %q (Resource Group %q) was not found", name, resourceGroup)
}
return fmt.Errorf("Error reading NetApp Pool %q (Resource Group %q): %+v", name, resourceGroup, err)
}
d.SetId(*resp.ID)
d.Set("name", name)
d.Set("account_name", accountName)
d.Set("resource_group_name", resourceGroup)
if location := resp.Location; location != nil {
d.Set("location", azure.NormalizeLocation(*location))
}
if poolProperties := resp.PoolProperties; poolProperties != nil {
d.Set("service_level", poolProperties.ServiceLevel)
if poolProperties.Size != nil {
d.Set("size_in_tb", *poolProperties.Size/1099511627776)
}
}
return nil
}