Skip to content
Closed
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
125 changes: 125 additions & 0 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -2847,6 +2847,24 @@
"type": "string",
"description": "Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string)."
},
"authenticationType": {
"oneOf": [
{
"type": "string",
"enum": [
"Anonymous",
"AccountKey",
"SasUri",
"ServicePrincipal",
"Msi"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The type used for authentication. Type: string."
},
"azureCloudType": {
"type": "object",
"properties": {},
Expand All @@ -2857,6 +2875,11 @@
"properties": {},
"description": "The connection string. It is mutually exclusive with sasUri, serviceEndpoint property. Type: string, SecureString or AzureKeyVaultSecretReference."
},
"containerUri": {
"type": "object",
"properties": {},
"description": "Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string)."
},
"credential": {
"oneOf": [
{
Expand Down Expand Up @@ -7641,6 +7664,52 @@
],
"description": "Copy activity properties."
},
"CopyComputeScaleProperties": {
"type": "object",
"properties": {
"additionalProperties": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {}
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Unmatched properties from the message are deserialized this collection"
},
"dataIntegrationUnit": {
"oneOf": [
{
"type": "integer",
"minimum": 4
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256."
},
"timeToLive": {
"oneOf": [
{
"type": "integer",
"minimum": 5
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Time to live (in minutes) setting of integration runtime which will execute copy activity."
}
},
"description": "CopyComputeScale properties for managed integration runtime."
},
"CopySink": {
"type": "object",
"oneOf": [
Expand Down Expand Up @@ -17236,6 +17305,17 @@
],
"description": "Unmatched properties from the message are deserialized this collection"
},
"copyComputeScaleProperties": {
"oneOf": [
{
"$ref": "#/definitions/CopyComputeScaleProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "CopyComputeScale properties for managed integration runtime."
},
"dataFlowProperties": {
"oneOf": [
{
Expand Down Expand Up @@ -17279,6 +17359,17 @@
],
"description": "The required number of nodes for managed integration runtime."
},
"pipelineExternalComputeScaleProperties": {
"oneOf": [
{
"$ref": "#/definitions/PipelineExternalComputeScaleProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "PipelineExternalComputeScale properties for managed integration runtime."
},
"vNetProperties": {
"oneOf": [
{
Expand Down Expand Up @@ -22364,6 +22455,40 @@
},
"description": "Pipeline ElapsedTime Metric Policy."
},
"PipelineExternalComputeScaleProperties": {
"type": "object",
"properties": {
"additionalProperties": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {}
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Unmatched properties from the message are deserialized this collection"
},
"timeToLive": {
"oneOf": [
{
"type": "integer",
"minimum": 5
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity."
}
},
"description": "PipelineExternalComputeScale properties for managed integration runtime."
},
"PipelineFolder": {
"type": "object",
"properties": {
Expand Down