Skip to content

Commit 1123a9f

Browse files
Adding support for FLEX service level in netapp volumes (#10638) (#18088)
[upstream:74a0dedd669db7f6c6fe225f68c153ebf05a0a8d] Signed-off-by: Modular Magician <[email protected]>
1 parent 5e16c75 commit 1123a9f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

google/services/netapp/resource_netapp_storage_pool.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ func ResourceNetappstoragePool() *schema.Resource {
8484
Type: schema.TypeString,
8585
Required: true,
8686
ForceNew: true,
87-
ValidateFunc: verify.ValidateEnum([]string{"PREMIUM", "EXTREME", "STANDARD"}),
88-
Description: `Service level of the storage pool. Possible values: ["PREMIUM", "EXTREME", "STANDARD"]`,
87+
ValidateFunc: verify.ValidateEnum([]string{"PREMIUM", "EXTREME", "STANDARD", "FLEX"}),
88+
Description: `Service level of the storage pool. Possible values: ["PREMIUM", "EXTREME", "STANDARD", "FLEX"]`,
8989
},
9090
"active_directory": {
9191
Type: schema.TypeString,

google/services/netapp/resource_netapp_volume.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ Format for SMB volumes: '\\\\netbios_prefix-four_random_hex_letters.domain_name\
472472
"service_level": {
473473
Type: schema.TypeString,
474474
Computed: true,
475-
Description: `Service level of the volume. Inherited from storage pool.`,
475+
Description: `Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTERME, STANDARD, FLEX.`,
476476
},
477477
"state": {
478478
Type: schema.TypeString,

website/docs/r/netapp_storage_pool.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ The following arguments are supported:
100100
* `service_level` -
101101
(Required)
102102
Service level of the storage pool.
103-
Possible values are: `PREMIUM`, `EXTREME`, `STANDARD`.
103+
Possible values are: `PREMIUM`, `EXTREME`, `STANDARD`, `FLEX`.
104104

105105
* `capacity_gib` -
106106
(Required)

website/docs/r/netapp_volume.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ In addition to the arguments listed above, the following computed attributes are
341341
VPC network name with format: `projects/{{project}}/global/networks/{{network}}`. Inherited from storage pool.
342342

343343
* `service_level` -
344-
Service level of the volume. Inherited from storage pool.
344+
Service level of the volume. Inherited from storage pool. Supported values are : PREMIUM, EXTERME, STANDARD, FLEX.
345345

346346
* `used_gib` -
347347
Used capacity of the volume (in GiB). This is computed periodically and it does not represent the realtime usage.

0 commit comments

Comments
 (0)