Skip to content

Commit

Permalink
Small correction to list handling (#5446)
Browse files Browse the repository at this point in the history
* NFSAAS-1505 minor update and validation fixes

* NFSAAS-1505 bring in line with RP

Put (and patch) for snapshots.
Service level definition changes.

* NFSAAS-1505 correct resource reference and limits

* NFSAAS-1505 resource and property changes

Incorrect pool resource reference
Name elements of property not required
Correction to return status code

* NFSAAS-1505 status codes

* NFSAAS-1505 tidy up examples

* NFSAAS-1505 tidy up examples

* NFSAAS-1644 remove mt get and add put status code

* NFSAAS-1644 remove mt get and add put status code

* NFSAAS-1875 update to R3.5 standard

* NFSAAS-1875 Update to R3.5 Standard (#11)

* Nfsaas 1875 swagger update (#12)

* NFSAAS-1875 Update to R3.5 Standard

* NFSAAS-1875 update to R3.5 standard

* Nfsaas 1875 swagger update (#13)

* NFSAAS-1875 Update to R3.5 Standard

* NFSAAS-1875 update to R3.5 standard

* NFSAAS-1875 updated from review comments

* NFSAAS-1875 small correction
  • Loading branch information
leonardbf authored and dsgouda committed Mar 22, 2019
1 parent 23ba9ef commit beed341
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@
"body": {}
},
"responses": {
"200": {
"body": {
"location": "eastus",
"properties": {
"provisioningState": "Succeeded"
}
}
},
"201": {
"body": {
"location": "eastus",
"properties": {
"provisioningState": "Created"
"provisioningState": "Succeeded"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"body": {
"location": "eastus",
"properties": {
"provisioningState": "Created"
"provisioningState": "Succeeded"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,12 @@
}
],
"responses": {
"200": {
"description": "OK - account updated",
"schema": {
"$ref": "#/definitions/netAppAccount"
}
},
"201": {
"description": "Account created",
"schema": {
Expand Down Expand Up @@ -1161,12 +1167,14 @@
"activeDirectories": {
"description": "Active Directories",
"type": "array",
"$ref": "#/definitions/activeDirectories"
"items": {
"$ref": "#/definitions/activeDirectory"
}
}
}
},
"activeDirectories": {
"description": "Active Directories",
"activeDirectory": {
"description": "Active Directory",
"type": "object",
"properties": {
"activeDirectoryId": {
Expand Down Expand Up @@ -1527,8 +1535,14 @@
},
"exportPolicy": {
"description": "Export policy rule",
"type": "array",
"$ref": "#/definitions/exportPolicyRule"
"properties": {
"rules": {
"type": "array",
"items": {
"$ref": "#/definitions/exportPolicyRule"
}
}
}
},
"provisioningState": {
"type": "string",
Expand Down Expand Up @@ -1656,8 +1670,14 @@
},
"exportPolicy": {
"description": "Export policy rule",
"type": "array",
"$ref": "#/definitions/exportPolicyRule"
"properties": {
"rules": {
"type": "array",
"items": {
"$ref": "#/definitions/exportPolicyRule"
}
}
}
}
}
},
Expand Down

0 comments on commit beed341

Please sign in to comment.