Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,14 @@
"vNetProperties": {
"description": "VNet properties for managed integration runtime.",
"$ref": "#/definitions/IntegrationRuntimeVNetProperties"
},
"copyComputeScaleProperties": {
"description": "CopyComputeScale properties for managed integration runtime.",
"$ref": "#/definitions/CopyComputeScaleProperties"
},
"pipelineExternalComputeScaleProperties": {
"description": "PipelineExternalComputeScale properties for managed integration runtime.",
"$ref": "#/definitions/PipelineExternalComputeScaleProperties"
}
},
"additionalProperties": {
Expand Down Expand Up @@ -167,6 +175,42 @@
"type": "object"
}
},
"CopyComputeScaleProperties": {
"description": "CopyComputeScale properties for managed integration runtime.",
"type": "object",
"properties": {
"dataIntegrationUnit": {
"description": "DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.",
"type": "integer",
"format": "int32",
"minimum": 4
},
"timeToLive": {
"description": "Time to live (in minutes) setting of integration runtime which will execute copy activity.",
"type": "integer",
"format": "int32",
"minimum": 5
}
},
"additionalProperties": {
"type": "object"
}
},
"PipelineExternalComputeScaleProperties": {
"description": "PipelineExternalComputeScale properties for managed integration runtime.",
"type": "object",
"properties": {
"timeToLive": {
"description": "Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.",
"type": "integer",
"format": "int32",
"minimum": 5
}
},
"additionalProperties": {
"type": "object"
}
},
"IntegrationRuntimeVNetProperties": {
"description": "VNet properties for managed integration runtime.",
"type": "object",
Expand Down