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

Add isolated skutype #11029

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 @@ -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