Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support Express Custom Setup #6969

Merged
Show file tree
Hide file tree
Changes from 4 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
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ Cloudamize
cloudapp
cloudsimple
clustermonitoring
Cmdkey
cmdlet
CMMI
CNAME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,13 @@
"name": "IntegrationRuntimeEdition",
"modelAsString": true
}
},
"expressCustomSetupProperties": {
"description": "Custom setup without script properties for a SSIS integration runtime.",
"type": "array",
"items": {
"$ref": "#/definitions/CustomSetupBase"
}
}
},
"additionalProperties": {
Expand Down Expand Up @@ -240,6 +247,136 @@
}
}
},
"CustomSetupBase": {
"description": "The base definition of the custom setup.",
"type": "object",
"discriminator": "type",
"properties": {
"type": {
"description": "The type of custom setup.",
"type": "string"
}
},
"required": [
"type"
]
},
"CmdkeySetup": {
liubing-microsoft marked this conversation as resolved.
Show resolved Hide resolved
"description": "The custom setup of running cmdkey commands.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CustomSetupBase"
}
],
"properties": {
"typeProperties": {
"description": "Cmdkey command custom setup type properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/CmdkeySetupTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"CmdkeySetupTypeProperties": {
"description": "Cmdkey command custom setup type properties.",
"type": "object",
"properties": {
"targetName": {
"description": "The server name of data source access.",
"type": "object"
},
"userName": {
"description": "The user name of data source access.",
"type": "object"
},
"password": {
"description": "The password of data source access.",
"$ref": "../datafactory.json#/definitions/SecretBase"
}
},
"required": [
"targetName",
"userName",
"password"
]
},
"EnvironmentVariableSetup": {
"description": "The custom setup of setting environment variable.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CustomSetupBase"
}
],
"properties": {
"typeProperties": {
"description": "Add environment variable type properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/EnvironmentVariableSetupTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"EnvironmentVariableSetupTypeProperties": {
"description": "Environment variable custom setup type properties.",
"type": "object",
"properties": {
"variableName": {
"description": "The name of the environment variable.",
"type": "string"
},
"variableValue": {
"description": "The value of the environment variable.",
"type": "string"
}
},
"required": [
"variableName",
"variableValue"
]
},
"ComponentSetup": {
"description": "The custom setup of installing 3rd party components.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CustomSetupBase"
}
],
"properties": {
"typeProperties": {
"description": "Install 3rd party component type properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/LicensedComponentSetupTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"LicensedComponentSetupTypeProperties": {
"description": "Installation of licensed component setup type properties.",
"type": "object",
"properties": {
"componentName": {
"description": "The name of the 3rd party component.",
"type": "string"
},
"licenseKey": {
"description": "The license key to activate the component.",
"$ref": "../datafactory.json#/definitions/SecretBase"
}
},
"required": [
"componentName",
"licenseKey"
]
},
"EntityReference": {
"description": "The entity reference.",
"type": "object",
Expand Down