Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
527659f
Adding kube-env PR
JennyLawrance May 13, 2021
4eac3cc
Adding change in readme.md
JennyLawrance May 13, 2021
e74b11c
Adding extended location to site and asps
JennyLawrance May 13, 2021
6a64eef
Revert accidental change
JennyLawrance May 13, 2021
e5c4605
Fix spellcheck error
JennyLawrance May 13, 2021
04d90e9
Adding Example files for ListBySubscription
JennyLawrance May 13, 2021
1b96434
Adding more examples
JennyLawrance May 13, 2021
fc717c7
fix accidental property
JennyLawrance May 13, 2021
90c769e
Prettier again for new files
JennyLawrance May 13, 2021
1d9b100
remove not used properties
JennyLawrance May 13, 2021
a815a1f
more examples
JennyLawrance May 13, 2021
b540595
Adding example for get
JennyLawrance May 13, 2021
462efc9
More examples
JennyLawrance May 13, 2021
8b6196b
more examples
JennyLawrance May 13, 2021
4453056
fixes in examples
JennyLawrance May 13, 2021
52a0707
Fix model validation
JennyLawrance May 13, 2021
05e3add
Adding more fixes
JennyLawrance May 13, 2021
ee0ae19
Adding fixes for model validation
JennyLawrance May 13, 2021
ec10813
Remove operation from swagger
JennyLawrance May 13, 2021
52a1fad
Adding more examples
JennyLawrance May 14, 2021
9d56c93
fixes for model validation
JennyLawrance May 14, 2021
5a498c3
Fix model validation
JennyLawrance May 14, 2021
1e3469b
testing new payload for create
JennyLawrance May 14, 2021
3472e53
Testing new payload for update
JennyLawrance May 14, 2021
bfc4584
Attempt #3 at fixing model validation
JennyLawrance May 14, 2021
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 @@ -305,6 +305,9 @@
},
"sku": {
"$ref": "#/definitions/SkuDescription"
},
"extendedLocation": {
"$ref": "#/definitions/ExtendedLocation"
}
}
},
Expand Down Expand Up @@ -1120,6 +1123,18 @@
}
}
},
"ExtendedLocation": {
"type": "object",
"properties": {
"customLocation": {
"type": "string",
"x-ms-mutability": [
"create",
"read"
]
}
}
},
"HandlerMapping": {
"description": "The IIS handler mappings used to define which handler processes HTTP requests with certain extension. \nFor example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.",
"type": "object",
Expand Down Expand Up @@ -2372,6 +2387,9 @@
},
"identity": {
"$ref": "#/definitions/ManagedServiceIdentity"
},
"extendedLocation": {
"$ref": "#/definitions/ExtendedLocation"
}
}
},
Expand Down
Loading