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 @@ -146,6 +146,22 @@
"name": "IntegrationRuntimeLicenseType",
"modelAsString": true
}
},
"customSetupScriptProperties": {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: For consistency, you can name the model with PascalCase and name the properties with camelCased letters.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is consistent, properties within definition are start with low case, so using low case here.
And definition are start with upper case, refer to link 208

"description": "Custom setup script properties for a managed dedicated integration runtime.",
"$ref": "#/definitions/IntegrationRuntimeCustomSetupScriptProperties"
},
"edition": {
"description": "The edition for the SSIS Integration Runtime",
"type": "string",
"enum": [
"Standard",
"Enterprise"
],
"x-ms-enum": {
"name": "IntegrationRuntimeEdition",
"modelAsString": true
}
}
},
"additionalProperties": {
Expand Down Expand Up @@ -189,6 +205,20 @@
"type": "object"
}
},
"IntegrationRuntimeCustomSetupScriptProperties": {
"description": "Custom setup script properties for a managed dedicated integration runtime.",
"type": "object",
"properties": {
"blobContainerUri": {
"description": "The URI of the Azure blob container that contains the custom setup script.",
"type": "string"
},
"sasToken": {
"description": "The SAS token of the Azure blob container.",
"$ref": "../datafactory.json#/definitions/SecureString"
}
}
},
"SelfHostedIntegrationRuntime": {
"x-ms-discriminator-value": "SelfHosted",
"description": "Self-hosted integration runtime.",
Expand Down