Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,10 @@
"description": "Avro dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AvroDatasetTypeProperties"
},
"schema": {
"type": "object",
"description": "Columns that define the physical type schema of the dataset. Type: object"
}
}
},
Expand Down Expand Up @@ -844,6 +848,10 @@
"description": "Json dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/JsonDatasetTypeProperties"
},
"schema": {
"type": "object",
"description": "Columns that define the physical type schema of the dataset. Type: object"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -478,12 +478,14 @@
"type": "object",
"properties": {
"targetName": {
"description": "The server name of data source access.",
"type": "object"
"description": "The server name of data source access. Type: string.",
"type": "object",
"x-ms-format": "dfe-string"
},
"userName": {
"description": "The user name of data source access.",
"type": "object"
"description": "The user name of data source access. Type: string.",
"type": "object",
"x-ms-format": "dfe-string"
},
"password": {
"description": "The password of data source access.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2203,8 +2203,8 @@
},
"authHeaders": {
"type": "object",
"x-ms-format": "dfe-object",
"description": "The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object)."
"x-ms-format": "dfe-key-value-pairs",
"description": "The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type)."
},
"tenant": {
"type": "object",
Expand Down Expand Up @@ -4003,8 +4003,8 @@
},
"authHeaders": {
"type": "object",
"x-ms-format": "dfe-object",
"description": "The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object)."
"x-ms-format": "dfe-key-value-pairs",
"description": "The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type)."
},
"embeddedCertData": {
"type": "object",
Expand Down Expand Up @@ -6369,8 +6369,8 @@
"properties": {
"clusterSize": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Number of worker/data nodes in the cluster. Suggestion value: 4. Type: string (or Expression with resultType string)."
"x-ms-format": "dfe-int",
"description": "Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int)."
},
"timeToLive": {
"type": "object",
Expand Down Expand Up @@ -7322,8 +7322,9 @@
"type": "object",
"properties": {
"functionAppUrl": {
"description": "The endpoint of the Azure Function App. URL will be in the format https://<accountName>.azurewebsites.net.",
"type": "object"
"description": "The endpoint of the Azure Function App. URL will be in the format https://<accountName>.azurewebsites.net. Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
},
"functionKey": {
"description": "Function or Host key for Azure Function App.",
Expand All @@ -7338,8 +7339,9 @@
"description": "The credential reference containing authentication information."
},
"resourceId": {
"description": "Allowed token audiences for azure function.",
"type": "object"
"description": "Allowed token audiences for azure function. Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
},
"authentication": {
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2640,8 +2640,8 @@
},
"additionalHeaders": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The additional HTTP headers in the request to the RESTful API. Type: string (or Expression with resultType string)."
"x-ms-format": "dfe-key-value-pairs",
"description": "The additional HTTP headers in the request to the RESTful API. Type: key value pairs (value should be string type)."
},
"httpRequestTimeout": {
"type": "object",
Expand All @@ -2654,7 +2654,8 @@
},
"httpCompressionType": {
"type": "object",
"description": "Http Compression Type to Send data in compressed format with Optimal Compression Level, Default is None. And The Only Supported option is Gzip. "
"x-ms-format": "dfe-string",
"description": "Http Compression Type to Send data in compressed format with Optimal Compression Level, Default is None. And The Only Supported option is Gzip. Type: string (or Expression with resultType string)."
}
}
},
Expand Down Expand Up @@ -2698,7 +2699,8 @@
},
"additionalColumns": {
"type": "object",
"description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."
"x-ms-format": "dfe-key-value-pairs",
"description": "Specifies the additional columns to be added to source data. Type: key value pairs (value should be string type)."
}
}
},
Expand Down Expand Up @@ -2731,8 +2733,9 @@
"type": "object"
},
"partitionOption": {
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\".",
"type": "object"
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\". Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
},
"partitionSettings": {
"description": "The settings that will be leveraged for Sql source partitioning.",
Expand Down Expand Up @@ -2773,8 +2776,9 @@
"type": "object"
},
"partitionOption": {
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\".",
"type": "object"
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\". Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
},
"partitionSettings": {
"description": "The settings that will be leveraged for Sql source partitioning.",
Expand Down Expand Up @@ -2857,8 +2861,9 @@
"type": "object"
},
"partitionOption": {
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\".",
"type": "object"
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\". Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
},
"partitionSettings": {
"description": "The settings that will be leveraged for Sql source partitioning.",
Expand Down Expand Up @@ -2899,8 +2904,9 @@
"type": "object"
},
"partitionOption": {
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\".",
"type": "object"
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\". Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
},
"partitionSettings": {
"description": "The settings that will be leveraged for Sql source partitioning.",
Expand Down Expand Up @@ -2937,8 +2943,9 @@
"type": "object"
},
"partitionOption": {
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\".",
"type": "object"
"description": "The partition mechanism that will be used for Sql read in parallel. Possible values include: \"None\", \"PhysicalPartitionsOfTable\", \"DynamicRange\". Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
},
"partitionSettings": {
"description": "The settings that will be leveraged for Sql source partitioning.",
Expand Down Expand Up @@ -4754,7 +4761,8 @@
},
"writeBehavior": {
"type": "object",
"description": "Write behavior when copying data into sql. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)"
"x-ms-format": "dfe-string",
"description": "Write behavior when copying data into sql. Type: string (or Expression with resultType string)."
},
"upsertSettings": {
"description": "SQL upsert settings.",
Expand Down Expand Up @@ -4808,7 +4816,8 @@
},
"writeBehavior": {
"type": "object",
"description": "Write behavior when copying data into sql server. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)"
"x-ms-format": "dfe-string",
"description": "Write behavior when copying data into sql server. Type: string (or Expression with resultType string)."
},
"upsertSettings": {
"description": "SQL upsert settings.",
Expand Down Expand Up @@ -4916,7 +4925,8 @@
},
"writeBehavior": {
"type": "object",
"description": "White behavior when copying data into azure SQL MI. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)"
"x-ms-format": "dfe-string",
"description": "White behavior when copying data into azure SQL MI. Type: string (or Expression with resultType string)"
},
"upsertSettings": {
"description": "SQL upsert settings.",
Expand Down Expand Up @@ -5966,6 +5976,7 @@
},
"arguments": {
"type": "object",
"x-ms-format": "dfe-list-string",
"description": "User specified arguments to HDInsightActivity. Type: array (or Expression with resultType array)."
},
"getDebugInfo": {
Expand Down Expand Up @@ -6996,8 +7007,7 @@
},
"headers": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: string (or Expression with resultType string)."
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: dictionary (or Expression with resultType dictionary)."
},
"body": {
"type": "object",
Expand Down Expand Up @@ -7421,8 +7431,7 @@
"type": "object"
},
"dataPathAssignments": {
"x-ms-format": "dfe-key-value-pairs",
"description": "Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).",
"description": "Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).",
"type": "object"
},
"mlParentRunId": {
Expand Down Expand Up @@ -8026,8 +8035,7 @@
},
"headers": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: string (or Expression with resultType string)."
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: dictionary (or Expression with resultType dictionary)."
},
"body": {
"type": "object",
Expand Down Expand Up @@ -8092,8 +8100,7 @@
},
"headers": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: string (or Expression with resultType string)."
"description": "Represents the headers that will be sent to the request. For example, to set the language and type on a request: \"headers\" : { \"Accept-Language\": \"en-us\", \"Content-Type\": \"application/json\" }. Type: dictionary (or Expression with resultType dictionary)."
},
"body": {
"type": "object",
Expand Down Expand Up @@ -8862,6 +8869,7 @@
},
"referenceName": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Reference spark job name. Expression with resultType string."
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,10 @@
"description": "Avro dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AvroDatasetTypeProperties"
},
"schema": {
"type": "object",
"description": "Columns that define the physical type schema of the dataset. Type: object"
}
}
},
Expand Down Expand Up @@ -756,6 +760,10 @@
"description": "Json dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/JsonDatasetTypeProperties"
},
"schema": {
"type": "object",
"description": "Columns that define the physical type schema of the dataset. Type: object"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5857,7 +5857,8 @@
"properties": {
"clusterSize": {
"type": "object",
"description": "Number of worker/data nodes in the cluster. Suggestion value: 4. Type: string (or Expression with resultType string)."
"x-ms-format": "dfe-int",
"description": "Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int)."
},
"timeToLive": {
"type": "object",
Expand Down Expand Up @@ -6718,8 +6719,9 @@
"type": "object",
"properties": {
"functionAppUrl": {
"description": "The endpoint of the Azure Function App. URL will be in the format https://<accountName>.azurewebsites.net.",
"type": "object"
"description": "The endpoint of the Azure Function App. URL will be in the format https://<accountName>.azurewebsites.net. Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
},
"functionKey": {
"description": "Function or Host key for Azure Function App.",
Expand All @@ -6734,8 +6736,9 @@
"description": "The credential reference containing authentication information."
},
"resourceId": {
"description": "Allowed token audiences for azure function.",
"type": "object"
"description": "Allowed token audiences for azure function. Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
},
"authentication": {
"type": "object",
Expand Down
Loading