We recommend using Azure Native.
azure.apimanagement.StandaloneGateway
Explore with Pulumi AI
Manages an Azure API Management Standalone Gateway.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
name: "example-network",
location: example.location,
resourceGroupName: example.name,
addressSpaces: ["10.0.0.0/16"],
});
const exampleSubnet = new azure.network.Subnet("example", {
name: "example-subnet",
resourceGroupName: example.name,
virtualNetworkName: exampleVirtualNetwork.name,
addressPrefixes: ["10.0.1.0/24"],
delegations: [{
name: "apim-delegation",
serviceDelegation: {
name: "Microsoft.Web/serverFarms",
actions: ["Microsoft.Network/virtualNetworks/subnets/action"],
},
}],
});
const exampleStandaloneGateway = new azure.apimanagement.StandaloneGateway("example", {
name: "example-gateway-flexible",
resourceGroupName: example.name,
location: example.location,
virtualNetworkType: "External",
backendSubnetId: exampleSubnet.id,
sku: {
capacity: 1,
name: "WorkspaceGatewayPremium",
},
tags: {
Hello: "World",
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_virtual_network = azure.network.VirtualNetwork("example",
name="example-network",
location=example.location,
resource_group_name=example.name,
address_spaces=["10.0.0.0/16"])
example_subnet = azure.network.Subnet("example",
name="example-subnet",
resource_group_name=example.name,
virtual_network_name=example_virtual_network.name,
address_prefixes=["10.0.1.0/24"],
delegations=[{
"name": "apim-delegation",
"service_delegation": {
"name": "Microsoft.Web/serverFarms",
"actions": ["Microsoft.Network/virtualNetworks/subnets/action"],
},
}])
example_standalone_gateway = azure.apimanagement.StandaloneGateway("example",
name="example-gateway-flexible",
resource_group_name=example.name,
location=example.location,
virtual_network_type="External",
backend_subnet_id=example_subnet.id,
sku={
"capacity": 1,
"name": "WorkspaceGatewayPremium",
},
tags={
"Hello": "World",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/apimanagement"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
Name: pulumi.String("example-network"),
Location: example.Location,
ResourceGroupName: example.Name,
AddressSpaces: pulumi.StringArray{
pulumi.String("10.0.0.0/16"),
},
})
if err != nil {
return err
}
exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
Name: pulumi.String("example-subnet"),
ResourceGroupName: example.Name,
VirtualNetworkName: exampleVirtualNetwork.Name,
AddressPrefixes: pulumi.StringArray{
pulumi.String("10.0.1.0/24"),
},
Delegations: network.SubnetDelegationArray{
&network.SubnetDelegationArgs{
Name: pulumi.String("apim-delegation"),
ServiceDelegation: &network.SubnetDelegationServiceDelegationArgs{
Name: pulumi.String("Microsoft.Web/serverFarms"),
Actions: pulumi.StringArray{
pulumi.String("Microsoft.Network/virtualNetworks/subnets/action"),
},
},
},
},
})
if err != nil {
return err
}
_, err = apimanagement.NewStandaloneGateway(ctx, "example", &apimanagement.StandaloneGatewayArgs{
Name: pulumi.String("example-gateway-flexible"),
ResourceGroupName: example.Name,
Location: example.Location,
VirtualNetworkType: pulumi.String("External"),
BackendSubnetId: exampleSubnet.ID(),
Sku: &apimanagement.StandaloneGatewaySkuArgs{
Capacity: pulumi.Int(1),
Name: pulumi.String("WorkspaceGatewayPremium"),
},
Tags: pulumi.StringMap{
"Hello": pulumi.String("World"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
{
Name = "example-network",
Location = example.Location,
ResourceGroupName = example.Name,
AddressSpaces = new[]
{
"10.0.0.0/16",
},
});
var exampleSubnet = new Azure.Network.Subnet("example", new()
{
Name = "example-subnet",
ResourceGroupName = example.Name,
VirtualNetworkName = exampleVirtualNetwork.Name,
AddressPrefixes = new[]
{
"10.0.1.0/24",
},
Delegations = new[]
{
new Azure.Network.Inputs.SubnetDelegationArgs
{
Name = "apim-delegation",
ServiceDelegation = new Azure.Network.Inputs.SubnetDelegationServiceDelegationArgs
{
Name = "Microsoft.Web/serverFarms",
Actions = new[]
{
"Microsoft.Network/virtualNetworks/subnets/action",
},
},
},
},
});
var exampleStandaloneGateway = new Azure.ApiManagement.StandaloneGateway("example", new()
{
Name = "example-gateway-flexible",
ResourceGroupName = example.Name,
Location = example.Location,
VirtualNetworkType = "External",
BackendSubnetId = exampleSubnet.Id,
Sku = new Azure.ApiManagement.Inputs.StandaloneGatewaySkuArgs
{
Capacity = 1,
Name = "WorkspaceGatewayPremium",
},
Tags =
{
{ "Hello", "World" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.network.inputs.SubnetDelegationArgs;
import com.pulumi.azure.network.inputs.SubnetDelegationServiceDelegationArgs;
import com.pulumi.azure.apimanagement.StandaloneGateway;
import com.pulumi.azure.apimanagement.StandaloneGatewayArgs;
import com.pulumi.azure.apimanagement.inputs.StandaloneGatewaySkuArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
.name("example-network")
.location(example.location())
.resourceGroupName(example.name())
.addressSpaces("10.0.0.0/16")
.build());
var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
.name("example-subnet")
.resourceGroupName(example.name())
.virtualNetworkName(exampleVirtualNetwork.name())
.addressPrefixes("10.0.1.0/24")
.delegations(SubnetDelegationArgs.builder()
.name("apim-delegation")
.serviceDelegation(SubnetDelegationServiceDelegationArgs.builder()
.name("Microsoft.Web/serverFarms")
.actions("Microsoft.Network/virtualNetworks/subnets/action")
.build())
.build())
.build());
var exampleStandaloneGateway = new StandaloneGateway("exampleStandaloneGateway", StandaloneGatewayArgs.builder()
.name("example-gateway-flexible")
.resourceGroupName(example.name())
.location(example.location())
.virtualNetworkType("External")
.backendSubnetId(exampleSubnet.id())
.sku(StandaloneGatewaySkuArgs.builder()
.capacity(1)
.name("WorkspaceGatewayPremium")
.build())
.tags(Map.of("Hello", "World"))
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleVirtualNetwork:
type: azure:network:VirtualNetwork
name: example
properties:
name: example-network
location: ${example.location}
resourceGroupName: ${example.name}
addressSpaces:
- 10.0.0.0/16
exampleSubnet:
type: azure:network:Subnet
name: example
properties:
name: example-subnet
resourceGroupName: ${example.name}
virtualNetworkName: ${exampleVirtualNetwork.name}
addressPrefixes:
- 10.0.1.0/24
delegations:
- name: apim-delegation
serviceDelegation:
name: Microsoft.Web/serverFarms
actions:
- Microsoft.Network/virtualNetworks/subnets/action
exampleStandaloneGateway:
type: azure:apimanagement:StandaloneGateway
name: example
properties:
name: example-gateway-flexible
resourceGroupName: ${example.name}
location: ${example.location}
virtualNetworkType: External
backendSubnetId: ${exampleSubnet.id}
sku:
capacity: 1
name: WorkspaceGatewayPremium
tags:
Hello: World
API Providers
This resource uses the following Azure API Providers:
Microsoft.ApiManagement
- 2024-05-01
Create StandaloneGateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StandaloneGateway(name: string, args: StandaloneGatewayArgs, opts?: CustomResourceOptions);
@overload
def StandaloneGateway(resource_name: str,
args: StandaloneGatewayArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StandaloneGateway(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
sku: Optional[StandaloneGatewaySkuArgs] = None,
backend_subnet_id: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
virtual_network_type: Optional[str] = None)
func NewStandaloneGateway(ctx *Context, name string, args StandaloneGatewayArgs, opts ...ResourceOption) (*StandaloneGateway, error)
public StandaloneGateway(string name, StandaloneGatewayArgs args, CustomResourceOptions? opts = null)
public StandaloneGateway(String name, StandaloneGatewayArgs args)
public StandaloneGateway(String name, StandaloneGatewayArgs args, CustomResourceOptions options)
type: azure:apimanagement:StandaloneGateway
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args StandaloneGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args StandaloneGatewayArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args StandaloneGatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StandaloneGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StandaloneGatewayArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var standaloneGatewayResource = new Azure.ApiManagement.StandaloneGateway("standaloneGatewayResource", new()
{
ResourceGroupName = "string",
Sku = new Azure.ApiManagement.Inputs.StandaloneGatewaySkuArgs
{
Name = "string",
Capacity = 0,
},
BackendSubnetId = "string",
Location = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
VirtualNetworkType = "string",
});
example, err := apimanagement.NewStandaloneGateway(ctx, "standaloneGatewayResource", &apimanagement.StandaloneGatewayArgs{
ResourceGroupName: pulumi.String("string"),
Sku: &apimanagement.StandaloneGatewaySkuArgs{
Name: pulumi.String("string"),
Capacity: pulumi.Int(0),
},
BackendSubnetId: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
VirtualNetworkType: pulumi.String("string"),
})
var standaloneGatewayResource = new StandaloneGateway("standaloneGatewayResource", StandaloneGatewayArgs.builder()
.resourceGroupName("string")
.sku(StandaloneGatewaySkuArgs.builder()
.name("string")
.capacity(0)
.build())
.backendSubnetId("string")
.location("string")
.name("string")
.tags(Map.of("string", "string"))
.virtualNetworkType("string")
.build());
standalone_gateway_resource = azure.apimanagement.StandaloneGateway("standaloneGatewayResource",
resource_group_name="string",
sku={
"name": "string",
"capacity": 0,
},
backend_subnet_id="string",
location="string",
name="string",
tags={
"string": "string",
},
virtual_network_type="string")
const standaloneGatewayResource = new azure.apimanagement.StandaloneGateway("standaloneGatewayResource", {
resourceGroupName: "string",
sku: {
name: "string",
capacity: 0,
},
backendSubnetId: "string",
location: "string",
name: "string",
tags: {
string: "string",
},
virtualNetworkType: "string",
});
type: azure:apimanagement:StandaloneGateway
properties:
backendSubnetId: string
location: string
name: string
resourceGroupName: string
sku:
capacity: 0
name: string
tags:
string: string
virtualNetworkType: string
StandaloneGateway Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The StandaloneGateway resource accepts the following input properties:
- Resource
Group stringName - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- Sku
Standalone
Gateway Sku - A
sku
block as defined below. - Backend
Subnet stringId - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- Location string
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- Name string
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- Virtual
Network stringType - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
- Resource
Group stringName - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- Sku
Standalone
Gateway Sku Args - A
sku
block as defined below. - Backend
Subnet stringId - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- Location string
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- Name string
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- Virtual
Network stringType - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
- resource
Group StringName - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- sku
Standalone
Gateway Sku - A
sku
block as defined below. - backend
Subnet StringId - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- location String
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- name String
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- virtual
Network StringType - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
- resource
Group stringName - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- sku
Standalone
Gateway Sku - A
sku
block as defined below. - backend
Subnet stringId - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- location string
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- name string
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- virtual
Network stringType - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
- resource_
group_ strname - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- sku
Standalone
Gateway Sku Args - A
sku
block as defined below. - backend_
subnet_ strid - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- location str
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- name str
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- virtual_
network_ strtype - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
- resource
Group StringName - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- sku Property Map
- A
sku
block as defined below. - backend
Subnet StringId - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- location String
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- name String
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- virtual
Network StringType - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the StandaloneGateway resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing StandaloneGateway Resource
Get an existing StandaloneGateway resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: StandaloneGatewayState, opts?: CustomResourceOptions): StandaloneGateway
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
backend_subnet_id: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
sku: Optional[StandaloneGatewaySkuArgs] = None,
tags: Optional[Mapping[str, str]] = None,
virtual_network_type: Optional[str] = None) -> StandaloneGateway
func GetStandaloneGateway(ctx *Context, name string, id IDInput, state *StandaloneGatewayState, opts ...ResourceOption) (*StandaloneGateway, error)
public static StandaloneGateway Get(string name, Input<string> id, StandaloneGatewayState? state, CustomResourceOptions? opts = null)
public static StandaloneGateway get(String name, Output<String> id, StandaloneGatewayState state, CustomResourceOptions options)
resources: _: type: azure:apimanagement:StandaloneGateway get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Backend
Subnet stringId - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- Location string
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- Name string
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- Resource
Group stringName - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- Sku
Standalone
Gateway Sku - A
sku
block as defined below. - Dictionary<string, string>
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- Virtual
Network stringType - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
- Backend
Subnet stringId - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- Location string
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- Name string
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- Resource
Group stringName - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- Sku
Standalone
Gateway Sku Args - A
sku
block as defined below. - map[string]string
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- Virtual
Network stringType - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
- backend
Subnet StringId - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- location String
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- name String
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- resource
Group StringName - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- sku
Standalone
Gateway Sku - A
sku
block as defined below. - Map<String,String>
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- virtual
Network StringType - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
- backend
Subnet stringId - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- location string
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- name string
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- resource
Group stringName - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- sku
Standalone
Gateway Sku - A
sku
block as defined below. - {[key: string]: string}
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- virtual
Network stringType - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
- backend_
subnet_ strid - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- location str
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- name str
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- resource_
group_ strname - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- sku
Standalone
Gateway Sku Args - A
sku
block as defined below. - Mapping[str, str]
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- virtual_
network_ strtype - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
- backend
Subnet StringId - Specifies the subnet ID in which the backend systems are hosted. Changing this forces a new resource to be created.
- location String
- Specifies the Azure Region where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- name String
- Specifies the name which should be used for this API Management Standalone Gateway. Changing this forces a new resource to be created.
- resource
Group StringName - Specifies the name of the Resource Group where the API Management Standalone Gateway should exist. Changing this forces a new resource to be created.
- sku Property Map
- A
sku
block as defined below. - Map<String>
- A mapping of tags which should be assigned to the API Management Standalone Gateway. Changing this forces a new resource to be created.
- virtual
Network StringType - Specifies the type of VPN in which API Management gateway needs to be configured. Possible values are
External
andInternal
. Changing this forces a new resource to be created.
Supporting Types
StandaloneGatewaySku, StandaloneGatewaySkuArgs
Import
API Management Standalone Gateway can be imported using the resource id
, e.g.
$ pulumi import azure:apimanagement/standaloneGateway:StandaloneGateway example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.ApiManagement/gateways/gateway1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.