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

[Bug fix] Remove read-only constraint for management policy, and change properties types from integer to number #6551

Merged
merged 5 commits into from
Jul 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -8,11 +8,7 @@
"monitor": "true"
},
"responses": {
"200": {
"body": ""
},
"204": {
"body": ""
}
"200": {},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@
"type": "Microsoft.Storage/storageAccounts"
}
},
"202": {
"body": ""
}
"202": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@
"monitor": "true"
},
"responses": {
"200": {
"body": ""
},
"204": {
"body": ""
}
"200": {},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@
"monitor": "true"
},
"responses": {
"200": {
"body": ""
},
"204": {
"body": ""
}
"200": {},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@
"monitor": "true"
},
"responses": {
"200": {
"body": ""
},
"202": {
"body": ""
}
"200": {},
"202": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2160,7 +2160,6 @@
"properties": {
"$ref": "#/definitions/ManagementPolicyProperties",
"x-ms-client-flatten": true,
"readOnly": true,
"description": "Returns the Storage Account Data Policies Rules."
}
},
Expand Down Expand Up @@ -2317,9 +2316,10 @@
"DateAfterModification": {
"properties": {
"daysAfterModificationGreaterThan": {
"type": "integer",
"type": "number",
"multipleOf": 1.0,
"minimum": 0,
"description": "Integer value indicating the age in days after last modification"
"description": "Value indicating the age in days after last modification"
}
},
"required": [
Expand All @@ -2330,9 +2330,10 @@
"DateAfterCreation": {
"properties": {
"daysAfterCreationGreaterThan": {
"type": "integer",
"type": "number",
"multipleOf": 1.0,
"minimum": 0,
"description": "Integer value indicating the age in days after creation"
"description": "Value indicating the age in days after creation"
}
},
"required": [
Expand Down