Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small correction to list handling #5446

Merged
merged 27 commits into from
Mar 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
27c0982
NFSAAS-1505 minor update and validation fixes
leonardbf Nov 20, 2018
4535ffb
Merge pull request #1 from leonardbf/netapp-api-update-public
leonardbf Nov 20, 2018
d23b068
NFSAAS-1505 bring in line with RP
leonardbf Nov 26, 2018
d6ce7d9
Merge pull request #2 from leonardbf/netapp-api-update-public
leonardbf Nov 26, 2018
2e3393a
NFSAAS-1505 correct resource reference and limits
leonardbf Nov 27, 2018
d64fced
Merge pull request #3 from leonardbf/netapp-api-update-public
leonardbf Nov 27, 2018
f81874b
NFSAAS-1505 resource and property changes
leonardbf Dec 4, 2018
164da1f
Merge pull request #4 from leonardbf/netapp-api-update-public
leonardbf Dec 4, 2018
7ec6b9e
NFSAAS-1505 status codes
leonardbf Dec 4, 2018
5892e13
Merge pull request #5 from leonardbf/netapp-api-update-public
leonardbf Dec 4, 2018
79df024
NFSAAS-1505 tidy up examples
leonardbf Dec 5, 2018
d8c27fb
Merge pull request #6 from leonardbf/netapp-api-update-public
leonardbf Dec 5, 2018
728ffb4
NFSAAS-1505 tidy up examples
leonardbf Dec 5, 2018
e64f32f
Merge pull request #7 from leonardbf/netapp-api-update-public
leonardbf Dec 5, 2018
b820b48
NFSAAS-1644 remove mt get and add put status code
leonardbf Dec 11, 2018
2acb8c0
Merge pull request #8 from leonardbf/netapp-api-update-public
leonardbf Dec 11, 2018
c005d43
NFSAAS-1644 remove mt get and add put status code
leonardbf Dec 11, 2018
4f47c60
Merge pull request #9 from leonardbf/mt-sc-update
leonardbf Dec 11, 2018
be1df19
NFSAAS-1875 update to R3.5 standard
leonardbf Mar 13, 2019
8efc20e
Merge pull request #10 from leonardbf/NFSAAS-1875-swagger-update
leonardbf Mar 13, 2019
46f3cb6
NFSAAS-1875 Update to R3.5 Standard (#11)
leonardbf Mar 13, 2019
0845526
Nfsaas 1875 swagger update (#12)
leonardbf Mar 13, 2019
0af27c7
Nfsaas 1875 swagger update (#13)
leonardbf Mar 13, 2019
e2fdd6a
Merge pull request #14 from Azure/master
leonardbf Mar 14, 2019
a5d271c
NFSAAS-1875 small correction
leonardbf Mar 21, 2019
c219e4e
Merge pull request #15 from leonardbf/NFSAAS-1875-correction
leonardbf Mar 21, 2019
5839c90
Merge branch 'master' into master
leonardbf Mar 21, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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