Skip to content
Closed
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
111 changes: 110 additions & 1 deletion schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@
},
{
"$ref": "#/definitions/factories_privateEndpointConnections_childResource"
},
{
"$ref": "#/definitions/factories_globalParameters_childResource"
}
]
}
Expand Down Expand Up @@ -212,6 +215,59 @@
],
"description": "Microsoft.DataFactory/factories/datasets"
},
"factories_globalParameters": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2018-06-01"
]
},
"name": {
"oneOf": [
{
"type": "string",
"pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$",
"minLength": 1,
"maxLength": 260
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The global parameter name."
},
"properties": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/GlobalParameterSpecification"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Global parameters associated with the Azure Data Factory"
},
"type": {
"type": "string",
"enum": [
"Microsoft.DataFactory/factories/globalParameters"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.DataFactory/factories/globalParameters"
},
"factories_integrationRuntimes": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -12358,6 +12414,59 @@
],
"description": "Microsoft.DataFactory/factories/datasets"
},
"factories_globalParameters_childResource": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2018-06-01"
]
},
"name": {
"oneOf": [
{
"type": "string",
"pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$",
"minLength": 1,
"maxLength": 260
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The global parameter name."
},
"properties": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/GlobalParameterSpecification"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Global parameters associated with the Azure Data Factory"
},
"type": {
"type": "string",
"enum": [
"globalParameters"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.DataFactory/factories/globalParameters"
},
"factories_integrationRuntimes_childResource": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -12711,7 +12820,7 @@
},
"hostName": {
"type": "string",
"description": "GitHub Enterprise host name. For example: https://github.mydomain.com"
"description": "GitHub Enterprise host name. For example: `https://github.mydomain.com`"
},
"type": {
"type": "string",
Expand Down
3 changes: 3 additions & 0 deletions schemas/common/autogeneratedResources.json
Original file line number Diff line number Diff line change
Expand Up @@ -5854,6 +5854,9 @@
{
"$ref": "https://schema.management.azure.com/schemas/2018-06-01/Microsoft.DataFactory.json#/resourceDefinitions/factories_datasets"
},
{
"$ref": "https://schema.management.azure.com/schemas/2018-06-01/Microsoft.DataFactory.json#/resourceDefinitions/factories_globalParameters"
},
{
"$ref": "https://schema.management.azure.com/schemas/2018-06-01/Microsoft.DataFactory.json#/resourceDefinitions/factories_integrationRuntimes"
},
Expand Down