Skip to content

Commit

Permalink
Adding supported clouds param (#17580)
Browse files Browse the repository at this point in the history
  • Loading branch information
oravital7 authored Feb 16, 2022
1 parent a67988c commit c3ab15b
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
{
"key": "dbd0cb49-b563-45e7-9724-889e799fa648"
}
],
"supportedClouds": [
"GCP"
]
},
"systemData": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@
{
"key": "dbd0cb49-b563-45e7-9724-889e799fa648"
}
],
"supportedClouds": [
"GCP"
]
},
"systemData": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
{
"key": "dbd0cb49-b563-45e7-9724-889e799fa648"
}
],
"supportedClouds": [
"GCP"
]
},
"systemData": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
{
"key": "dbd0cb49-b563-45e7-9724-889e799fa648"
}
],
"supportedClouds": [
"GCP"
]
}
}
Expand All @@ -40,6 +43,9 @@
{
"key": "dbd0cb49-b563-45e7-9724-889e799fa648"
}
],
"supportedClouds": [
"GCP"
]
},
"systemData": {
Expand Down Expand Up @@ -71,6 +77,9 @@
{
"key": "dbd0cb49-b563-45e7-9724-889e799fa648"
}
],
"supportedClouds": [
"GCP"
]
},
"systemData": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,13 @@
"items": {
"$ref": "#/definitions/StandardComponentProperties"
}
},
"supportedClouds": {
"description": "List of all standard supported clouds.",
"type": "array",
"items": {
"$ref": "#/definitions/StandardSupportedClouds"
}
}
}
},
Expand All @@ -328,6 +335,18 @@
"type": "string"
}
}
},
"StandardSupportedClouds": {
"type": "string",
"description": "The cloud that the standard is supported on.",
"enum": [
"AWS",
"GCP"
],
"x-ms-enum": {
"name": "StandardSupportedClouds",
"modelAsString": false
}
}
},
"parameters": {
Expand Down

0 comments on commit c3ab15b

Please sign in to comment.