Skip to content

Commit

Permalink
[Synapse]Sync IR Features From DataFactory (#31774)
Browse files Browse the repository at this point in the history
* [Synapse]Sync IR Features From DataFactory

* fix

* fix

---------

Co-authored-by: Frey-Wang <[email protected]>
  • Loading branch information
Jingshu918 and Frey-Wang authored Jan 8, 2025
1 parent 898ea5c commit 04b59b5
Showing 1 changed file with 77 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1640,6 +1640,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 @@ -1683,6 +1691,50 @@
"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
}
}
},
"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
},
"numberOfPipelineNodes": {
"description": "Number of the pipeline nodes, which should be greater than 0 and less than 11.",
"type": "integer",
"format": "int32",
"minimum": 1,
"maximum": 10
},
"numberOfExternalNodes": {
"description": "Number of the the external nodes, which should be greater than 0 and less than 11.",
"type": "integer",
"format": "int32",
"minimum": 1,
"maximum": 10
}
}
},
"IntegrationRuntimeVNetProperties": {
"description": "VNet properties for managed integration runtime.",
"type": "object",
Expand Down Expand Up @@ -2042,6 +2094,18 @@
"linkedInfo": {
"$ref": "#/definitions/LinkedIntegrationRuntimeType",
"description": "Linked integration runtime type from data factory"
},
"selfContainedInteractiveAuthoringEnabled": {
"type": "boolean",
"description": "An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.",
"enum": [
true,
false
],
"x-ms-enum": {
"name": "SelfContainedInteractiveAuthoringState",
"modelAsString": false
}
}
}
},
Expand Down Expand Up @@ -2470,6 +2534,19 @@
"type": "integer",
"format": "int32",
"readOnly": true
},
"selfContainedInteractiveAuthoringEnabled": {
"type": "boolean",
"readOnly": true,
"description": "An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.",
"enum": [
true,
false
],
"x-ms-enum": {
"name": "SelfContainedInteractiveAuthoringState",
"modelAsString": false
}
}
}
},
Expand Down

0 comments on commit 04b59b5

Please sign in to comment.