Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
virtualNetworkType
  • Loading branch information
solankisamir committed May 6, 2024
commit a7bb272cf781446f6681e9ba5861e1e642cf038a
Original file line number Diff line number Diff line change
Expand Up @@ -347,15 +347,15 @@
"values": [
{
"value": "Standard",
"description": "Standard SKU of the API gateway."
"description": "Standard SKU of the API gateway."
},
{
"value": "WorkspaceGatewayStandard",
"description": "Standard SKU of the API gateway to be used in Workspaces."
},
{
"value": "WorkspaceGatewayPremium",
"description": "Standard SKU of the API gateway to be used in Workspaces."
"description": "Premium SKU of the API gateway to be used in Workspaces."
}
]
}
Expand Down Expand Up @@ -455,6 +455,34 @@
"configurationApi": {
"$ref": "#/definitions/GatewayConfigurationApi",
"description": "Information regarding the Configuration API of the API Management gateway. This is only applicable for API gateway with Standard SKU."
},
"virtualNetworkType": {
"type": "string",
"description": "The type of VPN in which API Management gateway needs to be configured in. ",
"default": "None",
"enum": [
"None",
"External",
"Internal"
],
"x-ms-enum": {
"name": "VirtualNetworkType",
"modelAsString": true,
"values": [
{
"value": "None",
"description": "The API Management gateway is not part of any Virtual Network."
},
{
"value": "External",
"description": "The API Management gateway is part of Virtual Network and it is accessible from Internet."
},
{
"value": "Internal",
"description": "The API Management gateway is part of Virtual Network and it is only accessible from within the virtual network."
}
]
}
}
},
"description": "Base Properties of an API Management gateway resource description."
Expand Down Expand Up @@ -489,7 +517,9 @@
"url": "https://azure.microsoft.com/en-us/pricing/details/api-management/"
},
"enum": [
"Standard"
"Standard",
"WorkspaceGatewayStandard",
"WorkspaceGatewayPremium"
],
"x-ms-enum": {
"name": "SkuType",
Expand All @@ -498,6 +528,14 @@
{
"value": "Standard",
"description": "Standard SKU of the API gateway."
},
{
"value": "WorkspaceGatewayStandard",
"description": "Standard SKU of the API gateway to be used in Workspaces."
},
{
"value": "WorkspaceGatewayPremium",
"description": "Premium SKU of the API gateway to be used in Workspaces."
}
]
}
Expand All @@ -523,7 +561,9 @@
"url": "https://azure.microsoft.com/en-us/pricing/details/api-management/"
},
"enum": [
"Standard"
"Standard",
"WorkspaceGatewayStandard",
"WorkspaceGatewayPremium"
],
"x-ms-enum": {
"name": "SkuType",
Expand All @@ -532,6 +572,14 @@
{
"value": "Standard",
"description": "Standard SKU of the API gateway."
},
{
"value": "WorkspaceGatewayStandard",
"description": "Standard SKU of the API gateway to be used in Workspaces."
},
{
"value": "WorkspaceGatewayPremium",
"description": "Premium SKU of the API gateway to be used in Workspaces."
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"subnet": {
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vn1/subnets/sn1"
}
}
},
"virtualNetworkType": "External"
},
"sku": {
"name": "WorkspaceGatewayPremium",
Expand Down Expand Up @@ -46,10 +47,11 @@
"subnet": {
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vn1/subnets/sn1"
}
}
},
"virtualNetworkType": "External"
},
"sku": {
"name": "Standard",
"name": "WorkspaceGatewayPremium",
"capacity": 1
},
"systemData": {
Expand Down Expand Up @@ -80,10 +82,11 @@
"subnet": {
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vn1/subnets/sn1"
}
}
},
"virtualNetworkType": "External"
},
"sku": {
"name": "Standard",
"name": "WorkspaceGatewayPremium",
"capacity": 1
},
"systemData": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,32 +47,21 @@
}
},
{
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2/providers/Microsoft.ApiManagement/gateways/standard-gw-2",
"name": "standard-gw-2",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2/providers/Microsoft.ApiManagement/gateways/workspace-gw-2",
"name": "workspace-gw-2",
"type": "Microsoft.ApiManagement/gateways",
"tags": {
"Owner": "vitaliik"
"Owner": "foo"
},
"location": "East US",
"etag": "AAAAAAAWKwo=",
"properties": {
"provisioningState": "Succeeded",
"targetProvisioningState": "",
"createdAtUtc": "2021-06-16T09:40:00.9453556Z",
"frontend": {
"defaultHostname": "standard-gw-2.eastus.gateway.azure-api.net"
},
"backend": {
"subnet": {
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vn2/subnets/sn2"
}
},
"configurationApi": {
"hostname": "standard-gw-2.eastus.configuration.gateway.azure-api.net"
}
"createdAtUtc": "2021-06-16T09:40:00.9453556Z"
},
"sku": {
"name": "Standard",
"name": "WorkspaceGatewayPremium",
"capacity": 1
}
}
Expand Down