Skip to content

Commit 52a2d77

Browse files
Add INACTIVE status and performance_tier to NFS share response model. (#1193)
Aligns nfs_response.yml with sharesvc: INACTIVE shares exist but have no VPC attached, and performance_tier is returned on share GET/LIST responses. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 14f1f34 commit 52a2d77

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

specification/resources/nfs/models/nfs_response.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ properties:
2020
example: "atl1"
2121
status:
2222
type: string
23-
enum: [CREATING, ACTIVE, FAILED, DELETED]
24-
description: The current status of the share.
23+
enum: [CREATING, ACTIVE, INACTIVE, FAILED, DELETED]
24+
description: |
25+
The current status of the share. `INACTIVE` means the share exists but is
26+
not attached to any VPC.
2527
readOnly: true
2628
example: "ACTIVE"
2729
created_at:
@@ -36,6 +38,10 @@ properties:
3638
type: string
3739
description: List of VPC IDs that should be able to access the share.
3840
example: ["796c6fe3-2a1d-4da2-9f3e-38239827dc91"]
41+
performance_tier:
42+
type: string
43+
description: The performance tier of the share.
44+
example: "PERFORMANCE_TIER_HIGH"
3945
mount_path:
4046
type: string
4147
description: Path at which the share will be available, to be mounted at a target of the user's choice within the client

0 commit comments

Comments
 (0)