Skip to content

Commit 05f6f66

Browse files
kangtaoKang Tao
andauthored
[DataFactory] Add GlobalParameters and update waitTimeInSeconds in WaitActivity (#9362)
* Update data type of waitTimeInSeconds in WaitActivity * add global parameters Co-authored-by: Kang Tao <[email protected]>
1 parent d8fbe6a commit 05f6f66

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4419,9 +4419,50 @@
44194419
"repoConfiguration": {
44204420
"$ref": "#/definitions/FactoryRepoConfiguration",
44214421
"description": "Git repo information of the factory."
4422+
},
4423+
"globalParameters": {
4424+
"$ref": "#/definitions/GlobalParameterDefinitionSpecification",
4425+
"description": "List of parameters for factory."
44224426
}
44234427
}
44244428
},
4429+
"GlobalParameterDefinitionSpecification": {
4430+
"description": "Definition of all parameters for an entity.",
4431+
"type": "object",
4432+
"additionalProperties": {
4433+
"$ref": "#/definitions/GlobalParameterSpecification"
4434+
}
4435+
},
4436+
"GlobalParameterSpecification": {
4437+
"description": "Definition of a single parameter for an entity.",
4438+
"type": "object",
4439+
"properties": {
4440+
"type": {
4441+
"type": "string",
4442+
"description": "Global Parameter type.",
4443+
"enum": [
4444+
"Object",
4445+
"String",
4446+
"Int",
4447+
"Float",
4448+
"Bool",
4449+
"Array"
4450+
],
4451+
"x-ms-enum": {
4452+
"name": "GlobalParameterType",
4453+
"modelAsString": true
4454+
}
4455+
},
4456+
"value": {
4457+
"type": "object",
4458+
"description": "Value of parameter."
4459+
}
4460+
},
4461+
"required": [
4462+
"type",
4463+
"value"
4464+
]
4465+
},
44254466
"PipelineResource": {
44264467
"description": "Pipeline resource type.",
44274468
"type": "object",

specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/Pipeline.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5957,7 +5957,7 @@
59575957
"properties": {
59585958
"waitTimeInSeconds": {
59595959
"description": "Duration in seconds.",
5960-
"type": "integer"
5960+
"type": "object"
59615961
}
59625962
},
59635963
"required": [

0 commit comments

Comments
 (0)