Show / Hide Table of Contents

Class 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",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
IntegrationRuntimeManaged
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.DataFactory
Assembly: Pulumi.Azure.dll
Syntax
public class IntegrationRuntimeManaged : CustomResource

Constructors

View Source

IntegrationRuntimeManaged(String, IntegrationRuntimeManagedArgs, CustomResourceOptions)

Create a IntegrationRuntimeManaged resource with the given unique name, arguments, and options.

Declaration
public IntegrationRuntimeManaged(string name, IntegrationRuntimeManagedArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

IntegrationRuntimeManagedArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

CatalogInfo

A catalog_info block as defined below.

Declaration
public Output<IntegrationRuntimeManagedCatalogInfo> CatalogInfo { get; }
Property Value
Type Description
Output<IntegrationRuntimeManagedCatalogInfo>
View Source

CustomSetupScript

A custom_setup_script block as defined below.

Declaration
public Output<IntegrationRuntimeManagedCustomSetupScript> CustomSetupScript { get; }
Property Value
Type Description
Output<IntegrationRuntimeManagedCustomSetupScript>
View Source

DataFactoryName

Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.

Declaration
public Output<string> DataFactoryName { get; }
Property Value
Type Description
Output<System.String>
View Source

Description

Declaration
public Output<string> Description { get; }
Property Value
Type Description
Output<System.String>
View Source

Edition

The Managed Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

Declaration
public Output<string> Edition { get; }
Property Value
Type Description
Output<System.String>
View Source

LicenseType

The type of the license that is used. Valid values are LicenseIncluded and BasePrize. Defaults to LicenseIncluded.

Declaration
public Output<string> LicenseType { get; }
Property Value
Type Description
Output<System.String>
View Source

Location

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Declaration
public Output<string> Location { get; }
Property Value
Type Description
Output<System.String>
View Source

MaxParallelExecutionsPerNode

Defines the maximum parallel executions per node. Defaults to 1. Max is 16.

Declaration
public Output<int?> MaxParallelExecutionsPerNode { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

Name

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.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

NodeSize

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_v2 and Standard_A8_v2

Declaration
public Output<string> NodeSize { get; }
Property Value
Type Description
Output<System.String>
View Source

NumberOfNodes

Number of nodes for the Managed Integration Runtime. Max is 10. Defaults to 1.

Declaration
public Output<int?> NumberOfNodes { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

ResourceGroupName

The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.

Declaration
public Output<string> ResourceGroupName { get; }
Property Value
Type Description
Output<System.String>
View Source

VnetIntegration

A vnet_integration block as defined below.

Declaration
public Output<IntegrationRuntimeManagedVnetIntegration> VnetIntegration { get; }
Property Value
Type Description
Output<IntegrationRuntimeManagedVnetIntegration>

Methods

View Source

Get(String, Input<String>, IntegrationRuntimeManagedState, CustomResourceOptions)

Get an existing IntegrationRuntimeManaged resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static IntegrationRuntimeManaged Get(string name, Input<string> id, IntegrationRuntimeManagedState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

IntegrationRuntimeManagedState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
IntegrationRuntimeManaged
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.