Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@
"ssisProperties": {
"description": "SSIS properties for managed integration runtime.",
"$ref": "#/definitions/IntegrationRuntimeSsisProperties"
},
"customerVirtualNetwork": {
"description": "The customer virtual network properties for the Azure-SSIS integration runtime.",
"$ref": "#/definitions/IntegrationRuntimeCustomerVirtualNetwork"
}
}
},
Expand Down Expand Up @@ -255,6 +259,16 @@
"type": "object"
}
},
"IntegrationRuntimeCustomerVirtualNetwork": {
"description": "The customer virtual network properties for the Azure-SSIS integration runtime.",
"type": "object",
"properties": {
"subnetId": {
"description": "The ID of the Subnet that this Azure-SSIS integration runtime will join.",
"type": "string"
}
}
},
"IntegrationRuntimeSsisCatalogInfo": {
"description": "Catalog information for managed dedicated integration runtime.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1403,6 +1403,10 @@
"ssisProperties": {
"description": "SSIS properties for managed integration runtime.",
"$ref": "#/definitions/IntegrationRuntimeSsisProperties"
},
"customerVirtualNetwork": {
"description": "The customer virtual network properties for the Azure-SSIS integration runtime.",
"$ref": "#/definitions/IntegrationRuntimeCustomerVirtualNetwork"
}
}
},
Expand Down Expand Up @@ -1557,6 +1561,16 @@
"type": "object"
}
},
"IntegrationRuntimeCustomerVirtualNetwork": {
"description": "The customer virtual network properties for the Azure-SSIS integration runtime.",
"type": "object",
"properties": {
"subnetId": {
"description": "The ID of the Subnet that this Azure-SSIS integration runtime will join.",
"type": "string"
}
}
},
"SecretBase": {
"description": "The base definition of a secret type.",
"discriminator": "type",
Expand Down