Skip to content

Commit

Permalink
Add isolated skutype (#11029)
Browse files Browse the repository at this point in the history
  • Loading branch information
jijohn14 authored Oct 11, 2020
1 parent adefa59 commit 0fe71ee
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,8 @@
"Standard",
"Premium",
"Basic",
"Consumption"
"Consumption",
"Isolated"
],
"x-ms-enum": {
"name": "SkuType",
Expand All @@ -811,6 +812,10 @@
{
"value": "Consumption",
"description": "Consumption SKU of Api Management."
},
{
"value": "Isolated",
"description": "Isolated SKU of Api Management."
}
]
}
Expand Down Expand Up @@ -970,15 +975,15 @@
"type": "string"
},
"readOnly": true,
"description": "Public Static Load Balanced IP addresses of the API Management service in the additional location. Available only for Basic, Standard and Premium SKU."
"description": "Public Static Load Balanced IP addresses of the API Management service in the additional location. Available only for Basic, Standard, Premium and Isolated SKU."
},
"privateIPAddresses": {
"type": "array",
"items": {
"type": "string"
},
"readOnly": true,
"description": "Private Static Load Balanced IP addresses of the API Management service which is deployed in an Internal Virtual Network in a particular additional location. Available only for Basic, Standard and Premium SKU."
"description": "Private Static Load Balanced IP addresses of the API Management service which is deployed in an Internal Virtual Network in a particular additional location. Available only for Basic, Standard, Premium and Isolated SKU."
},
"virtualNetworkConfiguration": {
"$ref": "#/definitions/VirtualNetworkConfiguration",
Expand Down Expand Up @@ -1138,15 +1143,15 @@
"type": "string"
},
"readOnly": true,
"description": "Public Static Load Balanced IP addresses of the API Management service in Primary region. Available only for Basic, Standard and Premium SKU."
"description": "Public Static Load Balanced IP addresses of the API Management service in Primary region. Available only for Basic, Standard, Premium and Isolated SKU."
},
"privateIPAddresses": {
"type": "array",
"items": {
"type": "string"
},
"readOnly": true,
"description": "Private Static Load Balanced IP addresses of the API Management service in Primary region which is deployed in an Internal Virtual Network. Available only for Basic, Standard and Premium SKU."
"description": "Private Static Load Balanced IP addresses of the API Management service in Primary region which is deployed in an Internal Virtual Network. Available only for Basic, Standard, Premium and Isolated SKU."
},
"virtualNetworkConfiguration": {
"$ref": "#/definitions/VirtualNetworkConfiguration",
Expand Down Expand Up @@ -1246,7 +1251,8 @@
"Standard",
"Premium",
"Basic",
"Consumption"
"Consumption",
"Isolated"
],
"x-ms-enum": {
"name": "SkuType",
Expand All @@ -1271,6 +1277,10 @@
{
"value": "Consumption",
"description": "Consumption SKU of Api Management."
},
{
"value": "Isolated",
"description": "Isolated SKU of Api Management."
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,18 @@
"default": 1,
"scaleType": "automatic"
}
},
{
"resourceType": "Microsoft.ApiManagement/service",
"sku": {
"name": "Isolated"
},
"capacity": {
"minimum": 1,
"maximum": 1,
"default": 1,
"scaleType": "automatic"
}
}
],
"nextLink": null
Expand Down

0 comments on commit 0fe71ee

Please sign in to comment.