Skip to content
Merged
Show file tree
Hide file tree
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 @@ -4419,9 +4419,50 @@
"repoConfiguration": {
"$ref": "#/definitions/FactoryRepoConfiguration",
"description": "Git repo information of the factory."
},
"globalParameters": {
"$ref": "#/definitions/GlobalParameterDefinitionSpecification",
"description": "List of parameters for factory."
}
}
},
"GlobalParameterDefinitionSpecification": {
"description": "Definition of all parameters for an entity.",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/GlobalParameterSpecification"
}
},
"GlobalParameterSpecification": {
"description": "Definition of a single parameter for an entity.",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "Global Parameter type.",
"enum": [
"Object",
"String",
"Int",
"Float",
"Bool",
"Array"
],
"x-ms-enum": {
"name": "GlobalParameterType",
"modelAsString": true
}
},
"value": {
"type": "object",
"description": "Value of parameter."
}
},
"required": [
"type",
"value"
]
},
"PipelineResource": {
"description": "Pipeline resource type.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5907,7 +5907,7 @@
"properties": {
"waitTimeInSeconds": {
"description": "Duration in seconds.",
"type": "integer"
"type": "object"
}
},
"required": [
Expand Down