Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
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 @@ -26,6 +26,8 @@ class AmazonS3Dataset extends models['Dataset'] {
* Expression with resultType string).
* @member {object} [prefix] The prefix filter for the S3 object name. Type:
* string (or Expression with resultType string).
* @member {object} [wildcardPath] The path of the S3 object with wildcard
* supported. Type: string (or Expression with resultType string).
* @member {object} [version] The version for the S3 object. Type: string (or
* Expression with resultType string).
* @member {object} [format] The format of files.
Expand Down Expand Up @@ -150,6 +152,13 @@ class AmazonS3Dataset extends models['Dataset'] {
name: 'Object'
}
},
wildcardPath: {
required: false,
serializedName: 'typeProperties.wildcardPath',
type: {
name: 'Object'
}
},
version: {
required: false,
serializedName: 'typeProperties.version',
Expand Down
10 changes: 10 additions & 0 deletions lib/services/datafactoryManagement/lib/models/azureBlobDataset.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ class AzureBlobDataset extends models['Dataset'] {
* (or Expression with resultType string).
* @member {object} [fileName] The name of the Azure Blob. Type: string (or
* Expression with resultType string).
* @member {object} [wildcardPath] The whole path include file name of the
* Azure Blob storage with wildcard supported. Type: string (or Expression
* with resultType string).
* @member {object} [format] The format of the Azure Blob storage.
* @member {object} [format.serializer] Serializer. Type: string (or
* Expression with resultType string).
Expand Down Expand Up @@ -148,6 +151,13 @@ class AzureBlobDataset extends models['Dataset'] {
name: 'Object'
}
},
wildcardPath: {
required: false,
serializedName: 'typeProperties.wildcardPath',
type: {
name: 'Object'
}
},
format: {
required: false,
serializedName: 'typeProperties.format',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const models = require('./index');
class AzureDataLakeStoreDataset extends models['Dataset'] {
/**
* Create a AzureDataLakeStoreDataset.
* @member {object} folderPath Path to the folder in the Azure Data Lake
* @member {object} [folderPath] Path to the folder in the Azure Data Lake
* Store. Type: string (or Expression with resultType string).
* @member {object} [fileName] The name of the file in the Azure Data Lake
* Store. Type: string (or Expression with resultType string).
Expand All @@ -30,6 +30,9 @@ class AzureDataLakeStoreDataset extends models['Dataset'] {
* @member {object} [format.deserializer] Deserializer. Type: string (or
* Expression with resultType string).
* @member {string} [format.type] Polymorphic Discriminator
* @member {object} [wildcardPath] The whole path include file name in the
* Azure Data Lake Store with wildcard supported. Type: string (or Expression
* with resultType string).
* @member {object} [compression] The data compression method used for the
* item(s) in the Azure Data Lake Store.
* @member {string} [compression.type] Polymorphic Discriminator
Expand Down Expand Up @@ -126,7 +129,7 @@ class AzureDataLakeStoreDataset extends models['Dataset'] {
}
},
folderPath: {
required: true,
required: false,
serializedName: 'typeProperties.folderPath',
type: {
name: 'Object'
Expand Down Expand Up @@ -164,6 +167,13 @@ class AzureDataLakeStoreDataset extends models['Dataset'] {
className: 'DatasetStorageFormat'
}
},
wildcardPath: {
required: false,
serializedName: 'typeProperties.wildcardPath',
type: {
name: 'Object'
}
},
compression: {
required: false,
serializedName: 'typeProperties.compression',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/

'use strict';

const models = require('./index');

/**
* Dynamics AX linked service.
*
* @extends models['LinkedService']
*/
class DynamicsAXLinkedService extends models['LinkedService'] {
/**
* Create a DynamicsAXLinkedService.
* @member {object} url The URL of Dynamics AX OData API. Type: string (or
* Expression with resultType string).
* @member {object} [tenant] Specify the tenant information (domain name or
* tenant ID) under which your application resides. Type: string (or
* Expression with resultType string).
* @member {object} [servicePrincipalId] Specify the application id of your
* application registered in Azure Active Directory. Type: string (or
* Expression with resultType string).
* @member {object} [aadResourceId] Specify the resource you are requesting
* authorization to use Directory. Type: string (or Expression with
* resultType string).
* @member {object} [servicePrincipalKey] Specify the secret of your
* application registered in Azure Active Directory. Type: string (or
* Expression with resultType string).
* @member {string} [servicePrincipalKey.type] Polymorphic Discriminator
* @member {object} [encryptedCredential] The encrypted credential used for
* authentication. Credentials are encrypted using the integration runtime
* credential manager. Either encryptedCredential or username/password must
* be provided. Type: string (or Expression with resultType string).
*/
constructor() {
super();
}

/**
* Defines the metadata of DynamicsAXLinkedService
*
* @returns {object} metadata of DynamicsAXLinkedService
*
*/
mapper() {
return {
required: false,
serializedName: 'DynamicsAX',
type: {
name: 'Composite',
polymorphicDiscriminator: {
serializedName: 'type',
clientName: 'type'
},
uberParent: 'LinkedService',
className: 'DynamicsAXLinkedService',
modelProperties: {
connectVia: {
required: false,
serializedName: 'connectVia',
type: {
name: 'Composite',
className: 'IntegrationRuntimeReference'
}
},
description: {
required: false,
serializedName: 'description',
type: {
name: 'String'
}
},
parameters: {
required: false,
serializedName: 'parameters',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'ParameterSpecificationElementType',
type: {
name: 'Composite',
className: 'ParameterSpecification'
}
}
}
},
annotations: {
required: false,
serializedName: 'annotations',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'ObjectElementType',
type: {
name: 'Object'
}
}
}
},
type: {
required: true,
serializedName: 'type',
isPolymorphicDiscriminator: true,
type: {
name: 'String'
}
},
url: {
required: true,
serializedName: 'typeProperties.url',
type: {
name: 'Object'
}
},
tenant: {
required: false,
serializedName: 'typeProperties.tenant',
type: {
name: 'Object'
}
},
servicePrincipalId: {
required: false,
serializedName: 'typeProperties.servicePrincipalId',
type: {
name: 'Object'
}
},
aadResourceId: {
required: false,
serializedName: 'typeProperties.aadResourceId',
type: {
name: 'Object'
}
},
servicePrincipalKey: {
required: false,
serializedName: 'typeProperties.servicePrincipalKey',
type: {
name: 'Composite',
polymorphicDiscriminator: {
serializedName: 'type',
clientName: 'type'
},
uberParent: 'SecretBase',
className: 'SecretBase'
}
},
encryptedCredential: {
required: false,
serializedName: 'typeProperties.encryptedCredential',
type: {
name: 'Object'
}
}
}
}
};
}
}

module.exports = DynamicsAXLinkedService;
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/

'use strict';

const models = require('./index');

/**
* The path of the Dynamics AX OData entity.
*
* @extends models['Dataset']
*/
class DynamicsAXResourceDataset extends models['Dataset'] {
/**
* Create a DynamicsAXResourceDataset.
* @member {string} path The path of the Dynamics AX OData entity. Type:
* string (or Expression with resultType string).
*/
constructor() {
super();
}

/**
* Defines the metadata of DynamicsAXResourceDataset
*
* @returns {object} metadata of DynamicsAXResourceDataset
*
*/
mapper() {
return {
required: false,
serializedName: 'DynamicsAXResource',
type: {
name: 'Composite',
polymorphicDiscriminator: {
serializedName: 'type',
clientName: 'type'
},
uberParent: 'Dataset',
className: 'DynamicsAXResourceDataset',
modelProperties: {
description: {
required: false,
serializedName: 'description',
type: {
name: 'String'
}
},
structure: {
required: false,
serializedName: 'structure',
type: {
name: 'Object'
}
},
linkedServiceName: {
required: true,
serializedName: 'linkedServiceName',
defaultValue: {},
type: {
name: 'Composite',
className: 'LinkedServiceReference'
}
},
parameters: {
required: false,
serializedName: 'parameters',
type: {
name: 'Dictionary',
value: {
required: false,
serializedName: 'ParameterSpecificationElementType',
type: {
name: 'Composite',
className: 'ParameterSpecification'
}
}
}
},
annotations: {
required: false,
serializedName: 'annotations',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'ObjectElementType',
type: {
name: 'Object'
}
}
}
},
folder: {
required: false,
serializedName: 'folder',
type: {
name: 'Composite',
className: 'DatasetFolder'
}
},
type: {
required: true,
serializedName: 'type',
isPolymorphicDiscriminator: true,
type: {
name: 'String'
}
},
path: {
required: true,
serializedName: 'typeProperties.path',
type: {
name: 'String'
}
}
}
}
};
}
}

module.exports = DynamicsAXResourceDataset;
Loading