Skip to content

Commit

Permalink
Add x-ms-identifiers for data factory (#17745)
Browse files Browse the repository at this point in the history
  • Loading branch information
yantang-msft authored Feb 11, 2022
1 parent 4c56940 commit 9d80759
Show file tree
Hide file tree
Showing 8 changed files with 310 additions and 94 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4652,7 +4652,10 @@
"description": "List of integration runtime status.",
"items": {
"$ref": "#/definitions/IntegrationRuntimeStatusResponse"
}
},
"x-ms-identifiers": [
"name"
]
},
"nextLink": {
"description": "The link to the next page of results, if any remaining results exist.",
Expand Down Expand Up @@ -4871,7 +4874,8 @@
"type": "array",
"items": {
"$ref": "#/definitions/CloudError"
}
},
"x-ms-identifiers": []
}
},
"required": [
Expand Down Expand Up @@ -5627,14 +5631,16 @@
"description": "List of filters.",
"items": {
"$ref": "#/definitions/RunQueryFilter"
}
},
"x-ms-identifiers": []
},
"orderBy": {
"type": "array",
"description": "List of OrderBy option.",
"items": {
"$ref": "#/definitions/RunQueryOrderBy"
}
},
"x-ms-identifiers": []
}
},
"required": [
Expand Down Expand Up @@ -5749,7 +5755,10 @@
"description": "List of pipeline runs.",
"items": {
"$ref": "#/definitions/PipelineRun"
}
},
"x-ms-identifiers": [
"runId"
]
},
"continuationToken": {
"description": "The continuation token for getting the next page of results, if any remaining results exist, null otherwise.",
Expand Down Expand Up @@ -5883,7 +5892,10 @@
"description": "List of activity runs.",
"items": {
"$ref": "#/definitions/ActivityRun"
}
},
"x-ms-identifiers": [
"pipelineRunId"
]
},
"continuationToken": {
"description": "The continuation token for getting the next page of results, if any remaining results exist, null otherwise.",
Expand Down Expand Up @@ -5979,7 +5991,10 @@
"description": "List of trigger runs.",
"items": {
"$ref": "#/definitions/TriggerRun"
}
},
"x-ms-identifiers": [
"triggerRunId"
]
},
"continuationToken": {
"description": "The continuation token for getting the next page of results, if any remaining results exist, null otherwise.",
Expand Down Expand Up @@ -6076,7 +6091,10 @@
"items": {
"$ref": "#/definitions/Operation"
},
"description": "List of Data Factory operations supported by the Data Factory resource provider."
"description": "List of Data Factory operations supported by the Data Factory resource provider.",
"x-ms-identifiers": [
"name"
]
},
"nextLink": {
"type": "string",
Expand Down Expand Up @@ -6144,14 +6162,20 @@
"type": "array",
"items": {
"$ref": "#/definitions/OperationLogSpecification"
}
},
"x-ms-identifiers": [
"name"
]
},
"metricSpecifications": {
"description": "Details about operations related to metrics.",
"type": "array",
"items": {
"$ref": "#/definitions/OperationMetricSpecification"
}
},
"x-ms-identifiers": [
"name"
]
}
}
},
Expand Down Expand Up @@ -6214,14 +6238,18 @@
"type": "array",
"items": {
"$ref": "#/definitions/OperationMetricAvailability"
}
},
"x-ms-identifiers": []
},
"dimensions": {
"description": "Defines the metric dimension.",
"type": "array",
"items": {
"$ref": "#/definitions/OperationMetricDimension"
}
},
"x-ms-identifiers": [
"name"
]
}
}
},
Expand Down Expand Up @@ -6301,7 +6329,10 @@
"description": "List of exposure control features.",
"items": {
"$ref": "#/definitions/ExposureControlRequest"
}
},
"x-ms-identifiers": [
"featureName"
]
}
}
},
Expand Down Expand Up @@ -6331,7 +6362,10 @@
"description": "List of exposure control feature values.",
"items": {
"$ref": "#/definitions/ExposureControlResponse"
}
},
"x-ms-identifiers": [
"featureName"
]
}
}
},
Expand Down Expand Up @@ -6454,21 +6488,30 @@
"type": "array",
"items": {
"$ref": "#/definitions/DataFlowDebugResource"
}
},
"x-ms-identifiers": [
"name"
]
},
"datasets": {
"type": "array",
"description": "List of datasets.",
"items": {
"$ref": "#/definitions/DatasetDebugResource"
}
},
"x-ms-identifiers": [
"name"
]
},
"linkedServices": {
"type": "array",
"description": "List of linked services.",
"items": {
"$ref": "#/definitions/LinkedServiceDebugResource"
}
},
"x-ms-identifiers": [
"name"
]
},
"staging": {
"description": "Staging info for debug session.",
Expand All @@ -6483,7 +6526,10 @@
"description": "Source setting for data flow debug.",
"items": {
"$ref": "#/definitions/DataFlowSourceSetting"
}
},
"x-ms-identifiers": [
"sourceName"
]
},
"parameters": {
"description": "Data flow parameters.",
Expand Down Expand Up @@ -6598,7 +6644,11 @@
"type": "array",
"items": {
"$ref": "#/definitions/DataFlowDebugSessionInfo"
}
},
"x-ms-identifiers": [
"dataFlowName",
"sessionId"
]
},
"nextLink": {
"description": "The link to the next page of results, if any remaining results exist.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"type": "array",
"items": {
"type": "object"
}
},
"x-ms-identifiers": []
}
},
"additionalProperties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"type": "array",
"items": {
"type": "object"
}
},
"x-ms-identifiers": []
},
"folder": {
"description": "The folder that this data flow is in. If not specified, Data flow will appear at the root level.",
Expand Down Expand Up @@ -94,21 +95,30 @@
"description": "List of sources in data flow.",
"items": {
"$ref": "#/definitions/DataFlowSource"
}
},
"x-ms-identifiers": [
"name"
]
},
"sinks": {
"type": "array",
"description": "List of sinks in data flow.",
"items": {
"$ref": "#/definitions/DataFlowSink"
}
},
"x-ms-identifiers": [
"name"
]
},
"transformations": {
"type": "array",
"description": "List of transformations in data flow.",
"items": {
"$ref": "#/definitions/Transformation"
}
},
"x-ms-identifiers": [
"name"
]
},
"script": {
"type": "string",
Expand Down Expand Up @@ -149,7 +159,10 @@
"description": "List of sources in Power Query.",
"items": {
"$ref": "#/definitions/PowerQuerySource"
}
},
"x-ms-identifiers": [
"name"
]
},
"script": {
"type": "string",
Expand All @@ -170,21 +183,30 @@
"description": "List of sources in Flowlet.",
"items": {
"$ref": "#/definitions/DataFlowSource"
}
},
"x-ms-identifiers": [
"name"
]
},
"sinks": {
"type": "array",
"description": "List of sinks in Flowlet.",
"items": {
"$ref": "#/definitions/DataFlowSink"
}
},
"x-ms-identifiers": [
"name"
]
},
"transformations": {
"type": "array",
"description": "List of transformations in Flowlet.",
"items": {
"$ref": "#/definitions/Transformation"
}
},
"x-ms-identifiers": [
"name"
]
},
"script": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
"type": "array",
"items": {
"type": "object"
}
},
"x-ms-identifiers": []
},
"folder": {
"description": "The folder that this Dataset is in. If not specified, Dataset will appear at the root level.",
Expand Down
Loading

0 comments on commit 9d80759

Please sign in to comment.