Skip to content

Commit 309d18b

Browse files
author
SDKAuto
committed
CodeGen from PR 26480 in Azure/azure-rest-api-specs
Merge 6b69c855bee21666c7e69e56af4442b6b9ffce21 into 98d4950539bb131648779ab173ec4e4c8850c2d0
1 parent e4c9465 commit 309d18b

File tree

1 file changed

+86
-4
lines changed

1 file changed

+86
-4
lines changed

schemas/2018-06-01/Microsoft.DataFactory.json

Lines changed: 86 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14025,6 +14025,9 @@
1402514025
"FormatReadSettings": {
1402614026
"type": "object",
1402714027
"oneOf": [
14028+
{
14029+
"$ref": "#/definitions/ParquetReadSettings"
14030+
},
1402814031
{
1402914032
"$ref": "#/definitions/DelimitedTextReadSettings"
1403014033
},
@@ -14436,7 +14439,7 @@
1443614439
"connectionProperties": {
1443714440
"type": "object",
1443814441
"properties": {},
14439-
"description": "Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object."
14442+
"description": "(Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object."
1444014443
},
1444114444
"developerToken": {
1444214445
"oneOf": [
@@ -14458,10 +14461,31 @@
1445814461
"type": "string",
1445914462
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string."
1446014463
},
14464+
"googleAdsApiVersion": {
14465+
"type": "object",
14466+
"properties": {},
14467+
"description": "The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/sunset-dates#timetable. Type: string (or Expression with resultType string)."
14468+
},
1446114469
"keyFilePath": {
1446214470
"type": "object",
1446314471
"properties": {},
14464-
"description": "The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string)."
14472+
"description": "(Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string)."
14473+
},
14474+
"loginCustomerID": {
14475+
"type": "object",
14476+
"properties": {},
14477+
"description": "The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string)."
14478+
},
14479+
"privateKey": {
14480+
"oneOf": [
14481+
{
14482+
"$ref": "#/definitions/SecretBase"
14483+
},
14484+
{
14485+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
14486+
}
14487+
],
14488+
"description": "The base definition of a secret type."
1446514489
},
1446614490
"refreshToken": {
1446714491
"oneOf": [
@@ -14474,15 +14498,20 @@
1447414498
],
1447514499
"description": "The base definition of a secret type."
1447614500
},
14501+
"supportLegacyDataTypes": {
14502+
"type": "object",
14503+
"properties": {},
14504+
"description": "Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean)."
14505+
},
1447714506
"trustedCertPath": {
1447814507
"type": "object",
1447914508
"properties": {},
14480-
"description": "The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string)."
14509+
"description": "(Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string)."
1448114510
},
1448214511
"useSystemTrustStore": {
1448314512
"type": "object",
1448414513
"properties": {},
14485-
"description": "Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean)."
14514+
"description": "(Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean)."
1448614515
}
1448714516
},
1448814517
"description": "Google AdWords service linked service properties."
@@ -22507,6 +22536,48 @@
2250722536
],
2250822537
"description": "The data stored in Parquet format."
2250922538
},
22539+
"ParquetReadSettings": {
22540+
"type": "object",
22541+
"properties": {
22542+
"additionalProperties": {
22543+
"oneOf": [
22544+
{
22545+
"type": "object",
22546+
"additionalProperties": {
22547+
"type": "object",
22548+
"properties": {}
22549+
},
22550+
"properties": {}
22551+
},
22552+
{
22553+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
22554+
}
22555+
],
22556+
"description": "Unmatched properties from the message are deserialized this collection"
22557+
},
22558+
"compressionProperties": {
22559+
"oneOf": [
22560+
{
22561+
"$ref": "#/definitions/CompressionReadSettings"
22562+
},
22563+
{
22564+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
22565+
}
22566+
],
22567+
"description": "Compression read settings."
22568+
},
22569+
"type": {
22570+
"type": "string",
22571+
"enum": [
22572+
"ParquetReadSettings"
22573+
]
22574+
}
22575+
},
22576+
"required": [
22577+
"type"
22578+
],
22579+
"description": "Parquet read settings."
22580+
},
2251022581
"ParquetSink": {
2251122582
"type": "object",
2251222583
"properties": {
@@ -22552,6 +22623,17 @@
2255222623
"properties": {},
2255322624
"description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."
2255422625
},
22626+
"formatSettings": {
22627+
"oneOf": [
22628+
{
22629+
"$ref": "#/definitions/ParquetReadSettings"
22630+
},
22631+
{
22632+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
22633+
}
22634+
],
22635+
"description": "Parquet read settings."
22636+
},
2255522637
"storeSettings": {
2255622638
"oneOf": [
2255722639
{

0 commit comments

Comments
 (0)