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 @@ -2609,6 +2609,7 @@
},
"PipelineResource": {
"description": "Pipeline resource type.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/SubResource"
Expand All @@ -2621,6 +2622,9 @@
"description": "Properties of the pipeline."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"properties"
]
Expand Down Expand Up @@ -2681,6 +2685,7 @@
},
"Factory": {
"description": "Factory resource type.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Resource"
Expand All @@ -2696,6 +2701,9 @@
"$ref": "#/definitions/FactoryProperties",
"description": "Properties of the factory."
}
},
"additionalProperties": {
"type": "object"
}
},
"FactoryUpdateParameters": {
Expand Down Expand Up @@ -3021,6 +3029,9 @@
"type": "string",
"readOnly": true
}
},
"additionalProperties": {
"type": "object"
}
},
"PipelineRunInvokedBy":{
Expand Down Expand Up @@ -3130,6 +3141,9 @@
"type": "object",
"readOnly": true
}
},
"additionalProperties": {
"type": "object"
}
},
"TriggerRunListResponse": {
Expand Down Expand Up @@ -3212,6 +3226,9 @@
},
"readOnly": true
}
},
"additionalProperties": {
"type": "object"
}
},
"OperationListResponse": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"definitions": {
"Dataset": {
"description": "The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents.",
"type": "object",
"discriminator": "type",
"properties": {
"type": {
Expand All @@ -31,6 +32,9 @@
"description": "Parameters for dataset."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type",
"linkedServiceName"
Expand Down Expand Up @@ -68,6 +72,9 @@
"description": "Deserializer. Type: string (or Expression with resultType string)."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type"
]
Expand Down Expand Up @@ -199,6 +206,9 @@
"description": "Type of dataset compression."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
"type": "string"
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type"
]
Expand Down Expand Up @@ -90,6 +93,9 @@
"description": "VNet properties for managed integration runtime.",
"$ref": "#/definitions/IntegrationRuntimeVNetProperties"
}
},
"additionalProperties": {
"type": "object"
}
},
"IntegrationRuntimeVNetProperties": {
Expand All @@ -104,6 +110,9 @@
"description": "The name of the subnet this integration runtime will join.",
"type": "string"
}
},
"additionalProperties": {
"type": "object"
}
},
"IntegrationRuntimeSsisProperties": {
Expand All @@ -114,6 +123,9 @@
"description": "Catalog information for managed dedicated integration runtime.",
"$ref": "#/definitions/IntegrationRuntimeSsisCatalogInfo"
}
},
"additionalProperties": {
"type": "object"
}
},
"IntegrationRuntimeSsisCatalogInfo": {
Expand Down Expand Up @@ -146,6 +158,9 @@
"modelAsString": true
}
}
},
"additionalProperties": {
"type": "object"
}
},
"SelfHostedIntegrationRuntime": {
Expand All @@ -172,6 +187,9 @@
"$ref": "#/definitions/IntegrationRuntimeState",
"readOnly": true
}
},
"additionalProperties": {
"type": "object"
}
},
"IntegrationRuntimeState": {
Expand Down Expand Up @@ -280,6 +298,9 @@
},
"readOnly": true
}
},
"additionalProperties": {
"type": "object"
}
},
"ManagedIntegrationRuntimeNode": {
Expand Down Expand Up @@ -312,6 +333,9 @@
"$ref": "#/definitions/ManagedIntegrationRuntimeError"
}
}
},
"additionalProperties": {
"type": "object"
}
},
"ManagedIntegrationRuntimeError": {
Expand Down Expand Up @@ -342,6 +366,9 @@
"type": "string",
"readOnly": true
}
},
"additionalProperties": {
"type": "object"
}
},
"SelfHostedIntegrationRuntimeStatus": {
Expand Down Expand Up @@ -577,6 +604,9 @@
"type": "integer",
"readOnly": true
}
},
"additionalProperties": {
"type": "object"
}
},
"IntegrationRuntimeRemoveNodeRequest": {
Expand All @@ -587,6 +617,9 @@
"description": "The name of the node to be removed.",
"type": "string"
}
},
"additionalProperties": {
"type": "object"
}
},
"IntegrationRuntimeConnectionInfo": {
Expand Down Expand Up @@ -623,6 +656,9 @@
"type": "boolean",
"readOnly": true
}
},
"additionalProperties": {
"type": "object"
}
},
"IntegrationRuntimeRegenerateKeyParameters": {
Expand Down Expand Up @@ -718,6 +754,9 @@
"type": "number",
"readOnly": true
}
},
"additionalProperties": {
"type": "object"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
"type": "string"
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"definitions": {
"Pipeline": {
"description": "A data factory pipeline.",
"type": "object",
"properties": {
"description": {
"description": "The description of the pipeline.",
Expand All @@ -34,6 +35,7 @@
"Activity": {
"discriminator": "type",
"description": "A pipeline activity.",
"type": "object",
"properties": {
"name": {
"description": "Activity name.",
Expand All @@ -55,13 +57,17 @@
}
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"name",
"type"
]
},
"ActivityDependency": {
"description": "Activity dependency information.",
"type": "object",
"properties": {
"activity": {
"description": "Activity name.",
Expand All @@ -85,6 +91,9 @@
}
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"activity",
"dependencyConditions"
Expand Down Expand Up @@ -121,6 +130,7 @@
},
"ActivityPolicy": {
"description": "Execution policy for an activity.",
"type": "object",
"properties": {
"timeout": {
"type": "object",
Expand All @@ -136,6 +146,9 @@
"minimum": 30,
"maximum": 86400
}
},
"additionalProperties": {
"type": "object"
}
},
"CopyActivity": {
Expand Down Expand Up @@ -234,6 +247,9 @@
"description": "Source retry wait. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type"
]
Expand Down Expand Up @@ -1074,6 +1090,9 @@
"description": "Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type"
]
Expand Down Expand Up @@ -1281,6 +1300,9 @@
"type": "object",
"description": "Specifies how to handle missing values in delimited text files when PolyBase retrieves data from the text file. Type: boolean (or Expression with resultType boolean)."
}
},
"additionalProperties": {
"type": "object"
}
},
"PolybaseSettingsRejectType": {
Expand Down Expand Up @@ -1312,6 +1334,9 @@
"description": "Specifies whether to use compression when copying data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean)."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"linkedServiceName"
]
Expand All @@ -1329,6 +1354,9 @@
"description": "The path for storing the redirect incompatible row data. Type: string (or Expression with resultType string)."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"linkedServiceName"
]
Expand Down Expand Up @@ -1471,6 +1499,9 @@
"description": "Copy translator type."
}
},
"additionalProperties": {
"type": "object"
},
"required": [
"type"
]
Expand Down
Loading