IntegrationRuntimeManaged
Manages an Azure Data Factory Managed Integration Runtime.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "northeurope",
});
var exampleFactory = new Azure.DataFactory.Factory("exampleFactory", new Azure.DataFactory.FactoryArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
});
var exampleIntegrationRuntimeManaged = new Azure.DataFactory.IntegrationRuntimeManaged("exampleIntegrationRuntimeManaged", new Azure.DataFactory.IntegrationRuntimeManagedArgs
{
DataFactoryName = exampleFactory.Name,
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
NodeSize = "Standard_D8_v3",
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/datafactory"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("northeurope"),
})
if err != nil {
return err
}
exampleFactory, err := datafactory.NewFactory(ctx, "exampleFactory", &datafactory.FactoryArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
})
if err != nil {
return err
}
_, err = datafactory.NewIntegrationRuntimeManaged(ctx, "exampleIntegrationRuntimeManaged", &datafactory.IntegrationRuntimeManagedArgs{
DataFactoryName: exampleFactory.Name,
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
NodeSize: pulumi.String("Standard_D8_v3"),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="northeurope")
example_factory = azure.datafactory.Factory("exampleFactory",
location=example_resource_group.location,
resource_group_name=example_resource_group.name)
example_integration_runtime_managed = azure.datafactory.IntegrationRuntimeManaged("exampleIntegrationRuntimeManaged",
data_factory_name=example_factory.name,
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
node_size="Standard_D8_v3")import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "northeurope"});
const exampleFactory = new azure.datafactory.Factory("exampleFactory", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
});
const exampleIntegrationRuntimeManaged = new azure.datafactory.IntegrationRuntimeManaged("exampleIntegrationRuntimeManaged", {
dataFactoryName: exampleFactory.name,
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
nodeSize: "Standard_D8_v3",
});Create a IntegrationRuntimeManaged Resource
new IntegrationRuntimeManaged(name: string, args: IntegrationRuntimeManagedArgs, opts?: CustomResourceOptions);def IntegrationRuntimeManaged(resource_name, opts=None, catalog_info=None, custom_setup_script=None, data_factory_name=None, description=None, edition=None, license_type=None, location=None, max_parallel_executions_per_node=None, name=None, node_size=None, number_of_nodes=None, resource_group_name=None, vnet_integration=None, __props__=None);func NewIntegrationRuntimeManaged(ctx *Context, name string, args IntegrationRuntimeManagedArgs, opts ...ResourceOption) (*IntegrationRuntimeManaged, error)public IntegrationRuntimeManaged(string name, IntegrationRuntimeManagedArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args IntegrationRuntimeManagedArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IntegrationRuntimeManagedArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationRuntimeManagedArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
IntegrationRuntimeManaged Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The IntegrationRuntimeManaged resource accepts the following input properties:
- Data
Factory stringName Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.
- Node
Size string The size of the nodes on which the Managed Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2- Resource
Group stringName The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
- Catalog
Info IntegrationRuntime Managed Catalog Info Args A
catalog_infoblock as defined below.- Custom
Setup IntegrationScript Runtime Managed Custom Setup Script Args A
custom_setup_scriptblock as defined below.- Description string
- Edition string
The Managed Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard.- License
Type string The type of the license that is used. Valid values are
LicenseIncludedandBasePrize. Defaults toLicenseIncluded.- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Max
Parallel intExecutions Per Node Defines the maximum parallel executions per node. Defaults to
1. Max is16.- Name string
Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- Number
Of intNodes Number of nodes for the Managed Integration Runtime. Max is
10. Defaults to1.- Vnet
Integration IntegrationRuntime Managed Vnet Integration Args A
vnet_integrationblock as defined below.
- Data
Factory stringName Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.
- Node
Size string The size of the nodes on which the Managed Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2- Resource
Group stringName The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
- Catalog
Info IntegrationRuntime Managed Catalog Info A
catalog_infoblock as defined below.- Custom
Setup IntegrationScript Runtime Managed Custom Setup Script A
custom_setup_scriptblock as defined below.- Description string
- Edition string
The Managed Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard.- License
Type string The type of the license that is used. Valid values are
LicenseIncludedandBasePrize. Defaults toLicenseIncluded.- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Max
Parallel intExecutions Per Node Defines the maximum parallel executions per node. Defaults to
1. Max is16.- Name string
Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- Number
Of intNodes Number of nodes for the Managed Integration Runtime. Max is
10. Defaults to1.- Vnet
Integration IntegrationRuntime Managed Vnet Integration A
vnet_integrationblock as defined below.
- data
Factory stringName Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.
- node
Size string The size of the nodes on which the Managed Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2- resource
Group stringName The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
- catalog
Info IntegrationRuntime Managed Catalog Info A
catalog_infoblock as defined below.- custom
Setup IntegrationScript Runtime Managed Custom Setup Script A
custom_setup_scriptblock as defined below.- description string
- edition string
The Managed Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard.- license
Type string The type of the license that is used. Valid values are
LicenseIncludedandBasePrize. Defaults toLicenseIncluded.- location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max
Parallel numberExecutions Per Node Defines the maximum parallel executions per node. Defaults to
1. Max is16.- name string
Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- number
Of numberNodes Number of nodes for the Managed Integration Runtime. Max is
10. Defaults to1.- vnet
Integration IntegrationRuntime Managed Vnet Integration A
vnet_integrationblock as defined below.
- data_
factory_ strname Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.
- node_
size str The size of the nodes on which the Managed Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2- resource_
group_ strname The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
- catalog_
info Dict[IntegrationRuntime Managed Catalog Info] A
catalog_infoblock as defined below.- custom_
setup_ Dict[Integrationscript Runtime Managed Custom Setup Script] A
custom_setup_scriptblock as defined below.- description str
- edition str
The Managed Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard.- license_
type str The type of the license that is used. Valid values are
LicenseIncludedandBasePrize. Defaults toLicenseIncluded.- location str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max_
parallel_ floatexecutions_ per_ node Defines the maximum parallel executions per node. Defaults to
1. Max is16.- name str
Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- number_
of_ floatnodes Number of nodes for the Managed Integration Runtime. Max is
10. Defaults to1.- vnet_
integration Dict[IntegrationRuntime Managed Vnet Integration] A
vnet_integrationblock as defined below.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationRuntimeManaged resource produces the following output properties:
Look up an Existing IntegrationRuntimeManaged Resource
Get an existing IntegrationRuntimeManaged 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?: IntegrationRuntimeManagedState, opts?: CustomResourceOptions): IntegrationRuntimeManagedstatic get(resource_name, id, opts=None, catalog_info=None, custom_setup_script=None, data_factory_name=None, description=None, edition=None, license_type=None, location=None, max_parallel_executions_per_node=None, name=None, node_size=None, number_of_nodes=None, resource_group_name=None, vnet_integration=None, __props__=None);func GetIntegrationRuntimeManaged(ctx *Context, name string, id IDInput, state *IntegrationRuntimeManagedState, opts ...ResourceOption) (*IntegrationRuntimeManaged, error)public static IntegrationRuntimeManaged Get(string name, Input<string> id, IntegrationRuntimeManagedState? state, CustomResourceOptions? opts = null)- 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.
The following state arguments are supported:
- Catalog
Info IntegrationRuntime Managed Catalog Info Args A
catalog_infoblock as defined below.- Custom
Setup IntegrationScript Runtime Managed Custom Setup Script Args A
custom_setup_scriptblock as defined below.- Data
Factory stringName Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.
- Description string
- Edition string
The Managed Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard.- License
Type string The type of the license that is used. Valid values are
LicenseIncludedandBasePrize. Defaults toLicenseIncluded.- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Max
Parallel intExecutions Per Node Defines the maximum parallel executions per node. Defaults to
1. Max is16.- Name string
Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- Node
Size string The size of the nodes on which the Managed Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2- Number
Of intNodes Number of nodes for the Managed Integration Runtime. Max is
10. Defaults to1.- Resource
Group stringName The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
- Vnet
Integration IntegrationRuntime Managed Vnet Integration Args A
vnet_integrationblock as defined below.
- Catalog
Info IntegrationRuntime Managed Catalog Info A
catalog_infoblock as defined below.- Custom
Setup IntegrationScript Runtime Managed Custom Setup Script A
custom_setup_scriptblock as defined below.- Data
Factory stringName Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.
- Description string
- Edition string
The Managed Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard.- License
Type string The type of the license that is used. Valid values are
LicenseIncludedandBasePrize. Defaults toLicenseIncluded.- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Max
Parallel intExecutions Per Node Defines the maximum parallel executions per node. Defaults to
1. Max is16.- Name string
Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- Node
Size string The size of the nodes on which the Managed Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2- Number
Of intNodes Number of nodes for the Managed Integration Runtime. Max is
10. Defaults to1.- Resource
Group stringName The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
- Vnet
Integration IntegrationRuntime Managed Vnet Integration A
vnet_integrationblock as defined below.
- catalog
Info IntegrationRuntime Managed Catalog Info A
catalog_infoblock as defined below.- custom
Setup IntegrationScript Runtime Managed Custom Setup Script A
custom_setup_scriptblock as defined below.- data
Factory stringName Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.
- description string
- edition string
The Managed Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard.- license
Type string The type of the license that is used. Valid values are
LicenseIncludedandBasePrize. Defaults toLicenseIncluded.- location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max
Parallel numberExecutions Per Node Defines the maximum parallel executions per node. Defaults to
1. Max is16.- name string
Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- node
Size string The size of the nodes on which the Managed Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2- number
Of numberNodes Number of nodes for the Managed Integration Runtime. Max is
10. Defaults to1.- resource
Group stringName The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
- vnet
Integration IntegrationRuntime Managed Vnet Integration A
vnet_integrationblock as defined below.
- catalog_
info Dict[IntegrationRuntime Managed Catalog Info] A
catalog_infoblock as defined below.- custom_
setup_ Dict[Integrationscript Runtime Managed Custom Setup Script] A
custom_setup_scriptblock as defined below.- data_
factory_ strname Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.
- description str
- edition str
The Managed Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard.- license_
type str The type of the license that is used. Valid values are
LicenseIncludedandBasePrize. Defaults toLicenseIncluded.- location str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max_
parallel_ floatexecutions_ per_ node Defines the maximum parallel executions per node. Defaults to
1. Max is16.- name str
Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- node_
size str The size of the nodes on which the Managed Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2- number_
of_ floatnodes Number of nodes for the Managed Integration Runtime. Max is
10. Defaults to1.- resource_
group_ strname The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
- vnet_
integration Dict[IntegrationRuntime Managed Vnet Integration] A
vnet_integrationblock as defined below.
Supporting Types
IntegrationRuntimeManagedCatalogInfo
- Administrator
Login string Administrator login name for the SQL Server.
- Administrator
Password string Administrator login password for the SQL Server.
- Server
Endpoint string The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
- Pricing
Tier string Pricing tier for the database that will be created for the SSIS catalog. Valid values are:
Basic,Standard,PremiumandPremiumRS.
- Administrator
Login string Administrator login name for the SQL Server.
- Administrator
Password string Administrator login password for the SQL Server.
- Server
Endpoint string The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
- Pricing
Tier string Pricing tier for the database that will be created for the SSIS catalog. Valid values are:
Basic,Standard,PremiumandPremiumRS.
- administrator
Login string Administrator login name for the SQL Server.
- administrator
Password string Administrator login password for the SQL Server.
- server
Endpoint string The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
- pricing
Tier string Pricing tier for the database that will be created for the SSIS catalog. Valid values are:
Basic,Standard,PremiumandPremiumRS.
- administrator
Password str Administrator login password for the SQL Server.
- administrator_
login str Administrator login name for the SQL Server.
- server
Endpoint str The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
- pricing_
tier str Pricing tier for the database that will be created for the SSIS catalog. Valid values are:
Basic,Standard,PremiumandPremiumRS.
IntegrationRuntimeManagedCustomSetupScript
- Blob
Container stringUri The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- Sas
Token string A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- Blob
Container stringUri The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- Sas
Token string A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- blob
Container stringUri The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- sas
Token string A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- blob
Container strUri The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- sas
Token str A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
IntegrationRuntimeManagedVnetIntegration
- Subnet
Name string Name of the subnet to which the nodes of the Managed Integration Runtime will be added.
- Vnet
Id string ID of the virtual network to which the nodes of the Managed Integration Runtime will be added.
- Subnet
Name string Name of the subnet to which the nodes of the Managed Integration Runtime will be added.
- Vnet
Id string ID of the virtual network to which the nodes of the Managed Integration Runtime will be added.
- subnet
Name string Name of the subnet to which the nodes of the Managed Integration Runtime will be added.
- vnet
Id string ID of the virtual network to which the nodes of the Managed Integration Runtime will be added.
- subnet
Name str Name of the subnet to which the nodes of the Managed Integration Runtime will be added.
- vnet
Id str ID of the virtual network to which the nodes of the Managed Integration Runtime will be added.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.