Skip to content

Commit

Permalink
CodeGen from PR 26480 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 2c37e900164aa457e440b99bc41d81270455fcc3 into b13bd252f5a0ae3e870dcd5fb4dc5c1389a7a734
  • Loading branch information
SDKAuto committed Nov 6, 2023
1 parent 793854b commit 2abbd40
Showing 1 changed file with 86 additions and 4 deletions.
90 changes: 86 additions & 4 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -14025,6 +14025,9 @@
"FormatReadSettings": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/ParquetReadSettings"
},
{
"$ref": "#/definitions/DelimitedTextReadSettings"
},
Expand Down Expand Up @@ -14436,7 +14439,7 @@
"connectionProperties": {
"type": "object",
"properties": {},
"description": "Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object."
"description": "(Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object."
},
"developerToken": {
"oneOf": [
Expand All @@ -14458,10 +14461,31 @@
"type": "string",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string."
},
"googleAdsApiVersion": {
"type": "object",
"properties": {},
"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/release-notes. Type: string (or Expression with resultType string)."
},
"keyFilePath": {
"type": "object",
"properties": {},
"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)."
"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)."
},
"loginCustomerID": {
"type": "object",
"properties": {},
"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)."
},
"privateKey": {
"oneOf": [
{
"$ref": "#/definitions/SecretBase"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The base definition of a secret type."
},
"refreshToken": {
"oneOf": [
Expand All @@ -14474,15 +14498,20 @@
],
"description": "The base definition of a secret type."
},
"supportLegacyDataTypes": {
"type": "object",
"properties": {},
"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)."
},
"trustedCertPath": {
"type": "object",
"properties": {},
"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)."
"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)."
},
"useSystemTrustStore": {
"type": "object",
"properties": {},
"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)."
"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)."
}
},
"description": "Google AdWords service linked service properties."
Expand Down Expand Up @@ -22507,6 +22536,48 @@
],
"description": "The data stored in Parquet format."
},
"ParquetReadSettings": {
"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"
},
"compressionProperties": {
"oneOf": [
{
"$ref": "#/definitions/CompressionReadSettings"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Compression read settings."
},
"type": {
"type": "string",
"enum": [
"ParquetReadSettings"
]
}
},
"required": [
"type"
],
"description": "Parquet read settings."
},
"ParquetSink": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -22552,6 +22623,17 @@
"properties": {},
"description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."
},
"formatSettings": {
"oneOf": [
{
"$ref": "#/definitions/ParquetReadSettings"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Parquet read settings."
},
"storeSettings": {
"oneOf": [
{
Expand Down

0 comments on commit 2abbd40

Please sign in to comment.