azure-native.synapse.IntegrationRuntime
Explore with Pulumi AI
Integration runtime resource type. Azure REST API version: 2021-06-01. Prior API version in Azure Native 1.x: 2021-03-01.
Other available API versions: 2021-06-01-preview.
Example Usage
Create integration runtime
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var integrationRuntime = new AzureNative.Synapse.IntegrationRuntime("integrationRuntime", new()
    {
        IntegrationRuntimeName = "exampleIntegrationRuntime",
        Properties = new AzureNative.Synapse.Inputs.SelfHostedIntegrationRuntimeArgs
        {
            Description = "A selfhosted integration runtime",
            Type = "SelfHosted",
        },
        ResourceGroupName = "exampleResourceGroup",
        WorkspaceName = "exampleWorkspace",
    });
});
package main
import (
	synapse "github.com/pulumi/pulumi-azure-native-sdk/synapse/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := synapse.NewIntegrationRuntime(ctx, "integrationRuntime", &synapse.IntegrationRuntimeArgs{
			IntegrationRuntimeName: pulumi.String("exampleIntegrationRuntime"),
			Properties: &synapse.SelfHostedIntegrationRuntimeArgs{
				Description: pulumi.String("A selfhosted integration runtime"),
				Type:        pulumi.String("SelfHosted"),
			},
			ResourceGroupName: pulumi.String("exampleResourceGroup"),
			WorkspaceName:     pulumi.String("exampleWorkspace"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.synapse.IntegrationRuntime;
import com.pulumi.azurenative.synapse.IntegrationRuntimeArgs;
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 integrationRuntime = new IntegrationRuntime("integrationRuntime", IntegrationRuntimeArgs.builder()
            .integrationRuntimeName("exampleIntegrationRuntime")
            .properties(SelfHostedIntegrationRuntimeArgs.builder()
                .description("A selfhosted integration runtime")
                .type("SelfHosted")
                .build())
            .resourceGroupName("exampleResourceGroup")
            .workspaceName("exampleWorkspace")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const integrationRuntime = new azure_native.synapse.IntegrationRuntime("integrationRuntime", {
    integrationRuntimeName: "exampleIntegrationRuntime",
    properties: {
        description: "A selfhosted integration runtime",
        type: "SelfHosted",
    },
    resourceGroupName: "exampleResourceGroup",
    workspaceName: "exampleWorkspace",
});
import pulumi
import pulumi_azure_native as azure_native
integration_runtime = azure_native.synapse.IntegrationRuntime("integrationRuntime",
    integration_runtime_name="exampleIntegrationRuntime",
    properties={
        "description": "A selfhosted integration runtime",
        "type": "SelfHosted",
    },
    resource_group_name="exampleResourceGroup",
    workspace_name="exampleWorkspace")
resources:
  integrationRuntime:
    type: azure-native:synapse:IntegrationRuntime
    properties:
      integrationRuntimeName: exampleIntegrationRuntime
      properties:
        description: A selfhosted integration runtime
        type: SelfHosted
      resourceGroupName: exampleResourceGroup
      workspaceName: exampleWorkspace
Create IntegrationRuntime Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationRuntime(name: string, args: IntegrationRuntimeArgs, opts?: CustomResourceOptions);@overload
def IntegrationRuntime(resource_name: str,
                       args: IntegrationRuntimeArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def IntegrationRuntime(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       properties: Optional[Union[ManagedIntegrationRuntimeArgs, SelfHostedIntegrationRuntimeArgs]] = None,
                       resource_group_name: Optional[str] = None,
                       workspace_name: Optional[str] = None,
                       integration_runtime_name: Optional[str] = None)func NewIntegrationRuntime(ctx *Context, name string, args IntegrationRuntimeArgs, opts ...ResourceOption) (*IntegrationRuntime, error)public IntegrationRuntime(string name, IntegrationRuntimeArgs args, CustomResourceOptions? opts = null)
public IntegrationRuntime(String name, IntegrationRuntimeArgs args)
public IntegrationRuntime(String name, IntegrationRuntimeArgs args, CustomResourceOptions options)
type: azure-native:synapse:IntegrationRuntime
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 IntegrationRuntimeArgs
- 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 IntegrationRuntimeArgs
- 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 IntegrationRuntimeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationRuntimeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationRuntimeArgs
- 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 azure_nativeIntegrationRuntimeResource = new AzureNative.Synapse.IntegrationRuntime("azure-nativeIntegrationRuntimeResource", new()
{
    Properties = new AzureNative.Synapse.Inputs.ManagedIntegrationRuntimeArgs
    {
        Type = "Managed",
        ComputeProperties = new AzureNative.Synapse.Inputs.IntegrationRuntimeComputePropertiesArgs
        {
            DataFlowProperties = new AzureNative.Synapse.Inputs.IntegrationRuntimeDataFlowPropertiesArgs
            {
                ComputeType = "string",
                CoreCount = 0,
                TimeToLive = 0,
            },
            Location = "string",
            MaxParallelExecutionsPerNode = 0,
            NodeSize = "string",
            NumberOfNodes = 0,
            VNetProperties = new AzureNative.Synapse.Inputs.IntegrationRuntimeVNetPropertiesArgs
            {
                PublicIPs = new[]
                {
                    "string",
                },
                Subnet = "string",
                SubnetId = "string",
                VNetId = "string",
            },
        },
        CustomerVirtualNetwork = new AzureNative.Synapse.Inputs.IntegrationRuntimeCustomerVirtualNetworkArgs
        {
            SubnetId = "string",
        },
        Description = "string",
        Id = "string",
        ReferenceName = "string",
        SsisProperties = new AzureNative.Synapse.Inputs.IntegrationRuntimeSsisPropertiesArgs
        {
            CatalogInfo = new AzureNative.Synapse.Inputs.IntegrationRuntimeSsisCatalogInfoArgs
            {
                CatalogAdminPassword = new AzureNative.Synapse.Inputs.SecureStringArgs
                {
                    Type = "SecureString",
                    Value = "string",
                },
                CatalogAdminUserName = "string",
                CatalogPricingTier = "string",
                CatalogServerEndpoint = "string",
            },
            CustomSetupScriptProperties = new AzureNative.Synapse.Inputs.IntegrationRuntimeCustomSetupScriptPropertiesArgs
            {
                BlobContainerUri = "string",
                SasToken = new AzureNative.Synapse.Inputs.SecureStringArgs
                {
                    Type = "SecureString",
                    Value = "string",
                },
            },
            DataProxyProperties = new AzureNative.Synapse.Inputs.IntegrationRuntimeDataProxyPropertiesArgs
            {
                ConnectVia = new AzureNative.Synapse.Inputs.EntityReferenceArgs
                {
                    ReferenceName = "string",
                    Type = "string",
                },
                Path = "string",
                StagingLinkedService = new AzureNative.Synapse.Inputs.EntityReferenceArgs
                {
                    ReferenceName = "string",
                    Type = "string",
                },
            },
            Edition = "string",
            ExpressCustomSetupProperties = new[]
            {
                new AzureNative.Synapse.Inputs.CmdkeySetupArgs
                {
                    Password = new AzureNative.Synapse.Inputs.SecureStringArgs
                    {
                        Type = "SecureString",
                        Value = "string",
                    },
                    TargetName = "any",
                    Type = "CmdkeySetup",
                    UserName = "any",
                },
            },
            LicenseType = "string",
        },
    },
    ResourceGroupName = "string",
    WorkspaceName = "string",
    IntegrationRuntimeName = "string",
});
example, err := synapse.NewIntegrationRuntime(ctx, "azure-nativeIntegrationRuntimeResource", &synapse.IntegrationRuntimeArgs{
	Properties: &synapse.ManagedIntegrationRuntimeArgs{
		Type: pulumi.String("Managed"),
		ComputeProperties: &synapse.IntegrationRuntimeComputePropertiesArgs{
			DataFlowProperties: &synapse.IntegrationRuntimeDataFlowPropertiesArgs{
				ComputeType: pulumi.String("string"),
				CoreCount:   pulumi.Int(0),
				TimeToLive:  pulumi.Int(0),
			},
			Location:                     pulumi.String("string"),
			MaxParallelExecutionsPerNode: pulumi.Int(0),
			NodeSize:                     pulumi.String("string"),
			NumberOfNodes:                pulumi.Int(0),
			VNetProperties: &synapse.IntegrationRuntimeVNetPropertiesArgs{
				PublicIPs: pulumi.StringArray{
					pulumi.String("string"),
				},
				Subnet:   pulumi.String("string"),
				SubnetId: pulumi.String("string"),
				VNetId:   pulumi.String("string"),
			},
		},
		CustomerVirtualNetwork: &synapse.IntegrationRuntimeCustomerVirtualNetworkArgs{
			SubnetId: pulumi.String("string"),
		},
		Description:   pulumi.String("string"),
		Id:            pulumi.String("string"),
		ReferenceName: pulumi.String("string"),
		SsisProperties: &synapse.IntegrationRuntimeSsisPropertiesArgs{
			CatalogInfo: &synapse.IntegrationRuntimeSsisCatalogInfoArgs{
				CatalogAdminPassword: &synapse.SecureStringArgs{
					Type:  pulumi.String("SecureString"),
					Value: pulumi.String("string"),
				},
				CatalogAdminUserName:  pulumi.String("string"),
				CatalogPricingTier:    pulumi.String("string"),
				CatalogServerEndpoint: pulumi.String("string"),
			},
			CustomSetupScriptProperties: &synapse.IntegrationRuntimeCustomSetupScriptPropertiesArgs{
				BlobContainerUri: pulumi.String("string"),
				SasToken: &synapse.SecureStringArgs{
					Type:  pulumi.String("SecureString"),
					Value: pulumi.String("string"),
				},
			},
			DataProxyProperties: &synapse.IntegrationRuntimeDataProxyPropertiesArgs{
				ConnectVia: &synapse.EntityReferenceArgs{
					ReferenceName: pulumi.String("string"),
					Type:          pulumi.String("string"),
				},
				Path: pulumi.String("string"),
				StagingLinkedService: &synapse.EntityReferenceArgs{
					ReferenceName: pulumi.String("string"),
					Type:          pulumi.String("string"),
				},
			},
			Edition: pulumi.String("string"),
			ExpressCustomSetupProperties: pulumi.Array{
				synapse.CmdkeySetup{
					Password: synapse.SecureString{
						Type:  "SecureString",
						Value: "string",
					},
					TargetName: "any",
					Type:       "CmdkeySetup",
					UserName:   "any",
				},
			},
			LicenseType: pulumi.String("string"),
		},
	},
	ResourceGroupName:      pulumi.String("string"),
	WorkspaceName:          pulumi.String("string"),
	IntegrationRuntimeName: pulumi.String("string"),
})
var azure_nativeIntegrationRuntimeResource = new IntegrationRuntime("azure-nativeIntegrationRuntimeResource", IntegrationRuntimeArgs.builder()
    .properties(ManagedIntegrationRuntimeArgs.builder()
        .type("Managed")
        .computeProperties(IntegrationRuntimeComputePropertiesArgs.builder()
            .dataFlowProperties(IntegrationRuntimeDataFlowPropertiesArgs.builder()
                .computeType("string")
                .coreCount(0)
                .timeToLive(0)
                .build())
            .location("string")
            .maxParallelExecutionsPerNode(0)
            .nodeSize("string")
            .numberOfNodes(0)
            .vNetProperties(IntegrationRuntimeVNetPropertiesArgs.builder()
                .publicIPs("string")
                .subnet("string")
                .subnetId("string")
                .vNetId("string")
                .build())
            .build())
        .customerVirtualNetwork(IntegrationRuntimeCustomerVirtualNetworkArgs.builder()
            .subnetId("string")
            .build())
        .description("string")
        .id("string")
        .referenceName("string")
        .ssisProperties(IntegrationRuntimeSsisPropertiesArgs.builder()
            .catalogInfo(IntegrationRuntimeSsisCatalogInfoArgs.builder()
                .catalogAdminPassword(SecureStringArgs.builder()
                    .type("SecureString")
                    .value("string")
                    .build())
                .catalogAdminUserName("string")
                .catalogPricingTier("string")
                .catalogServerEndpoint("string")
                .build())
            .customSetupScriptProperties(IntegrationRuntimeCustomSetupScriptPropertiesArgs.builder()
                .blobContainerUri("string")
                .sasToken(SecureStringArgs.builder()
                    .type("SecureString")
                    .value("string")
                    .build())
                .build())
            .dataProxyProperties(IntegrationRuntimeDataProxyPropertiesArgs.builder()
                .connectVia(EntityReferenceArgs.builder()
                    .referenceName("string")
                    .type("string")
                    .build())
                .path("string")
                .stagingLinkedService(EntityReferenceArgs.builder()
                    .referenceName("string")
                    .type("string")
                    .build())
                .build())
            .edition("string")
            .expressCustomSetupProperties(CmdkeySetupArgs.builder()
                .password(SecureStringArgs.builder()
                    .type("SecureString")
                    .value("string")
                    .build())
                .targetName("any")
                .type("CmdkeySetup")
                .userName("any")
                .build())
            .licenseType("string")
            .build())
        .build())
    .resourceGroupName("string")
    .workspaceName("string")
    .integrationRuntimeName("string")
    .build());
azure_native_integration_runtime_resource = azure_native.synapse.IntegrationRuntime("azure-nativeIntegrationRuntimeResource",
    properties={
        "type": "Managed",
        "compute_properties": {
            "data_flow_properties": {
                "compute_type": "string",
                "core_count": 0,
                "time_to_live": 0,
            },
            "location": "string",
            "max_parallel_executions_per_node": 0,
            "node_size": "string",
            "number_of_nodes": 0,
            "v_net_properties": {
                "public_ips": ["string"],
                "subnet": "string",
                "subnet_id": "string",
                "v_net_id": "string",
            },
        },
        "customer_virtual_network": {
            "subnet_id": "string",
        },
        "description": "string",
        "id": "string",
        "reference_name": "string",
        "ssis_properties": {
            "catalog_info": {
                "catalog_admin_password": {
                    "type": "SecureString",
                    "value": "string",
                },
                "catalog_admin_user_name": "string",
                "catalog_pricing_tier": "string",
                "catalog_server_endpoint": "string",
            },
            "custom_setup_script_properties": {
                "blob_container_uri": "string",
                "sas_token": {
                    "type": "SecureString",
                    "value": "string",
                },
            },
            "data_proxy_properties": {
                "connect_via": {
                    "reference_name": "string",
                    "type": "string",
                },
                "path": "string",
                "staging_linked_service": {
                    "reference_name": "string",
                    "type": "string",
                },
            },
            "edition": "string",
            "express_custom_setup_properties": [{
                "password": {
                    "type": "SecureString",
                    "value": "string",
                },
                "target_name": "any",
                "type": "CmdkeySetup",
                "user_name": "any",
            }],
            "license_type": "string",
        },
    },
    resource_group_name="string",
    workspace_name="string",
    integration_runtime_name="string")
const azure_nativeIntegrationRuntimeResource = new azure_native.synapse.IntegrationRuntime("azure-nativeIntegrationRuntimeResource", {
    properties: {
        type: "Managed",
        computeProperties: {
            dataFlowProperties: {
                computeType: "string",
                coreCount: 0,
                timeToLive: 0,
            },
            location: "string",
            maxParallelExecutionsPerNode: 0,
            nodeSize: "string",
            numberOfNodes: 0,
            vNetProperties: {
                publicIPs: ["string"],
                subnet: "string",
                subnetId: "string",
                vNetId: "string",
            },
        },
        customerVirtualNetwork: {
            subnetId: "string",
        },
        description: "string",
        id: "string",
        referenceName: "string",
        ssisProperties: {
            catalogInfo: {
                catalogAdminPassword: {
                    type: "SecureString",
                    value: "string",
                },
                catalogAdminUserName: "string",
                catalogPricingTier: "string",
                catalogServerEndpoint: "string",
            },
            customSetupScriptProperties: {
                blobContainerUri: "string",
                sasToken: {
                    type: "SecureString",
                    value: "string",
                },
            },
            dataProxyProperties: {
                connectVia: {
                    referenceName: "string",
                    type: "string",
                },
                path: "string",
                stagingLinkedService: {
                    referenceName: "string",
                    type: "string",
                },
            },
            edition: "string",
            expressCustomSetupProperties: [{
                password: {
                    type: "SecureString",
                    value: "string",
                },
                targetName: "any",
                type: "CmdkeySetup",
                userName: "any",
            }],
            licenseType: "string",
        },
    },
    resourceGroupName: "string",
    workspaceName: "string",
    integrationRuntimeName: "string",
});
type: azure-native:synapse:IntegrationRuntime
properties:
    integrationRuntimeName: string
    properties:
        computeProperties:
            dataFlowProperties:
                computeType: string
                coreCount: 0
                timeToLive: 0
            location: string
            maxParallelExecutionsPerNode: 0
            nodeSize: string
            numberOfNodes: 0
            vNetProperties:
                publicIPs:
                    - string
                subnet: string
                subnetId: string
                vNetId: string
        customerVirtualNetwork:
            subnetId: string
        description: string
        id: string
        referenceName: string
        ssisProperties:
            catalogInfo:
                catalogAdminPassword:
                    type: SecureString
                    value: string
                catalogAdminUserName: string
                catalogPricingTier: string
                catalogServerEndpoint: string
            customSetupScriptProperties:
                blobContainerUri: string
                sasToken:
                    type: SecureString
                    value: string
            dataProxyProperties:
                connectVia:
                    referenceName: string
                    type: string
                path: string
                stagingLinkedService:
                    referenceName: string
                    type: string
            edition: string
            expressCustomSetupProperties:
                - password:
                    type: SecureString
                    value: string
                  targetName: any
                  type: CmdkeySetup
                  userName: any
            licenseType: string
        type: Managed
    resourceGroupName: string
    workspaceName: string
IntegrationRuntime 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 IntegrationRuntime resource accepts the following input properties:
- Properties
Pulumi.Azure | Pulumi.Native. Synapse. Inputs. Managed Integration Runtime Azure Native. Synapse. Inputs. Self Hosted Integration Runtime 
- Integration runtime properties.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- The name of the workspace.
- IntegrationRuntime stringName 
- Integration runtime name
- Properties
ManagedIntegration | SelfRuntime Args Hosted Integration Runtime Args 
- Integration runtime properties.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- The name of the workspace.
- IntegrationRuntime stringName 
- Integration runtime name
- properties
ManagedIntegration | SelfRuntime Hosted Integration Runtime 
- Integration runtime properties.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- The name of the workspace.
- integrationRuntime StringName 
- Integration runtime name
- properties
ManagedIntegration | SelfRuntime Hosted Integration Runtime 
- Integration runtime properties.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- workspaceName string
- The name of the workspace.
- integrationRuntime stringName 
- Integration runtime name
- properties
ManagedIntegration | SelfRuntime Args Hosted Integration Runtime Args 
- Integration runtime properties.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- workspace_name str
- The name of the workspace.
- integration_runtime_ strname 
- Integration runtime name
- properties Property Map | Property Map
- Integration runtime properties.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- The name of the workspace.
- integrationRuntime StringName 
- Integration runtime name
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationRuntime resource produces the following output properties:
Supporting Types
CmdkeySetup, CmdkeySetupArgs    
- Password
Pulumi.Azure Native. Synapse. Inputs. Secure String 
- The password of data source access.
- TargetName object
- The server name of data source access.
- UserName object
- The user name of data source access.
- Password
SecureString 
- The password of data source access.
- TargetName interface{}
- The server name of data source access.
- UserName interface{}
- The user name of data source access.
- password
SecureString 
- The password of data source access.
- targetName Object
- The server name of data source access.
- userName Object
- The user name of data source access.
- password
SecureString 
- The password of data source access.
- targetName any
- The server name of data source access.
- userName any
- The user name of data source access.
- password
SecureString 
- The password of data source access.
- target_name Any
- The server name of data source access.
- user_name Any
- The user name of data source access.
- password Property Map
- The password of data source access.
- targetName Any
- The server name of data source access.
- userName Any
- The user name of data source access.
CmdkeySetupResponse, CmdkeySetupResponseArgs      
- Password
Pulumi.Azure Native. Synapse. Inputs. Secure String Response 
- The password of data source access.
- TargetName object
- The server name of data source access.
- UserName object
- The user name of data source access.
- Password
SecureString Response 
- The password of data source access.
- TargetName interface{}
- The server name of data source access.
- UserName interface{}
- The user name of data source access.
- password
SecureString Response 
- The password of data source access.
- targetName Object
- The server name of data source access.
- userName Object
- The user name of data source access.
- password
SecureString Response 
- The password of data source access.
- targetName any
- The server name of data source access.
- userName any
- The user name of data source access.
- password
SecureString Response 
- The password of data source access.
- target_name Any
- The server name of data source access.
- user_name Any
- The user name of data source access.
- password Property Map
- The password of data source access.
- targetName Any
- The server name of data source access.
- userName Any
- The user name of data source access.
ComponentSetup, ComponentSetupArgs    
- ComponentName string
- The name of the 3rd party component.
- LicenseKey Pulumi.Azure Native. Synapse. Inputs. Secure String 
- The license key to activate the component.
- ComponentName string
- The name of the 3rd party component.
- LicenseKey SecureString 
- The license key to activate the component.
- componentName String
- The name of the 3rd party component.
- licenseKey SecureString 
- The license key to activate the component.
- componentName string
- The name of the 3rd party component.
- licenseKey SecureString 
- The license key to activate the component.
- component_name str
- The name of the 3rd party component.
- license_key SecureString 
- The license key to activate the component.
- componentName String
- The name of the 3rd party component.
- licenseKey Property Map
- The license key to activate the component.
ComponentSetupResponse, ComponentSetupResponseArgs      
- ComponentName string
- The name of the 3rd party component.
- LicenseKey Pulumi.Azure Native. Synapse. Inputs. Secure String Response 
- The license key to activate the component.
- ComponentName string
- The name of the 3rd party component.
- LicenseKey SecureString Response 
- The license key to activate the component.
- componentName String
- The name of the 3rd party component.
- licenseKey SecureString Response 
- The license key to activate the component.
- componentName string
- The name of the 3rd party component.
- licenseKey SecureString Response 
- The license key to activate the component.
- component_name str
- The name of the 3rd party component.
- license_key SecureString Response 
- The license key to activate the component.
- componentName String
- The name of the 3rd party component.
- licenseKey Property Map
- The license key to activate the component.
DataFlowComputeType, DataFlowComputeTypeArgs        
- General
- General
- MemoryOptimized 
- MemoryOptimized
- ComputeOptimized 
- ComputeOptimized
- DataFlow Compute Type General 
- General
- DataFlow Compute Type Memory Optimized 
- MemoryOptimized
- DataFlow Compute Type Compute Optimized 
- ComputeOptimized
- General
- General
- MemoryOptimized 
- MemoryOptimized
- ComputeOptimized 
- ComputeOptimized
- General
- General
- MemoryOptimized 
- MemoryOptimized
- ComputeOptimized 
- ComputeOptimized
- GENERAL
- General
- MEMORY_OPTIMIZED
- MemoryOptimized
- COMPUTE_OPTIMIZED
- ComputeOptimized
- "General"
- General
- "MemoryOptimized" 
- MemoryOptimized
- "ComputeOptimized" 
- ComputeOptimized
EntityReference, EntityReferenceArgs    
- ReferenceName string
- The name of this referenced entity.
- Type
string | Pulumi.Azure Native. Synapse. Integration Runtime Entity Reference Type 
- The type of this referenced entity.
- ReferenceName string
- The name of this referenced entity.
- Type
string | IntegrationRuntime Entity Reference Type 
- The type of this referenced entity.
- referenceName String
- The name of this referenced entity.
- type
String | IntegrationRuntime Entity Reference Type 
- The type of this referenced entity.
- referenceName string
- The name of this referenced entity.
- type
string | IntegrationRuntime Entity Reference Type 
- The type of this referenced entity.
- reference_name str
- The name of this referenced entity.
- type
str | IntegrationRuntime Entity Reference Type 
- The type of this referenced entity.
- referenceName String
- The name of this referenced entity.
- type
String | "IntegrationRuntime Reference" | "Linked Service Reference" 
- The type of this referenced entity.
EntityReferenceResponse, EntityReferenceResponseArgs      
- ReferenceName string
- The name of this referenced entity.
- Type string
- The type of this referenced entity.
- ReferenceName string
- The name of this referenced entity.
- Type string
- The type of this referenced entity.
- referenceName String
- The name of this referenced entity.
- type String
- The type of this referenced entity.
- referenceName string
- The name of this referenced entity.
- type string
- The type of this referenced entity.
- reference_name str
- The name of this referenced entity.
- type str
- The type of this referenced entity.
- referenceName String
- The name of this referenced entity.
- type String
- The type of this referenced entity.
EnvironmentVariableSetup, EnvironmentVariableSetupArgs      
- VariableName string
- The name of the environment variable.
- VariableValue string
- The value of the environment variable.
- VariableName string
- The name of the environment variable.
- VariableValue string
- The value of the environment variable.
- variableName String
- The name of the environment variable.
- variableValue String
- The value of the environment variable.
- variableName string
- The name of the environment variable.
- variableValue string
- The value of the environment variable.
- variable_name str
- The name of the environment variable.
- variable_value str
- The value of the environment variable.
- variableName String
- The name of the environment variable.
- variableValue String
- The value of the environment variable.
EnvironmentVariableSetupResponse, EnvironmentVariableSetupResponseArgs        
- VariableName string
- The name of the environment variable.
- VariableValue string
- The value of the environment variable.
- VariableName string
- The name of the environment variable.
- VariableValue string
- The value of the environment variable.
- variableName String
- The name of the environment variable.
- variableValue String
- The value of the environment variable.
- variableName string
- The name of the environment variable.
- variableValue string
- The value of the environment variable.
- variable_name str
- The name of the environment variable.
- variable_value str
- The value of the environment variable.
- variableName String
- The name of the environment variable.
- variableValue String
- The value of the environment variable.
IntegrationRuntimeComputeProperties, IntegrationRuntimeComputePropertiesArgs        
- DataFlow Pulumi.Properties Azure Native. Synapse. Inputs. Integration Runtime Data Flow Properties 
- Data flow properties for managed integration runtime.
- Location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- MaxParallel intExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- NodeSize string
- The node size requirement to managed integration runtime.
- NumberOf intNodes 
- The required number of nodes for managed integration runtime.
- VNetProperties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime VNet Properties 
- VNet properties for managed integration runtime.
- DataFlow IntegrationProperties Runtime Data Flow Properties 
- Data flow properties for managed integration runtime.
- Location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- MaxParallel intExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- NodeSize string
- The node size requirement to managed integration runtime.
- NumberOf intNodes 
- The required number of nodes for managed integration runtime.
- VNetProperties IntegrationRuntime VNet Properties 
- VNet properties for managed integration runtime.
- dataFlow IntegrationProperties Runtime Data Flow Properties 
- Data flow properties for managed integration runtime.
- location String
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel IntegerExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize String
- The node size requirement to managed integration runtime.
- numberOf IntegerNodes 
- The required number of nodes for managed integration runtime.
- vNet IntegrationProperties Runtime VNet Properties 
- VNet properties for managed integration runtime.
- dataFlow IntegrationProperties Runtime Data Flow Properties 
- Data flow properties for managed integration runtime.
- location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel numberExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize string
- The node size requirement to managed integration runtime.
- numberOf numberNodes 
- The required number of nodes for managed integration runtime.
- vNet IntegrationProperties Runtime VNet Properties 
- VNet properties for managed integration runtime.
- data_flow_ Integrationproperties Runtime Data Flow Properties 
- Data flow properties for managed integration runtime.
- location str
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- max_parallel_ intexecutions_ per_ node 
- Maximum parallel executions count per node for managed integration runtime.
- node_size str
- The node size requirement to managed integration runtime.
- number_of_ intnodes 
- The required number of nodes for managed integration runtime.
- v_net_ Integrationproperties Runtime VNet Properties 
- VNet properties for managed integration runtime.
- dataFlow Property MapProperties 
- Data flow properties for managed integration runtime.
- location String
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel NumberExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize String
- The node size requirement to managed integration runtime.
- numberOf NumberNodes 
- The required number of nodes for managed integration runtime.
- vNet Property MapProperties 
- VNet properties for managed integration runtime.
IntegrationRuntimeComputePropertiesResponse, IntegrationRuntimeComputePropertiesResponseArgs          
- DataFlow Pulumi.Properties Azure Native. Synapse. Inputs. Integration Runtime Data Flow Properties Response 
- Data flow properties for managed integration runtime.
- Location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- MaxParallel intExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- NodeSize string
- The node size requirement to managed integration runtime.
- NumberOf intNodes 
- The required number of nodes for managed integration runtime.
- VNetProperties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime VNet Properties Response 
- VNet properties for managed integration runtime.
- DataFlow IntegrationProperties Runtime Data Flow Properties Response 
- Data flow properties for managed integration runtime.
- Location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- MaxParallel intExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- NodeSize string
- The node size requirement to managed integration runtime.
- NumberOf intNodes 
- The required number of nodes for managed integration runtime.
- VNetProperties IntegrationRuntime VNet Properties Response 
- VNet properties for managed integration runtime.
- dataFlow IntegrationProperties Runtime Data Flow Properties Response 
- Data flow properties for managed integration runtime.
- location String
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel IntegerExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize String
- The node size requirement to managed integration runtime.
- numberOf IntegerNodes 
- The required number of nodes for managed integration runtime.
- vNet IntegrationProperties Runtime VNet Properties Response 
- VNet properties for managed integration runtime.
- dataFlow IntegrationProperties Runtime Data Flow Properties Response 
- Data flow properties for managed integration runtime.
- location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel numberExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize string
- The node size requirement to managed integration runtime.
- numberOf numberNodes 
- The required number of nodes for managed integration runtime.
- vNet IntegrationProperties Runtime VNet Properties Response 
- VNet properties for managed integration runtime.
- data_flow_ Integrationproperties Runtime Data Flow Properties Response 
- Data flow properties for managed integration runtime.
- location str
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- max_parallel_ intexecutions_ per_ node 
- Maximum parallel executions count per node for managed integration runtime.
- node_size str
- The node size requirement to managed integration runtime.
- number_of_ intnodes 
- The required number of nodes for managed integration runtime.
- v_net_ Integrationproperties Runtime VNet Properties Response 
- VNet properties for managed integration runtime.
- dataFlow Property MapProperties 
- Data flow properties for managed integration runtime.
- location String
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel NumberExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize String
- The node size requirement to managed integration runtime.
- numberOf NumberNodes 
- The required number of nodes for managed integration runtime.
- vNet Property MapProperties 
- VNet properties for managed integration runtime.
IntegrationRuntimeCustomSetupScriptProperties, IntegrationRuntimeCustomSetupScriptPropertiesArgs            
- BlobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- SasToken Pulumi.Azure Native. Synapse. Inputs. Secure String 
- The SAS token of the Azure blob container.
- BlobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- SasToken SecureString 
- The SAS token of the Azure blob container.
- blobContainer StringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken SecureString 
- The SAS token of the Azure blob container.
- blobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken SecureString 
- The SAS token of the Azure blob container.
- blob_container_ struri 
- The URI of the Azure blob container that contains the custom setup script.
- sas_token SecureString 
- The SAS token of the Azure blob container.
- blobContainer StringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken Property Map
- The SAS token of the Azure blob container.
IntegrationRuntimeCustomSetupScriptPropertiesResponse, IntegrationRuntimeCustomSetupScriptPropertiesResponseArgs              
- BlobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- SasToken Pulumi.Azure Native. Synapse. Inputs. Secure String Response 
- The SAS token of the Azure blob container.
- BlobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- SasToken SecureString Response 
- The SAS token of the Azure blob container.
- blobContainer StringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken SecureString Response 
- The SAS token of the Azure blob container.
- blobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken SecureString Response 
- The SAS token of the Azure blob container.
- blob_container_ struri 
- The URI of the Azure blob container that contains the custom setup script.
- sas_token SecureString Response 
- The SAS token of the Azure blob container.
- blobContainer StringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken Property Map
- The SAS token of the Azure blob container.
IntegrationRuntimeCustomerVirtualNetwork, IntegrationRuntimeCustomerVirtualNetworkArgs          
- SubnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- SubnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId String
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnet_id str
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId String
- The ID of subnet to which Azure-SSIS integration runtime will join.
IntegrationRuntimeCustomerVirtualNetworkResponse, IntegrationRuntimeCustomerVirtualNetworkResponseArgs            
- SubnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- SubnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId String
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnet_id str
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId String
- The ID of subnet to which Azure-SSIS integration runtime will join.
IntegrationRuntimeDataFlowProperties, IntegrationRuntimeDataFlowPropertiesArgs          
- ComputeType string | Pulumi.Azure Native. Synapse. Data Flow Compute Type 
- Compute type of the cluster which will execute data flow job.
- CoreCount int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- TimeTo intLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- ComputeType string | DataFlow Compute Type 
- Compute type of the cluster which will execute data flow job.
- CoreCount int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- TimeTo intLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- computeType String | DataFlow Compute Type 
- Compute type of the cluster which will execute data flow job.
- coreCount Integer
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- timeTo IntegerLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- computeType string | DataFlow Compute Type 
- Compute type of the cluster which will execute data flow job.
- coreCount number
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- timeTo numberLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- compute_type str | DataFlow Compute Type 
- Compute type of the cluster which will execute data flow job.
- core_count int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- time_to_ intlive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- computeType String | "General" | "MemoryOptimized" | "Compute Optimized" 
- Compute type of the cluster which will execute data flow job.
- coreCount Number
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- timeTo NumberLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
IntegrationRuntimeDataFlowPropertiesResponse, IntegrationRuntimeDataFlowPropertiesResponseArgs            
- ComputeType string
- Compute type of the cluster which will execute data flow job.
- CoreCount int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- TimeTo intLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- ComputeType string
- Compute type of the cluster which will execute data flow job.
- CoreCount int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- TimeTo intLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- computeType String
- Compute type of the cluster which will execute data flow job.
- coreCount Integer
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- timeTo IntegerLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- computeType string
- Compute type of the cluster which will execute data flow job.
- coreCount number
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- timeTo numberLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- compute_type str
- Compute type of the cluster which will execute data flow job.
- core_count int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- time_to_ intlive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- computeType String
- Compute type of the cluster which will execute data flow job.
- coreCount Number
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- timeTo NumberLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
IntegrationRuntimeDataProxyProperties, IntegrationRuntimeDataProxyPropertiesArgs          
- ConnectVia Pulumi.Azure Native. Synapse. Inputs. Entity Reference 
- The self-hosted integration runtime reference.
- Path string
- The path to contain the staged data in the Blob storage.
- StagingLinked Pulumi.Service Azure Native. Synapse. Inputs. Entity Reference 
- The staging linked service reference.
- ConnectVia EntityReference 
- The self-hosted integration runtime reference.
- Path string
- The path to contain the staged data in the Blob storage.
- StagingLinked EntityService Reference 
- The staging linked service reference.
- connectVia EntityReference 
- The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- stagingLinked EntityService Reference 
- The staging linked service reference.
- connectVia EntityReference 
- The self-hosted integration runtime reference.
- path string
- The path to contain the staged data in the Blob storage.
- stagingLinked EntityService Reference 
- The staging linked service reference.
- connect_via EntityReference 
- The self-hosted integration runtime reference.
- path str
- The path to contain the staged data in the Blob storage.
- staging_linked_ Entityservice Reference 
- The staging linked service reference.
- connectVia Property Map
- The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- stagingLinked Property MapService 
- The staging linked service reference.
IntegrationRuntimeDataProxyPropertiesResponse, IntegrationRuntimeDataProxyPropertiesResponseArgs            
- ConnectVia Pulumi.Azure Native. Synapse. Inputs. Entity Reference Response 
- The self-hosted integration runtime reference.
- Path string
- The path to contain the staged data in the Blob storage.
- StagingLinked Pulumi.Service Azure Native. Synapse. Inputs. Entity Reference Response 
- The staging linked service reference.
- ConnectVia EntityReference Response 
- The self-hosted integration runtime reference.
- Path string
- The path to contain the staged data in the Blob storage.
- StagingLinked EntityService Reference Response 
- The staging linked service reference.
- connectVia EntityReference Response 
- The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- stagingLinked EntityService Reference Response 
- The staging linked service reference.
- connectVia EntityReference Response 
- The self-hosted integration runtime reference.
- path string
- The path to contain the staged data in the Blob storage.
- stagingLinked EntityService Reference Response 
- The staging linked service reference.
- connect_via EntityReference Response 
- The self-hosted integration runtime reference.
- path str
- The path to contain the staged data in the Blob storage.
- staging_linked_ Entityservice Reference Response 
- The staging linked service reference.
- connectVia Property Map
- The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- stagingLinked Property MapService 
- The staging linked service reference.
IntegrationRuntimeEdition, IntegrationRuntimeEditionArgs      
- Standard
- Standard
- Enterprise
- Enterprise
- IntegrationRuntime Edition Standard 
- Standard
- IntegrationRuntime Edition Enterprise 
- Enterprise
- Standard
- Standard
- Enterprise
- Enterprise
- Standard
- Standard
- Enterprise
- Enterprise
- STANDARD
- Standard
- ENTERPRISE
- Enterprise
- "Standard"
- Standard
- "Enterprise"
- Enterprise
IntegrationRuntimeEntityReferenceType, IntegrationRuntimeEntityReferenceTypeArgs          
- IntegrationRuntime Reference 
- IntegrationRuntimeReference
- LinkedService Reference 
- LinkedServiceReference
- IntegrationRuntime Entity Reference Type Integration Runtime Reference 
- IntegrationRuntimeReference
- IntegrationRuntime Entity Reference Type Linked Service Reference 
- LinkedServiceReference
- IntegrationRuntime Reference 
- IntegrationRuntimeReference
- LinkedService Reference 
- LinkedServiceReference
- IntegrationRuntime Reference 
- IntegrationRuntimeReference
- LinkedService Reference 
- LinkedServiceReference
- INTEGRATION_RUNTIME_REFERENCE
- IntegrationRuntimeReference
- LINKED_SERVICE_REFERENCE
- LinkedServiceReference
- "IntegrationRuntime Reference" 
- IntegrationRuntimeReference
- "LinkedService Reference" 
- LinkedServiceReference
IntegrationRuntimeLicenseType, IntegrationRuntimeLicenseTypeArgs        
- BasePrice 
- BasePrice
- LicenseIncluded 
- LicenseIncluded
- IntegrationRuntime License Type Base Price 
- BasePrice
- IntegrationRuntime License Type License Included 
- LicenseIncluded
- BasePrice 
- BasePrice
- LicenseIncluded 
- LicenseIncluded
- BasePrice 
- BasePrice
- LicenseIncluded 
- LicenseIncluded
- BASE_PRICE
- BasePrice
- LICENSE_INCLUDED
- LicenseIncluded
- "BasePrice" 
- BasePrice
- "LicenseIncluded" 
- LicenseIncluded
IntegrationRuntimeSsisCatalogInfo, IntegrationRuntimeSsisCatalogInfoArgs          
- CatalogAdmin Pulumi.Password Azure Native. Synapse. Inputs. Secure String 
- The password of the administrator user account of the catalog database.
- CatalogAdmin stringUser Name 
- The administrator user name of catalog database.
- CatalogPricing string | Pulumi.Tier Azure Native. Synapse. Integration Runtime Ssis Catalog Pricing Tier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- CatalogServer stringEndpoint 
- The catalog database server URL.
- CatalogAdmin SecurePassword String 
- The password of the administrator user account of the catalog database.
- CatalogAdmin stringUser Name 
- The administrator user name of catalog database.
- CatalogPricing string | IntegrationTier Runtime Ssis Catalog Pricing Tier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- CatalogServer stringEndpoint 
- The catalog database server URL.
- catalogAdmin SecurePassword String 
- The password of the administrator user account of the catalog database.
- catalogAdmin StringUser Name 
- The administrator user name of catalog database.
- catalogPricing String | IntegrationTier Runtime Ssis Catalog Pricing Tier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer StringEndpoint 
- The catalog database server URL.
- catalogAdmin SecurePassword String 
- The password of the administrator user account of the catalog database.
- catalogAdmin stringUser Name 
- The administrator user name of catalog database.
- catalogPricing string | IntegrationTier Runtime Ssis Catalog Pricing Tier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer stringEndpoint 
- The catalog database server URL.
- catalog_admin_ Securepassword String 
- The password of the administrator user account of the catalog database.
- catalog_admin_ struser_ name 
- The administrator user name of catalog database.
- catalog_pricing_ str | Integrationtier Runtime Ssis Catalog Pricing Tier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalog_server_ strendpoint 
- The catalog database server URL.
- catalogAdmin Property MapPassword 
- The password of the administrator user account of the catalog database.
- catalogAdmin StringUser Name 
- The administrator user name of catalog database.
- catalogPricing String | "Basic" | "Standard" | "Premium" | "PremiumTier RS" 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer StringEndpoint 
- The catalog database server URL.
IntegrationRuntimeSsisCatalogInfoResponse, IntegrationRuntimeSsisCatalogInfoResponseArgs            
- CatalogAdmin Pulumi.Password Azure Native. Synapse. Inputs. Secure String Response 
- The password of the administrator user account of the catalog database.
- CatalogAdmin stringUser Name 
- The administrator user name of catalog database.
- CatalogPricing stringTier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- CatalogServer stringEndpoint 
- The catalog database server URL.
- CatalogAdmin SecurePassword String Response 
- The password of the administrator user account of the catalog database.
- CatalogAdmin stringUser Name 
- The administrator user name of catalog database.
- CatalogPricing stringTier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- CatalogServer stringEndpoint 
- The catalog database server URL.
- catalogAdmin SecurePassword String Response 
- The password of the administrator user account of the catalog database.
- catalogAdmin StringUser Name 
- The administrator user name of catalog database.
- catalogPricing StringTier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer StringEndpoint 
- The catalog database server URL.
- catalogAdmin SecurePassword String Response 
- The password of the administrator user account of the catalog database.
- catalogAdmin stringUser Name 
- The administrator user name of catalog database.
- catalogPricing stringTier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer stringEndpoint 
- The catalog database server URL.
- catalog_admin_ Securepassword String Response 
- The password of the administrator user account of the catalog database.
- catalog_admin_ struser_ name 
- The administrator user name of catalog database.
- catalog_pricing_ strtier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalog_server_ strendpoint 
- The catalog database server URL.
- catalogAdmin Property MapPassword 
- The password of the administrator user account of the catalog database.
- catalogAdmin StringUser Name 
- The administrator user name of catalog database.
- catalogPricing StringTier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer StringEndpoint 
- The catalog database server URL.
IntegrationRuntimeSsisCatalogPricingTier, IntegrationRuntimeSsisCatalogPricingTierArgs            
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- PremiumRS 
- PremiumRS
- IntegrationRuntime Ssis Catalog Pricing Tier Basic 
- Basic
- IntegrationRuntime Ssis Catalog Pricing Tier Standard 
- Standard
- IntegrationRuntime Ssis Catalog Pricing Tier Premium 
- Premium
- IntegrationRuntime Ssis Catalog Pricing Tier Premium RS 
- PremiumRS
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- PremiumRS 
- PremiumRS
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- PremiumRS 
- PremiumRS
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- PREMIUM_RS
- PremiumRS
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
- "PremiumRS" 
- PremiumRS
IntegrationRuntimeSsisProperties, IntegrationRuntimeSsisPropertiesArgs        
- CatalogInfo Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Ssis Catalog Info 
- Catalog information for managed dedicated integration runtime.
- CustomSetup Pulumi.Script Properties Azure Native. Synapse. Inputs. Integration Runtime Custom Setup Script Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- DataProxy Pulumi.Properties Azure Native. Synapse. Inputs. Integration Runtime Data Proxy Properties 
- Data proxy properties for a managed dedicated integration runtime.
- Edition
string | Pulumi.Azure Native. Synapse. Integration Runtime Edition 
- The edition for the SSIS Integration Runtime
- ExpressCustom List<object>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- LicenseType string | Pulumi.Azure Native. Synapse. Integration Runtime License Type 
- License type for bringing your own license scenario.
- CatalogInfo IntegrationRuntime Ssis Catalog Info 
- Catalog information for managed dedicated integration runtime.
- CustomSetup IntegrationScript Properties Runtime Custom Setup Script Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- DataProxy IntegrationProperties Runtime Data Proxy Properties 
- Data proxy properties for a managed dedicated integration runtime.
- Edition
string | IntegrationRuntime Edition 
- The edition for the SSIS Integration Runtime
- ExpressCustom []interface{}Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- LicenseType string | IntegrationRuntime License Type 
- License type for bringing your own license scenario.
- catalogInfo IntegrationRuntime Ssis Catalog Info 
- Catalog information for managed dedicated integration runtime.
- customSetup IntegrationScript Properties Runtime Custom Setup Script Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy IntegrationProperties Runtime Data Proxy Properties 
- Data proxy properties for a managed dedicated integration runtime.
- edition
String | IntegrationRuntime Edition 
- The edition for the SSIS Integration Runtime
- expressCustom List<Object>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType String | IntegrationRuntime License Type 
- License type for bringing your own license scenario.
- catalogInfo IntegrationRuntime Ssis Catalog Info 
- Catalog information for managed dedicated integration runtime.
- customSetup IntegrationScript Properties Runtime Custom Setup Script Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy IntegrationProperties Runtime Data Proxy Properties 
- Data proxy properties for a managed dedicated integration runtime.
- edition
string | IntegrationRuntime Edition 
- The edition for the SSIS Integration Runtime
- expressCustom (CmdkeySetup Properties Setup | Component Setup | Environment Variable Setup)[] 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType string | IntegrationRuntime License Type 
- License type for bringing your own license scenario.
- catalog_info IntegrationRuntime Ssis Catalog Info 
- Catalog information for managed dedicated integration runtime.
- custom_setup_ Integrationscript_ properties Runtime Custom Setup Script Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- data_proxy_ Integrationproperties Runtime Data Proxy Properties 
- Data proxy properties for a managed dedicated integration runtime.
- edition
str | IntegrationRuntime Edition 
- The edition for the SSIS Integration Runtime
- express_custom_ Sequence[Union[Cmdkeysetup_ properties Setup, Component Setup, Environment Variable Setup]] 
- Custom setup without script properties for a SSIS integration runtime.
- license_type str | IntegrationRuntime License Type 
- License type for bringing your own license scenario.
- catalogInfo Property Map
- Catalog information for managed dedicated integration runtime.
- customSetup Property MapScript Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy Property MapProperties 
- Data proxy properties for a managed dedicated integration runtime.
- edition String | "Standard" | "Enterprise"
- The edition for the SSIS Integration Runtime
- expressCustom List<Property Map | Property Map | Property Map>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType String | "BasePrice" | "License Included" 
- License type for bringing your own license scenario.
IntegrationRuntimeSsisPropertiesResponse, IntegrationRuntimeSsisPropertiesResponseArgs          
- CatalogInfo Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Ssis Catalog Info Response 
- Catalog information for managed dedicated integration runtime.
- CustomSetup Pulumi.Script Properties Azure Native. Synapse. Inputs. Integration Runtime Custom Setup Script Properties Response 
- Custom setup script properties for a managed dedicated integration runtime.
- DataProxy Pulumi.Properties Azure Native. Synapse. Inputs. Integration Runtime Data Proxy Properties Response 
- Data proxy properties for a managed dedicated integration runtime.
- Edition string
- The edition for the SSIS Integration Runtime
- ExpressCustom List<object>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- LicenseType string
- License type for bringing your own license scenario.
- CatalogInfo IntegrationRuntime Ssis Catalog Info Response 
- Catalog information for managed dedicated integration runtime.
- CustomSetup IntegrationScript Properties Runtime Custom Setup Script Properties Response 
- Custom setup script properties for a managed dedicated integration runtime.
- DataProxy IntegrationProperties Runtime Data Proxy Properties Response 
- Data proxy properties for a managed dedicated integration runtime.
- Edition string
- The edition for the SSIS Integration Runtime
- ExpressCustom []interface{}Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- LicenseType string
- License type for bringing your own license scenario.
- catalogInfo IntegrationRuntime Ssis Catalog Info Response 
- Catalog information for managed dedicated integration runtime.
- customSetup IntegrationScript Properties Runtime Custom Setup Script Properties Response 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy IntegrationProperties Runtime Data Proxy Properties Response 
- Data proxy properties for a managed dedicated integration runtime.
- edition String
- The edition for the SSIS Integration Runtime
- expressCustom List<Object>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType String
- License type for bringing your own license scenario.
- catalogInfo IntegrationRuntime Ssis Catalog Info Response 
- Catalog information for managed dedicated integration runtime.
- customSetup IntegrationScript Properties Runtime Custom Setup Script Properties Response 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy IntegrationProperties Runtime Data Proxy Properties Response 
- Data proxy properties for a managed dedicated integration runtime.
- edition string
- The edition for the SSIS Integration Runtime
- expressCustom (CmdkeySetup Properties Setup Response | Component Setup Response | Environment Variable Setup Response)[] 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType string
- License type for bringing your own license scenario.
- catalog_info IntegrationRuntime Ssis Catalog Info Response 
- Catalog information for managed dedicated integration runtime.
- custom_setup_ Integrationscript_ properties Runtime Custom Setup Script Properties Response 
- Custom setup script properties for a managed dedicated integration runtime.
- data_proxy_ Integrationproperties Runtime Data Proxy Properties Response 
- Data proxy properties for a managed dedicated integration runtime.
- edition str
- The edition for the SSIS Integration Runtime
- express_custom_ Sequence[Union[Cmdkeysetup_ properties Setup Response, Component Setup Response, Environment Variable Setup Response]] 
- Custom setup without script properties for a SSIS integration runtime.
- license_type str
- License type for bringing your own license scenario.
- catalogInfo Property Map
- Catalog information for managed dedicated integration runtime.
- customSetup Property MapScript Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy Property MapProperties 
- Data proxy properties for a managed dedicated integration runtime.
- edition String
- The edition for the SSIS Integration Runtime
- expressCustom List<Property Map | Property Map | Property Map>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType String
- License type for bringing your own license scenario.
IntegrationRuntimeVNetProperties, IntegrationRuntimeVNetPropertiesArgs        
- PublicIPs List<string>
- Resource IDs of the public IP addresses that this integration runtime will use.
- Subnet string
- The name of the subnet this integration runtime will join.
- SubnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNetId string
- The ID of the VNet that this integration runtime will join.
- PublicIPs []string
- Resource IDs of the public IP addresses that this integration runtime will use.
- Subnet string
- The name of the subnet this integration runtime will join.
- SubnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNetId string
- The ID of the VNet that this integration runtime will join.
- publicIPs List<String>
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet String
- The name of the subnet this integration runtime will join.
- subnetId String
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet StringId 
- The ID of the VNet that this integration runtime will join.
- publicIPs string[]
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet string
- The name of the subnet this integration runtime will join.
- subnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet stringId 
- The ID of the VNet that this integration runtime will join.
- public_ips Sequence[str]
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet str
- The name of the subnet this integration runtime will join.
- subnet_id str
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- v_net_ strid 
- The ID of the VNet that this integration runtime will join.
- publicIPs List<String>
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet String
- The name of the subnet this integration runtime will join.
- subnetId String
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet StringId 
- The ID of the VNet that this integration runtime will join.
IntegrationRuntimeVNetPropertiesResponse, IntegrationRuntimeVNetPropertiesResponseArgs          
- PublicIPs List<string>
- Resource IDs of the public IP addresses that this integration runtime will use.
- Subnet string
- The name of the subnet this integration runtime will join.
- SubnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNetId string
- The ID of the VNet that this integration runtime will join.
- PublicIPs []string
- Resource IDs of the public IP addresses that this integration runtime will use.
- Subnet string
- The name of the subnet this integration runtime will join.
- SubnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNetId string
- The ID of the VNet that this integration runtime will join.
- publicIPs List<String>
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet String
- The name of the subnet this integration runtime will join.
- subnetId String
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet StringId 
- The ID of the VNet that this integration runtime will join.
- publicIPs string[]
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet string
- The name of the subnet this integration runtime will join.
- subnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet stringId 
- The ID of the VNet that this integration runtime will join.
- public_ips Sequence[str]
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet str
- The name of the subnet this integration runtime will join.
- subnet_id str
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- v_net_ strid 
- The ID of the VNet that this integration runtime will join.
- publicIPs List<String>
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet String
- The name of the subnet this integration runtime will join.
- subnetId String
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet StringId 
- The ID of the VNet that this integration runtime will join.
LinkedIntegrationRuntimeKeyAuthorization, LinkedIntegrationRuntimeKeyAuthorizationArgs          
- Key
Pulumi.Azure Native. Synapse. Inputs. Secure String 
- The key used for authorization.
- Key
SecureString 
- The key used for authorization.
- key
SecureString 
- The key used for authorization.
- key
SecureString 
- The key used for authorization.
- key
SecureString 
- The key used for authorization.
- key Property Map
- The key used for authorization.
LinkedIntegrationRuntimeKeyAuthorizationResponse, LinkedIntegrationRuntimeKeyAuthorizationResponseArgs            
- Key
Pulumi.Azure Native. Synapse. Inputs. Secure String Response 
- The key used for authorization.
- Key
SecureString Response 
- The key used for authorization.
- key
SecureString Response 
- The key used for authorization.
- key
SecureString Response 
- The key used for authorization.
- key
SecureString Response 
- The key used for authorization.
- key Property Map
- The key used for authorization.
LinkedIntegrationRuntimeRbacAuthorization, LinkedIntegrationRuntimeRbacAuthorizationArgs          
- ResourceId string
- The resource identifier of the integration runtime to be shared.
- ResourceId string
- The resource identifier of the integration runtime to be shared.
- resourceId String
- The resource identifier of the integration runtime to be shared.
- resourceId string
- The resource identifier of the integration runtime to be shared.
- resource_id str
- The resource identifier of the integration runtime to be shared.
- resourceId String
- The resource identifier of the integration runtime to be shared.
LinkedIntegrationRuntimeRbacAuthorizationResponse, LinkedIntegrationRuntimeRbacAuthorizationResponseArgs            
- ResourceId string
- The resource identifier of the integration runtime to be shared.
- ResourceId string
- The resource identifier of the integration runtime to be shared.
- resourceId String
- The resource identifier of the integration runtime to be shared.
- resourceId string
- The resource identifier of the integration runtime to be shared.
- resource_id str
- The resource identifier of the integration runtime to be shared.
- resourceId String
- The resource identifier of the integration runtime to be shared.
ManagedIntegrationRuntime, ManagedIntegrationRuntimeArgs      
- ComputeProperties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Compute Properties 
- The compute resource for managed integration runtime.
- CustomerVirtual Pulumi.Network Azure Native. Synapse. Inputs. Integration Runtime Customer Virtual Network 
- The name of virtual network to which Azure-SSIS integration runtime will join
- Description string
- Integration runtime description.
- Id string
- The id of the managed virtual network.
- ReferenceName string
- The reference name of the managed virtual network
- SsisProperties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Ssis Properties 
- SSIS properties for managed integration runtime.
- ComputeProperties IntegrationRuntime Compute Properties 
- The compute resource for managed integration runtime.
- CustomerVirtual IntegrationNetwork Runtime Customer Virtual Network 
- The name of virtual network to which Azure-SSIS integration runtime will join
- Description string
- Integration runtime description.
- Id string
- The id of the managed virtual network.
- ReferenceName string
- The reference name of the managed virtual network
- SsisProperties IntegrationRuntime Ssis Properties 
- SSIS properties for managed integration runtime.
- computeProperties IntegrationRuntime Compute Properties 
- The compute resource for managed integration runtime.
- customerVirtual IntegrationNetwork Runtime Customer Virtual Network 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description String
- Integration runtime description.
- id String
- The id of the managed virtual network.
- referenceName String
- The reference name of the managed virtual network
- ssisProperties IntegrationRuntime Ssis Properties 
- SSIS properties for managed integration runtime.
- computeProperties IntegrationRuntime Compute Properties 
- The compute resource for managed integration runtime.
- customerVirtual IntegrationNetwork Runtime Customer Virtual Network 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description string
- Integration runtime description.
- id string
- The id of the managed virtual network.
- referenceName string
- The reference name of the managed virtual network
- ssisProperties IntegrationRuntime Ssis Properties 
- SSIS properties for managed integration runtime.
- compute_properties IntegrationRuntime Compute Properties 
- The compute resource for managed integration runtime.
- customer_virtual_ Integrationnetwork Runtime Customer Virtual Network 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description str
- Integration runtime description.
- id str
- The id of the managed virtual network.
- reference_name str
- The reference name of the managed virtual network
- ssis_properties IntegrationRuntime Ssis Properties 
- SSIS properties for managed integration runtime.
- computeProperties Property Map
- The compute resource for managed integration runtime.
- customerVirtual Property MapNetwork 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description String
- Integration runtime description.
- id String
- The id of the managed virtual network.
- referenceName String
- The reference name of the managed virtual network
- ssisProperties Property Map
- SSIS properties for managed integration runtime.
ManagedIntegrationRuntimeResponse, ManagedIntegrationRuntimeResponseArgs        
- ProvisioningState string
- Integration runtime state, only valid for managed dedicated integration runtime.
- ComputeProperties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Compute Properties Response 
- The compute resource for managed integration runtime.
- CustomerVirtual Pulumi.Network Azure Native. Synapse. Inputs. Integration Runtime Customer Virtual Network Response 
- The name of virtual network to which Azure-SSIS integration runtime will join
- Description string
- Integration runtime description.
- Id string
- The id of the managed virtual network.
- ReferenceName string
- The reference name of the managed virtual network
- SsisProperties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Ssis Properties Response 
- SSIS properties for managed integration runtime.
- ProvisioningState string
- Integration runtime state, only valid for managed dedicated integration runtime.
- ComputeProperties IntegrationRuntime Compute Properties Response 
- The compute resource for managed integration runtime.
- CustomerVirtual IntegrationNetwork Runtime Customer Virtual Network Response 
- The name of virtual network to which Azure-SSIS integration runtime will join
- Description string
- Integration runtime description.
- Id string
- The id of the managed virtual network.
- ReferenceName string
- The reference name of the managed virtual network
- SsisProperties IntegrationRuntime Ssis Properties Response 
- SSIS properties for managed integration runtime.
- provisioningState String
- Integration runtime state, only valid for managed dedicated integration runtime.
- computeProperties IntegrationRuntime Compute Properties Response 
- The compute resource for managed integration runtime.
- customerVirtual IntegrationNetwork Runtime Customer Virtual Network Response 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description String
- Integration runtime description.
- id String
- The id of the managed virtual network.
- referenceName String
- The reference name of the managed virtual network
- ssisProperties IntegrationRuntime Ssis Properties Response 
- SSIS properties for managed integration runtime.
- provisioningState string
- Integration runtime state, only valid for managed dedicated integration runtime.
- computeProperties IntegrationRuntime Compute Properties Response 
- The compute resource for managed integration runtime.
- customerVirtual IntegrationNetwork Runtime Customer Virtual Network Response 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description string
- Integration runtime description.
- id string
- The id of the managed virtual network.
- referenceName string
- The reference name of the managed virtual network
- ssisProperties IntegrationRuntime Ssis Properties Response 
- SSIS properties for managed integration runtime.
- provisioning_state str
- Integration runtime state, only valid for managed dedicated integration runtime.
- compute_properties IntegrationRuntime Compute Properties Response 
- The compute resource for managed integration runtime.
- customer_virtual_ Integrationnetwork Runtime Customer Virtual Network Response 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description str
- Integration runtime description.
- id str
- The id of the managed virtual network.
- reference_name str
- The reference name of the managed virtual network
- ssis_properties IntegrationRuntime Ssis Properties Response 
- SSIS properties for managed integration runtime.
- provisioningState String
- Integration runtime state, only valid for managed dedicated integration runtime.
- computeProperties Property Map
- The compute resource for managed integration runtime.
- customerVirtual Property MapNetwork 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description String
- Integration runtime description.
- id String
- The id of the managed virtual network.
- referenceName String
- The reference name of the managed virtual network
- ssisProperties Property Map
- SSIS properties for managed integration runtime.
SecureString, SecureStringArgs    
- Value string
- Value of secure string.
- Value string
- Value of secure string.
- value String
- Value of secure string.
- value string
- Value of secure string.
- value str
- Value of secure string.
- value String
- Value of secure string.
SecureStringResponse, SecureStringResponseArgs      
- Value string
- Value of secure string.
- Value string
- Value of secure string.
- value String
- Value of secure string.
- value string
- Value of secure string.
- value str
- Value of secure string.
- value String
- Value of secure string.
SelfHostedIntegrationRuntime, SelfHostedIntegrationRuntimeArgs        
- Description string
- Integration runtime description.
- LinkedInfo Pulumi.Azure | Pulumi.Native. Synapse. Inputs. Linked Integration Runtime Key Authorization Azure Native. Synapse. Inputs. Linked Integration Runtime Rbac Authorization 
- Linked integration runtime type from data factory
- Description string
- Integration runtime description.
- LinkedInfo LinkedIntegration | LinkedRuntime Key Authorization Integration Runtime Rbac Authorization 
- Linked integration runtime type from data factory
- description String
- Integration runtime description.
- linkedInfo LinkedIntegration | LinkedRuntime Key Authorization Integration Runtime Rbac Authorization 
- Linked integration runtime type from data factory
- description string
- Integration runtime description.
- linkedInfo LinkedIntegration | LinkedRuntime Key Authorization Integration Runtime Rbac Authorization 
- Linked integration runtime type from data factory
- description str
- Integration runtime description.
- linked_info LinkedIntegration | LinkedRuntime Key Authorization Integration Runtime Rbac Authorization 
- Linked integration runtime type from data factory
- description String
- Integration runtime description.
- linkedInfo Property Map | Property Map
- Linked integration runtime type from data factory
SelfHostedIntegrationRuntimeResponse, SelfHostedIntegrationRuntimeResponseArgs          
- Description string
- Integration runtime description.
- LinkedInfo Pulumi.Azure | Pulumi.Native. Synapse. Inputs. Linked Integration Runtime Key Authorization Response Azure Native. Synapse. Inputs. Linked Integration Runtime Rbac Authorization Response 
- Linked integration runtime type from data factory
- Description string
- Integration runtime description.
- LinkedInfo LinkedIntegration | LinkedRuntime Key Authorization Response Integration Runtime Rbac Authorization Response 
- Linked integration runtime type from data factory
- description String
- Integration runtime description.
- linkedInfo LinkedIntegration | LinkedRuntime Key Authorization Response Integration Runtime Rbac Authorization Response 
- Linked integration runtime type from data factory
- description string
- Integration runtime description.
- linkedInfo LinkedIntegration | LinkedRuntime Key Authorization Response Integration Runtime Rbac Authorization Response 
- Linked integration runtime type from data factory
- description str
- Integration runtime description.
- linked_info LinkedIntegration | LinkedRuntime Key Authorization Response Integration Runtime Rbac Authorization Response 
- Linked integration runtime type from data factory
- description String
- Integration runtime description.
- linkedInfo Property Map | Property Map
- Linked integration runtime type from data factory
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:synapse:IntegrationRuntime exampleIntegrationRuntime /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/workspaces/{workspaceName}/integrationRuntimes/{integrationRuntimeName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0