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 @@ -107,13 +107,33 @@
"typeProperties": {
"description": "Azure Table Storage linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AzureStorageLinkedServiceTypeProperties"
"$ref": "#/definitions/AzureTableStorageLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"AzureTableStorageLinkedServiceTypeProperties": {
"description": "Azure Table Storage linked service properties.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AzureStorageLinkedServiceTypeProperties"
}
],
"properties": {
"serviceEndpoint": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property."
},
"credential": {
"$ref": "../datafactory.json#/definitions/CredentialReference",
"description": "The credential reference containing authentication information."
}
}
},
"AzureStorageLinkedServiceTypeProperties": {
"description": "Azure Storage linked service properties.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ suppressions:
azure-sdk-for-go:
- package: sdk/resourcemanager/datafactory/armdatafactory
breaking-changes:
- Enum `ScriptType` has been removed
- Field `Operator` of struct `ExpressionV2` has been removed
- Type of `AzureTableStorageLinkedService.TypeProperties` has been changed from `*AzureStorageLinkedServiceTypeProperties` to `*AzureTableStorageLinkedServiceTypeProperties`
azure-sdk-for-js:
- package: "@azure/arm-datafactory"
breaking-changes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,32 @@
"typeProperties": {
"description": "Azure Table Storage linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AzureStorageLinkedServiceTypeProperties"
"$ref": "#/definitions/AzureTableStorageLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"AzureTableStorageLinkedServiceTypeProperties": {
"description": "Azure Table Storage linked service properties.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/AzureStorageLinkedServiceTypeProperties"
}
],
"properties": {
"serviceEndpoint": {
"type": "object",
"description": "Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property."
},
"credential": {
"$ref": "../artifacts.json#/definitions/CredentialReference",
"description": "The credential reference containing authentication information."
}
}
},
"AzureStorageLinkedServiceTypeProperties": {
"description": "Azure Storage linked service properties.",
"type": "object",
Expand Down