azure-native.synapse.IntegrationRuntime
Explore with Pulumi AI
Integration runtime resource type. API Version: 2021-03-01.
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"
"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.SelfHostedIntegrationRuntime{
Description: "A selfhosted integration runtime",
Type: "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(Map.ofEntries(
Map.entry("description", "A selfhosted integration runtime"),
Map.entry("type", "SelfHosted")
))
.resourceGroupName("exampleResourceGroup")
.workspaceName("exampleWorkspace")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
integration_runtime = azure_native.synapse.IntegrationRuntime("integrationRuntime",
integration_runtime_name="exampleIntegrationRuntime",
properties=azure_native.synapse.SelfHostedIntegrationRuntimeArgs(
description="A selfhosted integration runtime",
type="SelfHosted",
),
resource_group_name="exampleResourceGroup",
workspace_name="exampleWorkspace")
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",
});
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 =
{
{ "type", "Managed" },
{ "computeProperties",
{
{ "dataFlowProperties",
{
{ "computeType", "string" },
{ "coreCount", 0 },
{ "timeToLive", 0 },
} },
{ "location", "string" },
{ "maxParallelExecutionsPerNode", 0 },
{ "nodeSize", "string" },
{ "numberOfNodes", 0 },
{ "vNetProperties",
{
{ "publicIPs", new[]
{
"string",
} },
{ "subnet", "string" },
{ "subnetId", "string" },
{ "vNetId", "string" },
} },
} },
{ "description", "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", new[]
{
{
{ "password",
{
{ "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: map[string]interface{}{
"type": "Managed",
"computeProperties": map[string]interface{}{
"dataFlowProperties": map[string]interface{}{
"computeType": "string",
"coreCount": 0,
"timeToLive": 0,
},
"location": "string",
"maxParallelExecutionsPerNode": 0,
"nodeSize": "string",
"numberOfNodes": 0,
"vNetProperties": map[string]interface{}{
"publicIPs": []string{
"string",
},
"subnet": "string",
"subnetId": "string",
"vNetId": "string",
},
},
"description": "string",
"ssisProperties": map[string]interface{}{
"catalogInfo": map[string]interface{}{
"catalogAdminPassword": map[string]interface{}{
"type": "SecureString",
"value": "string",
},
"catalogAdminUserName": "string",
"catalogPricingTier": "string",
"catalogServerEndpoint": "string",
},
"customSetupScriptProperties": map[string]interface{}{
"blobContainerUri": "string",
"sasToken": map[string]interface{}{
"type": "SecureString",
"value": "string",
},
},
"dataProxyProperties": map[string]interface{}{
"connectVia": map[string]interface{}{
"referenceName": "string",
"type": "string",
},
"path": "string",
"stagingLinkedService": map[string]interface{}{
"referenceName": "string",
"type": "string",
},
},
"edition": "string",
"expressCustomSetupProperties": []map[string]interface{}{
map[string]interface{}{
"password": map[string]interface{}{
"type": "SecureString",
"value": "string",
},
"targetName": "any",
"type": "CmdkeySetup",
"userName": "any",
},
},
"licenseType": "string",
},
},
ResourceGroupName: "string",
WorkspaceName: "string",
IntegrationRuntimeName: "string",
})
var azure_nativeIntegrationRuntimeResource = new IntegrationRuntime("azure-nativeIntegrationRuntimeResource", IntegrationRuntimeArgs.builder()
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceGroupName("string")
.workspaceName("string")
.integrationRuntimeName("string")
.build());
azure_native_integration_runtime_resource = 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,
},
},
description: 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,
},
},
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",
},
},
description: "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
description: 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
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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - The name of the workspace.
- Integration
Runtime stringName - Integration runtime name
- Properties
Managed
Integration | SelfRuntime Args Hosted Integration Runtime Args - Integration runtime properties.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - The name of the workspace.
- Integration
Runtime stringName - Integration runtime name
- properties
Managed
Integration | SelfRuntime Hosted Integration Runtime - Integration runtime properties.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - The name of the workspace.
- integration
Runtime StringName - Integration runtime name
- properties
Managed
Integration | SelfRuntime Hosted Integration Runtime - Integration runtime properties.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- workspace
Name string - The name of the workspace.
- integration
Runtime stringName - Integration runtime name
- properties
Managed
Integration | 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.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - The name of the workspace.
- integration
Runtime 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.
- Target
Name object - The server name of data source access.
- User
Name object - The user name of data source access.
- Password
Secure
String - The password of data source access.
- Target
Name interface{} - The server name of data source access.
- User
Name interface{} - The user name of data source access.
- password
Secure
String - The password of data source access.
- target
Name Object - The server name of data source access.
- user
Name Object - The user name of data source access.
- password
Secure
String - 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
Secure
String - 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.
- target
Name Any - The server name of data source access.
- user
Name 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.
- Target
Name object - The server name of data source access.
- User
Name object - The user name of data source access.
- Password
Secure
String Response - The password of data source access.
- Target
Name interface{} - The server name of data source access.
- User
Name interface{} - The user name of data source access.
- password
Secure
String Response - The password of data source access.
- target
Name Object - The server name of data source access.
- user
Name Object - The user name of data source access.
- password
Secure
String 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
Secure
String 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.
- target
Name Any - The server name of data source access.
- user
Name Any - The user name of data source access.
ComponentSetup, ComponentSetupArgs
- Component
Name string - The name of the 3rd party component.
- License
Key Pulumi.Azure Native. Synapse. Inputs. Secure String - The license key to activate the component.
- Component
Name string - The name of the 3rd party component.
- License
Key SecureString - The license key to activate the component.
- component
Name String - The name of the 3rd party component.
- license
Key SecureString - The license key to activate the component.
- component
Name string - The name of the 3rd party component.
- license
Key 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.
- component
Name String - The name of the 3rd party component.
- license
Key Property Map - The license key to activate the component.
ComponentSetupResponse, ComponentSetupResponseArgs
- Component
Name string - The name of the 3rd party component.
- License
Key Pulumi.Azure Native. Synapse. Inputs. Secure String Response - The license key to activate the component.
- Component
Name string - The name of the 3rd party component.
- License
Key SecureString Response - The license key to activate the component.
- component
Name String - The name of the 3rd party component.
- license
Key SecureString Response - The license key to activate the component.
- component
Name string - The name of the 3rd party component.
- license
Key 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.
- component
Name String - The name of the 3rd party component.
- license
Key Property Map - The license key to activate the component.
DataFlowComputeType, DataFlowComputeTypeArgs
- General
- General
- Memory
Optimized - MemoryOptimized
- Compute
Optimized - ComputeOptimized
- Data
Flow Compute Type General - General
- Data
Flow Compute Type Memory Optimized - MemoryOptimized
- Data
Flow Compute Type Compute Optimized - ComputeOptimized
- General
- General
- Memory
Optimized - MemoryOptimized
- Compute
Optimized - ComputeOptimized
- General
- General
- Memory
Optimized - MemoryOptimized
- Compute
Optimized - ComputeOptimized
- GENERAL
- General
- MEMORY_OPTIMIZED
- MemoryOptimized
- COMPUTE_OPTIMIZED
- ComputeOptimized
- "General"
- General
- "Memory
Optimized" - MemoryOptimized
- "Compute
Optimized" - ComputeOptimized
EntityReference, EntityReferenceArgs
- Reference
Name string - The name of this referenced entity.
- Type
string | Pulumi.
Azure Native. Synapse. Integration Runtime Entity Reference Type - The type of this referenced entity.
- Reference
Name string - The name of this referenced entity.
- Type
string | Integration
Runtime Entity Reference Type - The type of this referenced entity.
- reference
Name String - The name of this referenced entity.
- type
String | Integration
Runtime Entity Reference Type - The type of this referenced entity.
- reference
Name string - The name of this referenced entity.
- type
string | Integration
Runtime Entity Reference Type - The type of this referenced entity.
- reference_
name str - The name of this referenced entity.
- type
str | Integration
Runtime Entity Reference Type - The type of this referenced entity.
- reference
Name String - The name of this referenced entity.
- type
String | "Integration
Runtime Reference" | "Linked Service Reference" - The type of this referenced entity.
EntityReferenceResponse, EntityReferenceResponseArgs
- Reference
Name string - The name of this referenced entity.
- Type string
- The type of this referenced entity.
- Reference
Name string - The name of this referenced entity.
- Type string
- The type of this referenced entity.
- reference
Name String - The name of this referenced entity.
- type String
- The type of this referenced entity.
- reference
Name 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.
- reference
Name String - The name of this referenced entity.
- type String
- The type of this referenced entity.
EnvironmentVariableSetup, EnvironmentVariableSetupArgs
- Variable
Name string - The name of the environment variable.
- Variable
Value string - The value of the environment variable.
- Variable
Name string - The name of the environment variable.
- Variable
Value string - The value of the environment variable.
- variable
Name String - The name of the environment variable.
- variable
Value String - The value of the environment variable.
- variable
Name string - The name of the environment variable.
- variable
Value 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.
- variable
Name String - The name of the environment variable.
- variable
Value String - The value of the environment variable.
EnvironmentVariableSetupResponse, EnvironmentVariableSetupResponseArgs
- Variable
Name string - The name of the environment variable.
- Variable
Value string - The value of the environment variable.
- Variable
Name string - The name of the environment variable.
- Variable
Value string - The value of the environment variable.
- variable
Name String - The name of the environment variable.
- variable
Value String - The value of the environment variable.
- variable
Name string - The name of the environment variable.
- variable
Value 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.
- variable
Name String - The name of the environment variable.
- variable
Value String - The value of the environment variable.
IntegrationRuntimeComputeProperties, IntegrationRuntimeComputePropertiesArgs
- Data
Flow 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
- Max
Parallel intExecutions Per Node - Maximum parallel executions count per node for managed integration runtime.
- Node
Size string - The node size requirement to managed integration runtime.
- Number
Of intNodes - The required number of nodes for managed integration runtime.
- VNet
Properties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime VNet Properties - VNet properties for managed integration runtime.
- Data
Flow 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
- Max
Parallel intExecutions Per Node - Maximum parallel executions count per node for managed integration runtime.
- Node
Size string - The node size requirement to managed integration runtime.
- Number
Of intNodes - The required number of nodes for managed integration runtime.
- VNet
Properties IntegrationRuntime VNet Properties - VNet properties for managed integration runtime.
- data
Flow 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
- max
Parallel IntegerExecutions Per Node - Maximum parallel executions count per node for managed integration runtime.
- node
Size String - The node size requirement to managed integration runtime.
- number
Of IntegerNodes - The required number of nodes for managed integration runtime.
- v
Net 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 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
- max
Parallel numberExecutions Per Node - Maximum parallel executions count per node for managed integration runtime.
- node
Size string - The node size requirement to managed integration runtime.
- number
Of numberNodes - The required number of nodes for managed integration runtime.
- v
Net 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.
- data
Flow 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
- max
Parallel NumberExecutions Per Node - Maximum parallel executions count per node for managed integration runtime.
- node
Size String - The node size requirement to managed integration runtime.
- number
Of NumberNodes - The required number of nodes for managed integration runtime.
- v
Net Property MapProperties - VNet properties for managed integration runtime.
IntegrationRuntimeComputePropertiesResponse, IntegrationRuntimeComputePropertiesResponseArgs
- Data
Flow 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
- Max
Parallel intExecutions Per Node - Maximum parallel executions count per node for managed integration runtime.
- Node
Size string - The node size requirement to managed integration runtime.
- Number
Of intNodes - The required number of nodes for managed integration runtime.
- VNet
Properties Pulumi.Azure Native. Synapse. Inputs. Integration 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 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
- Max
Parallel intExecutions Per Node - Maximum parallel executions count per node for managed integration runtime.
- Node
Size string - The node size requirement to managed integration runtime.
- Number
Of intNodes - The required number of nodes for managed integration runtime.
- VNet
Properties IntegrationRuntime 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 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
- max
Parallel IntegerExecutions Per Node - Maximum parallel executions count per node for managed integration runtime.
- node
Size String - The node size requirement to managed integration runtime.
- number
Of IntegerNodes - The required number of nodes for managed integration runtime.
- v
Net 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 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
- max
Parallel numberExecutions Per Node - Maximum parallel executions count per node for managed integration runtime.
- node
Size string - The node size requirement to managed integration runtime.
- number
Of numberNodes - The required number of nodes for managed integration runtime.
- v
Net 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.
- data
Flow 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
- max
Parallel NumberExecutions Per Node - Maximum parallel executions count per node for managed integration runtime.
- node
Size String - The node size requirement to managed integration runtime.
- number
Of NumberNodes - The required number of nodes for managed integration runtime.
- v
Net Property MapProperties - VNet properties for managed integration runtime.
IntegrationRuntimeCustomSetupScriptProperties, IntegrationRuntimeCustomSetupScriptPropertiesArgs
- Blob
Container stringUri - The URI of the Azure blob container that contains the custom setup script.
- Sas
Token Pulumi.Azure Native. Synapse. Inputs. Secure String - The SAS token of the Azure blob container.
- Blob
Container stringUri - The URI of the Azure blob container that contains the custom setup script.
- Sas
Token SecureString - The SAS token of the Azure blob container.
- blob
Container StringUri - The URI of the Azure blob container that contains the custom setup script.
- sas
Token SecureString - The SAS token of the Azure blob container.
- blob
Container stringUri - The URI of the Azure blob container that contains the custom setup script.
- sas
Token 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.
- blob
Container StringUri - The URI of the Azure blob container that contains the custom setup script.
- sas
Token Property Map - The SAS token of the Azure blob container.
IntegrationRuntimeCustomSetupScriptPropertiesResponse, IntegrationRuntimeCustomSetupScriptPropertiesResponseArgs
- Blob
Container stringUri - The URI of the Azure blob container that contains the custom setup script.
- Sas
Token Pulumi.Azure Native. Synapse. Inputs. Secure String Response - The SAS token of the Azure blob container.
- Blob
Container stringUri - 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.
- blob
Container StringUri - 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.
- blob
Container stringUri - 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.
- 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.
- blob
Container StringUri - The URI of the Azure blob container that contains the custom setup script.
- sas
Token Property Map - The SAS token of the Azure blob container.
IntegrationRuntimeDataFlowProperties, IntegrationRuntimeDataFlowPropertiesArgs
- Compute
Type string | Pulumi.Azure Native. Synapse. Data Flow 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.
- Compute
Type string | 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.
- compute
Type String | DataFlow Compute Type - Compute type of the cluster which will execute data flow job.
- core
Count Integer - Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- time
To IntegerLive - Time to live (in minutes) setting of the cluster which will execute data flow job.
- compute
Type string | DataFlow Compute Type - Compute type of the cluster which will execute data flow job.
- core
Count number - Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- time
To 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.
- compute
Type String | "General" | "MemoryOptimized" | "Compute Optimized" - Compute type of the cluster which will execute data flow job.
- core
Count Number - Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- time
To NumberLive - Time to live (in minutes) setting of the cluster which will execute data flow job.
IntegrationRuntimeDataFlowPropertiesResponse, IntegrationRuntimeDataFlowPropertiesResponseArgs
- Compute
Type string - 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.
- Compute
Type string - 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.
- compute
Type String - Compute type of the cluster which will execute data flow job.
- core
Count Integer - Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- time
To IntegerLive - Time to live (in minutes) setting of the cluster which will execute data flow job.
- compute
Type string - Compute type of the cluster which will execute data flow job.
- core
Count number - Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- time
To 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.
- compute
Type String - Compute type of the cluster which will execute data flow job.
- core
Count Number - Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- time
To NumberLive - Time to live (in minutes) setting of the cluster which will execute data flow job.
IntegrationRuntimeDataProxyProperties, IntegrationRuntimeDataProxyPropertiesArgs
- Connect
Via 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.
- Staging
Linked Pulumi.Service Azure Native. Synapse. Inputs. Entity Reference - The staging linked service reference.
- Connect
Via EntityReference - The self-hosted integration runtime reference.
- Path string
- The path to contain the staged data in the Blob storage.
- Staging
Linked EntityService Reference - The staging linked service reference.
- connect
Via EntityReference - The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- staging
Linked EntityService Reference - The staging linked service reference.
- connect
Via EntityReference - The self-hosted integration runtime reference.
- path string
- The path to contain the staged data in the Blob storage.
- staging
Linked 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.
- connect
Via Property Map - The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- staging
Linked Property MapService - The staging linked service reference.
IntegrationRuntimeDataProxyPropertiesResponse, IntegrationRuntimeDataProxyPropertiesResponseArgs
- Connect
Via 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.
- Staging
Linked Pulumi.Service Azure Native. Synapse. Inputs. Entity Reference Response - The staging linked service reference.
- Connect
Via EntityReference Response - The self-hosted integration runtime reference.
- Path string
- The path to contain the staged data in the Blob storage.
- Staging
Linked EntityService Reference Response - The staging linked service reference.
- connect
Via EntityReference Response - The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- staging
Linked EntityService Reference Response - The staging linked service reference.
- connect
Via EntityReference Response - The self-hosted integration runtime reference.
- path string
- The path to contain the staged data in the Blob storage.
- staging
Linked 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.
- connect
Via Property Map - The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- staging
Linked Property MapService - The staging linked service reference.
IntegrationRuntimeEdition, IntegrationRuntimeEditionArgs
- Standard
- Standard
- Enterprise
- Enterprise
- Integration
Runtime Edition Standard - Standard
- Integration
Runtime Edition Enterprise - Enterprise
- Standard
- Standard
- Enterprise
- Enterprise
- Standard
- Standard
- Enterprise
- Enterprise
- STANDARD
- Standard
- ENTERPRISE
- Enterprise
- "Standard"
- Standard
- "Enterprise"
- Enterprise
IntegrationRuntimeEntityReferenceType, IntegrationRuntimeEntityReferenceTypeArgs
- Integration
Runtime Reference - IntegrationRuntimeReference
- Linked
Service Reference - LinkedServiceReference
- Integration
Runtime Entity Reference Type Integration Runtime Reference - IntegrationRuntimeReference
- Integration
Runtime Entity Reference Type Linked Service Reference - LinkedServiceReference
- Integration
Runtime Reference - IntegrationRuntimeReference
- Linked
Service Reference - LinkedServiceReference
- Integration
Runtime Reference - IntegrationRuntimeReference
- Linked
Service Reference - LinkedServiceReference
- INTEGRATION_RUNTIME_REFERENCE
- IntegrationRuntimeReference
- LINKED_SERVICE_REFERENCE
- LinkedServiceReference
- "Integration
Runtime Reference" - IntegrationRuntimeReference
- "Linked
Service Reference" - LinkedServiceReference
IntegrationRuntimeLicenseType, IntegrationRuntimeLicenseTypeArgs
- Base
Price - BasePrice
- License
Included - LicenseIncluded
- Integration
Runtime License Type Base Price - BasePrice
- Integration
Runtime License Type License Included - LicenseIncluded
- Base
Price - BasePrice
- License
Included - LicenseIncluded
- Base
Price - BasePrice
- License
Included - LicenseIncluded
- BASE_PRICE
- BasePrice
- LICENSE_INCLUDED
- LicenseIncluded
- "Base
Price" - BasePrice
- "License
Included" - LicenseIncluded
IntegrationRuntimeSsisCatalogInfo, IntegrationRuntimeSsisCatalogInfoArgs
- Catalog
Admin Pulumi.Password Azure Native. Synapse. Inputs. Secure String - The password of the administrator user account of the catalog database.
- Catalog
Admin stringUser Name - The administrator user name of catalog database.
- Catalog
Pricing 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/
- Catalog
Server stringEndpoint - The catalog database server URL.
- Catalog
Admin SecurePassword String - The password of the administrator user account of the catalog database.
- Catalog
Admin stringUser Name - The administrator user name of catalog database.
- Catalog
Pricing 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/
- Catalog
Server stringEndpoint - The catalog database server URL.
- catalog
Admin SecurePassword String - The password of the administrator user account of the catalog database.
- catalog
Admin StringUser Name - The administrator user name of catalog database.
- catalog
Pricing 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/
- catalog
Server StringEndpoint - The catalog database server URL.
- catalog
Admin SecurePassword String - The password of the administrator user account of the catalog database.
- catalog
Admin stringUser Name - The administrator user name of catalog database.
- catalog
Pricing 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/
- catalog
Server 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.
- catalog
Admin Property MapPassword - The password of the administrator user account of the catalog database.
- catalog
Admin StringUser Name - The administrator user name of catalog database.
- catalog
Pricing 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/
- catalog
Server StringEndpoint - The catalog database server URL.
IntegrationRuntimeSsisCatalogInfoResponse, IntegrationRuntimeSsisCatalogInfoResponseArgs
- Catalog
Admin Pulumi.Password Azure Native. Synapse. Inputs. Secure String Response - The password of the administrator user account of the catalog database.
- Catalog
Admin stringUser Name - The administrator user name of catalog database.
- Catalog
Pricing 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/
- Catalog
Server stringEndpoint - The catalog database server URL.
- Catalog
Admin SecurePassword String Response - The password of the administrator user account of the catalog database.
- Catalog
Admin stringUser Name - The administrator user name of catalog database.
- Catalog
Pricing 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/
- Catalog
Server stringEndpoint - The catalog database server URL.
- catalog
Admin SecurePassword String Response - The password of the administrator user account of the catalog database.
- catalog
Admin StringUser Name - The administrator user name of catalog database.
- catalog
Pricing 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/
- catalog
Server StringEndpoint - The catalog database server URL.
- catalog
Admin SecurePassword String Response - The password of the administrator user account of the catalog database.
- catalog
Admin stringUser Name - The administrator user name of catalog database.
- catalog
Pricing 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/
- catalog
Server 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.
- catalog
Admin Property MapPassword - The password of the administrator user account of the catalog database.
- catalog
Admin StringUser Name - The administrator user name of catalog database.
- catalog
Pricing 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/
- catalog
Server StringEndpoint - The catalog database server URL.
IntegrationRuntimeSsisCatalogPricingTier, IntegrationRuntimeSsisCatalogPricingTierArgs
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Premium
RS - PremiumRS
- Integration
Runtime Ssis Catalog Pricing Tier Basic - Basic
- Integration
Runtime Ssis Catalog Pricing Tier Standard - Standard
- Integration
Runtime Ssis Catalog Pricing Tier Premium - Premium
- Integration
Runtime Ssis Catalog Pricing Tier Premium RS - PremiumRS
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Premium
RS - PremiumRS
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Premium
RS - PremiumRS
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- PREMIUM_RS
- PremiumRS
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
- "Premium
RS" - PremiumRS
IntegrationRuntimeSsisProperties, IntegrationRuntimeSsisPropertiesArgs
- Catalog
Info Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Ssis Catalog Info - Catalog information for managed dedicated integration runtime.
- Custom
Setup Pulumi.Script Properties Azure Native. Synapse. Inputs. Integration Runtime Custom Setup Script Properties - Custom setup script properties for a managed dedicated integration runtime.
- Data
Proxy 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
- Express
Custom List<object>Setup Properties - Custom setup without script properties for a SSIS integration runtime.
- License
Type string | Pulumi.Azure Native. Synapse. Integration Runtime 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
string | Integration
Runtime Edition - The edition for the SSIS Integration Runtime
- Express
Custom []interface{}Setup Properties - Custom setup without script properties for a SSIS integration runtime.
- License
Type 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
String | Integration
Runtime Edition - The edition for the SSIS Integration Runtime
- express
Custom List<Object>Setup Properties - Custom setup without script properties for a SSIS integration runtime.
- license
Type 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
string | Integration
Runtime Edition - The edition for the SSIS Integration Runtime
- express
Custom (CmdkeySetup Properties Setup | Component Setup | Environment Variable Setup)[] - Custom setup without script properties for a SSIS integration runtime.
- license
Type 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 | Integration
Runtime 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.
- catalog
Info Property Map - Catalog information for managed dedicated integration runtime.
- custom
Setup Property MapScript Properties - Custom setup script properties for a managed dedicated integration runtime.
- data
Proxy Property MapProperties - Data proxy properties for a managed dedicated integration runtime.
- edition String | "Standard" | "Enterprise"
- The edition for the SSIS Integration Runtime
- express
Custom List<Property Map | Property Map | Property Map>Setup Properties - Custom setup without script properties for a SSIS integration runtime.
- license
Type String | "BasePrice" | "License Included" - License type for bringing your own license scenario.
IntegrationRuntimeSsisPropertiesResponse, IntegrationRuntimeSsisPropertiesResponseArgs
- Catalog
Info Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Ssis Catalog Info Response - Catalog information for managed dedicated integration runtime.
- Custom
Setup Pulumi.Script Properties Azure Native. Synapse. Inputs. Integration Runtime Custom Setup Script Properties Response - Custom setup script properties for a managed dedicated integration runtime.
- Data
Proxy 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
- Express
Custom List<object>Setup Properties - Custom setup without script properties for a SSIS integration runtime.
- License
Type 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 string
- The edition for the SSIS Integration Runtime
- Express
Custom []interface{}Setup Properties - Custom setup without script properties for a SSIS integration runtime.
- License
Type 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 String
- The edition for the SSIS Integration Runtime
- express
Custom List<Object>Setup Properties - Custom setup without script properties for a SSIS integration runtime.
- license
Type 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 string
- The edition for the SSIS Integration Runtime
- express
Custom (CmdkeySetup Properties Setup Response | Component Setup Response | Environment Variable Setup Response)[] - Custom setup without script properties for a SSIS integration runtime.
- license
Type 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.
- catalog
Info Property Map - Catalog information for managed dedicated integration runtime.
- custom
Setup Property MapScript Properties - Custom setup script properties for a managed dedicated integration runtime.
- data
Proxy Property MapProperties - Data proxy properties for a managed dedicated integration runtime.
- edition String
- The edition for the SSIS Integration Runtime
- express
Custom List<Property Map | Property Map | Property Map>Setup Properties - Custom setup without script properties for a SSIS integration runtime.
- license
Type String - License type for bringing your own license scenario.
IntegrationRuntimeVNetProperties, IntegrationRuntimeVNetPropertiesArgs
- Public
IPs 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.
- Subnet
Id string - The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNet
Id string - The ID of the VNet that this integration runtime will join.
- Public
IPs []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.
- Subnet
Id string - The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNet
Id string - The ID of the VNet that this integration runtime will join.
- public
IPs 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.
- subnet
Id String - The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- v
Net StringId - The ID of the VNet that this integration runtime will join.
- public
IPs 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.
- subnet
Id string - The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- v
Net 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.
- public
IPs 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.
- subnet
Id String - The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- v
Net StringId - The ID of the VNet that this integration runtime will join.
IntegrationRuntimeVNetPropertiesResponse, IntegrationRuntimeVNetPropertiesResponseArgs
- Public
IPs 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.
- Subnet
Id string - The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNet
Id string - The ID of the VNet that this integration runtime will join.
- Public
IPs []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.
- Subnet
Id string - The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNet
Id string - The ID of the VNet that this integration runtime will join.
- public
IPs 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.
- subnet
Id String - The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- v
Net StringId - The ID of the VNet that this integration runtime will join.
- public
IPs 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.
- subnet
Id string - The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- v
Net 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.
- public
IPs 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.
- subnet
Id String - The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- v
Net 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
Secure
String - The key used for authorization.
- key
Secure
String - The key used for authorization.
- key
Secure
String - The key used for authorization.
- key
Secure
String - 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
Secure
String Response - The key used for authorization.
- key
Secure
String Response - The key used for authorization.
- key
Secure
String Response - The key used for authorization.
- key
Secure
String Response - The key used for authorization.
- key Property Map
- The key used for authorization.
LinkedIntegrationRuntimeRbacAuthorization, LinkedIntegrationRuntimeRbacAuthorizationArgs
- Resource
Id string - The resource identifier of the integration runtime to be shared.
- Resource
Id string - The resource identifier of the integration runtime to be shared.
- resource
Id String - The resource identifier of the integration runtime to be shared.
- resource
Id string - The resource identifier of the integration runtime to be shared.
- resource_
id str - The resource identifier of the integration runtime to be shared.
- resource
Id String - The resource identifier of the integration runtime to be shared.
LinkedIntegrationRuntimeRbacAuthorizationResponse, LinkedIntegrationRuntimeRbacAuthorizationResponseArgs
- Resource
Id string - The resource identifier of the integration runtime to be shared.
- Resource
Id string - The resource identifier of the integration runtime to be shared.
- resource
Id String - The resource identifier of the integration runtime to be shared.
- resource
Id string - The resource identifier of the integration runtime to be shared.
- resource_
id str - The resource identifier of the integration runtime to be shared.
- resource
Id String - The resource identifier of the integration runtime to be shared.
ManagedIntegrationRuntime, ManagedIntegrationRuntimeArgs
- Compute
Properties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Compute Properties - The compute resource for managed integration runtime.
- Description string
- Integration runtime description.
- Ssis
Properties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Ssis Properties - SSIS properties for managed integration runtime.
- Compute
Properties IntegrationRuntime Compute Properties - The compute resource for managed integration runtime.
- Description string
- Integration runtime description.
- Ssis
Properties IntegrationRuntime Ssis Properties - SSIS properties for managed integration runtime.
- compute
Properties IntegrationRuntime Compute Properties - The compute resource for managed integration runtime.
- description String
- Integration runtime description.
- ssis
Properties IntegrationRuntime Ssis Properties - SSIS properties for managed integration runtime.
- compute
Properties IntegrationRuntime Compute Properties - The compute resource for managed integration runtime.
- description string
- Integration runtime description.
- ssis
Properties IntegrationRuntime Ssis Properties - SSIS properties for managed integration runtime.
- compute_
properties IntegrationRuntime Compute Properties - The compute resource for managed integration runtime.
- description str
- Integration runtime description.
- ssis_
properties IntegrationRuntime Ssis Properties - SSIS properties for managed integration runtime.
- compute
Properties Property Map - The compute resource for managed integration runtime.
- description String
- Integration runtime description.
- ssis
Properties Property Map - SSIS properties for managed integration runtime.
ManagedIntegrationRuntimeResponse, ManagedIntegrationRuntimeResponseArgs
- State string
- Integration runtime state, only valid for managed dedicated integration runtime.
- Compute
Properties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Compute Properties Response - The compute resource for managed integration runtime.
- Description string
- Integration runtime description.
- Ssis
Properties Pulumi.Azure Native. Synapse. Inputs. Integration Runtime Ssis Properties Response - SSIS properties for managed integration runtime.
- State string
- Integration runtime state, only valid for managed dedicated integration runtime.
- Compute
Properties IntegrationRuntime Compute Properties Response - The compute resource for managed integration runtime.
- Description string
- Integration runtime description.
- Ssis
Properties IntegrationRuntime Ssis Properties Response - SSIS properties for managed integration runtime.
- state String
- Integration runtime state, only valid for managed dedicated integration runtime.
- compute
Properties IntegrationRuntime Compute Properties Response - The compute resource for managed integration runtime.
- description String
- Integration runtime description.
- ssis
Properties IntegrationRuntime Ssis Properties Response - SSIS properties for managed integration runtime.
- state string
- Integration runtime state, only valid for managed dedicated integration runtime.
- compute
Properties IntegrationRuntime Compute Properties Response - The compute resource for managed integration runtime.
- description string
- Integration runtime description.
- ssis
Properties IntegrationRuntime Ssis Properties Response - SSIS properties for managed integration runtime.
- 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.
- description str
- Integration runtime description.
- ssis_
properties IntegrationRuntime Ssis Properties Response - SSIS properties for managed integration runtime.
- state String
- Integration runtime state, only valid for managed dedicated integration runtime.
- compute
Properties Property Map - The compute resource for managed integration runtime.
- description String
- Integration runtime description.
- ssis
Properties 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.
- Linked
Info 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.
- Linked
Info LinkedIntegration | LinkedRuntime Key Authorization Integration Runtime Rbac Authorization - Linked integration runtime type from data factory
- description String
- 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.
- linked
Info 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.
- linked
Info Property Map | Property Map - Linked integration runtime type from data factory
SelfHostedIntegrationRuntimeResponse, SelfHostedIntegrationRuntimeResponseArgs
- Description string
- Integration runtime description.
- Linked
Info 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.
- Linked
Info LinkedIntegration | LinkedRuntime Key Authorization Response Integration Runtime Rbac Authorization Response - Linked integration runtime type from data factory
- description String
- 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.
- linked
Info 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.
- linked
Info 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/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.Synapse/workspaces/exampleWorkspaceName/integrationruntimes/exampleIntegrationRuntime
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0