Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Hub Generated] Publish private branch 'datafactory/liudan7/AddGen2SasAuthSwagger' #22565

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 @@ -126,6 +126,14 @@
"vNetProperties": {
"description": "VNet properties for managed integration runtime.",
"$ref": "#/definitions/IntegrationRuntimeVNetProperties"
},
"copyComputeScaleProperties": {
"description": "CopyComputeScale properties for managed integration runtime.",
"$ref": "#/definitions/CopyComputeScaleProperties"
},
"pipelineExternalComputeScaleProperties": {
"description": "PipelineExternalComputeScale properties for managed integration runtime.",
"$ref": "#/definitions/PipelineExternalComputeScaleProperties"
}
},
"additionalProperties": {
Expand Down Expand Up @@ -167,6 +175,42 @@
"type": "object"
}
},
"CopyComputeScaleProperties": {
"description": "CopyComputeScale properties for managed integration runtime.",
"type": "object",
"properties": {
"dataIntegrationUnit": {
"description": "DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.",
"type": "integer",
"format": "int32",
"minimum": 4
},
"timeToLive": {
"description": "Time to live (in minutes) setting of integration runtime which will execute copy activity.",
"type": "integer",
"format": "int32",
"minimum": 5
}
},
"additionalProperties": {
"type": "object"
}
},
"PipelineExternalComputeScaleProperties": {
"description": "PipelineExternalComputeScale properties for managed integration runtime.",
"type": "object",
"properties": {
"timeToLive": {
"description": "Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.",
"type": "integer",
"format": "int32",
"minimum": 5
}
},
"additionalProperties": {
"type": "object"
}
},
"IntegrationRuntimeVNetProperties": {
"description": "VNet properties for managed integration runtime.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,25 @@
"credential": {
"$ref": "../datafactory.json#/definitions/CredentialReference",
"description": "The credential reference containing authentication information."
},
"authenticationType": {
"x-ms-enum": {
"name": "AzureStorageAuthenticationType",
"modelAsString": true
},
"enum": [
"Anonymous",
"AccountKey",
"SasUri",
"ServicePrincipal",
"Msi"
],
"type": "string",
"description": "The type used for authentication. Type: string."
},
"containerUri": {
"type": "object",
"description": "Container uri of the Azure Blob Storage resource only support for anonymous access. Type: string (or Expression with resultType string)."
}
}
},
Expand Down Expand Up @@ -2598,11 +2617,16 @@
"servicePrincipalCredential": {
"description": "The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"sasUri": {
"description": "SAS URI of the Azure Data Lake Storage Gen2 service. Type: string, SecureString or AzureKeyVaultSecretReference.",
"type": "object"
},
"sasToken": {
"$ref": "../datafactory.json#/definitions/SecretBase",
"description": "The Azure key vault secret reference of sasToken in sas uri."
}
},
"required": [
"url"
]
}
},
"Office365LinkedService": {
"x-ms-discriminator-value": "Office365",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7931,6 +7931,10 @@
"type": "object",
"description": "The main file used for the job, which will override the 'file' of the spark job definition you provide. Type: string (or Expression with resultType string)."
},
"scanFolder": {
"type": "object",
"description": "Scanning subfolders from the root folder of the main definition file, these files will be added as reference files. The folders named 'jars', 'pyFiles', 'files' or 'archives' will be scanned, and the folders name are case sensitive. Type: boolean (or Expression with resultType boolean)."
},
"className": {
"type": "object",
"description": "The fully-qualified identifier or the main class that is in the main definition file, which will override the 'className' of the spark job definition you provide. Type: string (or Expression with resultType string)."
Expand Down Expand Up @@ -7979,9 +7983,33 @@
"description": "Number of core and memory to be used for driver allocated in the specified Spark pool for the job, which will be used for overriding 'driverCores' and 'driverMemory' of the spark job definition you provide. Type: string (or Expression with resultType string)."
},
"numExecutors": {
"description": "Number of executors to launch for this job, which will override the 'numExecutors' of the spark job definition you provide.",
"type": "integer",
"format": "int32"
"description": "Number of executors to launch for this job, which will override the 'numExecutors' of the spark job definition you provide. Type: integer (or Expression with resultType integer).",
"type": "object"
},
"configurationType": {
"enum": [
"Default",
"Customized",
"Artifact"
],
"type": "string",
"description": "The type of the spark config.",
"x-ms-enum": {
"name": "ConfigurationType",
"modelAsString": true
}
},
"targetSparkConfiguration": {
"description": "The spark configuration of the spark job.",
"$ref": "#/definitions/SparkConfigurationParametrizationReference"
},
"sparkConfig": {
"description": "Spark configuration property.",
"type": "object",
"additionalProperties": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
}
}
},
"required": [
Expand Down Expand Up @@ -8012,6 +8040,31 @@
"type",
"referenceName"
]
},
"SparkConfigurationParametrizationReference": {
"description": "Spark configuration reference.",
"type": "object",
"properties": {
"type": {
"description": "Spark configuration reference type.",
"type": "string",
"enum": [
"SparkConfigurationReference"
],
"x-ms-enum": {
"name": "SparkConfigurationReferenceType",
"modelAsString": true
}
},
"referenceName": {
"description": "Reference spark configuration name. Type: string (or Expression with resultType string).",
"type": "object"
}
},
"required": [
"type",
"referenceName"
]
}
}
}