From 7518babfcc1fd3a56999362963520b41f311f99e Mon Sep 17 00:00:00 2001 From: colawwj Date: Tue, 27 Jul 2021 12:08:25 +0800 Subject: [PATCH] arm-datafactory-release --- sdk/datafactory/arm-datafactory/README.md | 50 +- sdk/datafactory/arm-datafactory/package.json | 4 +- .../src/dataFactoryManagementClient.ts | 7 +- .../src/dataFactoryManagementClientContext.ts | 21 +- .../src/models/dataFlowDebugSessionMappers.ts | 1 + .../src/models/dataFlowsMappers.ts | 5 + .../src/models/datasetsMappers.ts | 5 + .../src/models/factoriesMappers.ts | 6 + .../arm-datafactory/src/models/index.ts | 2789 +++++++---------- .../src/models/integrationRuntimesMappers.ts | 5 + .../src/models/linkedServicesMappers.ts | 5 + .../models/managedPrivateEndpointsMappers.ts | 5 + .../models/managedVirtualNetworksMappers.ts | 5 + .../arm-datafactory/src/models/mappers.ts | 1389 +++++--- .../arm-datafactory/src/models/parameters.ts | 37 +- .../src/models/pipelinesMappers.ts | 5 + .../privateEndPointConnectionsMappers.ts | 5 + .../privateEndpointConnectionMappers.ts | 5 + .../src/models/privateLinkResourcesMappers.ts | 5 + .../src/models/triggersMappers.ts | 5 + .../operations/privateEndPointConnections.ts | 87 +- .../operations/privateEndpointConnection.ts | 142 +- .../src/operations/privateLinkResources.ts | 48 +- 23 files changed, 2272 insertions(+), 2364 deletions(-) diff --git a/sdk/datafactory/arm-datafactory/README.md b/sdk/datafactory/arm-datafactory/README.md index c8855fdbf843..06b6bb754d26 100644 --- a/sdk/datafactory/arm-datafactory/README.md +++ b/sdk/datafactory/arm-datafactory/README.md @@ -5,7 +5,7 @@ This package contains an isomorphic SDK (runs both in node.js and in browsers) f ### Currently supported environments - [LTS versions of Node.js](https://nodejs.org/about/releases/) -- Latest versions of Safari, Chrome, Edge, and Firefox. +- Latest versions of Safari, Chrome, Edge and Firefox. ### Prerequisites @@ -14,18 +14,15 @@ You must have an [Azure subscription](https://azure.microsoft.com/free/). ### How to install To use this SDK in your project, you will need to install two packages. - - `@azure/arm-datafactory` that contains the client. - `@azure/identity` that provides different mechanisms for the client to authenticate your requests using Azure Active Directory. Install both packages using the below command: - ```bash npm install --save @azure/arm-datafactory @azure/identity ``` - > **Note**: You may have used either `@azure/ms-rest-nodeauth` or `@azure/ms-rest-browserauth` in the past. These packages are in maintenance mode receiving critical bug fixes, but no new features. -> If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/), or are writing a client side browser application, we strongly encourage you to upgrade to `@azure/identity` which uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options. +If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/), or are writing a client side browser application, we strongly encourage you to upgrade to `@azure/identity` which uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options. ### How to use @@ -39,7 +36,6 @@ npm install --save @azure/arm-datafactory @azure/identity In the below samples, we pass the credential and the Azure subscription id to instantiate the client. Once the client is created, explore the operations on it either in your favorite editor or in our [API reference documentation](https://docs.microsoft.com/javascript/api) to get started. - #### nodejs - Authentication, client creation, and list operations as an example written in JavaScript. ##### Sample code @@ -53,24 +49,20 @@ const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"]; // Please note that you can also use credentials from the `@azure/ms-rest-nodeauth` package instead. const creds = new DefaultAzureCredential(); const client = new DataFactoryManagementClient(creds, subscriptionId); -client.operations - .list() - .then((result) => { - console.log("The result is:"); - console.log(result); - }) - .catch((err) => { - console.log("An error occurred:"); - console.error(err); - }); +client.operations.list().then((result) => { + console.log("The result is:"); + console.log(result); +}).catch((err) => { + console.log("An error occurred:"); + console.error(err); +}); ``` #### browser - Authentication, client creation, and list operations as an example written in JavaScript. In browser applications, we recommend using the `InteractiveBrowserCredential` that interactively authenticates using the default system browser. - -- See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser. -- Note down the client Id from the previous step and use it in the browser sample below. + - See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser. + - Note down the client Id from the previous step and use it in the browser sample below. ##### Sample code @@ -88,21 +80,19 @@ In browser applications, we recommend using the `InteractiveBrowserCredential` t const subscriptionId = ""; // Create credentials using the `@azure/identity` package. // Please note that you can also use credentials from the `@azure/ms-rest-browserauth` package instead. - const credential = new InteractiveBrowserCredential({ + const credential = new InteractiveBrowserCredential( + { clientId: "", tenant: "" }); const client = new Azure.ArmDatafactory.DataFactoryManagementClient(creds, subscriptionId); - client.operations - .list() - .then((result) => { - console.log("The result is:"); - console.log(result); - }) - .catch((err) => { - console.log("An error occurred:"); - console.error(err); - }); + client.operations.list().then((result) => { + console.log("The result is:"); + console.log(result); + }).catch((err) => { + console.log("An error occurred:"); + console.error(err); + }); diff --git a/sdk/datafactory/arm-datafactory/package.json b/sdk/datafactory/arm-datafactory/package.json index b58ebbd9c0e7..ea5c2bbb5847 100644 --- a/sdk/datafactory/arm-datafactory/package.json +++ b/sdk/datafactory/arm-datafactory/package.json @@ -2,7 +2,7 @@ "name": "@azure/arm-datafactory", "author": "Microsoft Corporation", "description": "DataFactoryManagementClient Library with typescript type definitions for node.js and browser.", - "version": "7.8.0", + "version": "7.9.0", "dependencies": { "@azure/ms-rest-azure-js": "^2.1.0", "@azure/ms-rest-js": "^2.2.0", @@ -27,7 +27,7 @@ "rollup-plugin-sourcemaps": "^0.4.2", "uglify-js": "^3.6.0" }, - "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/datafactory/arm-datafactory", + "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/sdk/datafactory/arm-datafactory", "repository": { "type": "git", "url": "https://github.com/Azure/azure-sdk-for-js.git" diff --git a/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClient.ts b/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClient.ts index 2db622aedb39..3b7f39dec8d3 100644 --- a/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClient.ts +++ b/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClient.ts @@ -14,6 +14,7 @@ import * as Mappers from "./models/mappers"; import * as operations from "./operations"; import { DataFactoryManagementClientContext } from "./dataFactoryManagementClientContext"; + class DataFactoryManagementClient extends DataFactoryManagementClientContext { // Operation groups operations: operations.Operations; @@ -48,11 +49,7 @@ class DataFactoryManagementClient extends DataFactoryManagementClientContext { * @param subscriptionId The subscription identifier. * @param [options] The parameter options */ - constructor( - credentials: msRest.ServiceClientCredentials | TokenCredential, - subscriptionId: string, - options?: Models.DataFactoryManagementClientOptions - ) { + constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.DataFactoryManagementClientOptions) { super(credentials, subscriptionId, options); this.operations = new operations.Operations(this); this.factories = new operations.Factories(this); diff --git a/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClientContext.ts b/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClientContext.ts index af06ee5cc3fb..aaa1ad60c845 100644 --- a/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClientContext.ts +++ b/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClientContext.ts @@ -13,7 +13,7 @@ import * as msRestAzure from "@azure/ms-rest-azure-js"; import { TokenCredential } from "@azure/core-auth"; const packageName = "@azure/arm-datafactory"; -const packageVersion = "7.8.0"; +const packageVersion = "7.9.0"; export class DataFactoryManagementClientContext extends msRestAzure.AzureServiceClient { credentials: msRest.ServiceClientCredentials | TokenCredential; @@ -31,16 +31,12 @@ export class DataFactoryManagementClientContext extends msRestAzure.AzureService * @param subscriptionId The subscription identifier. * @param [options] The parameter options */ - constructor( - credentials: msRest.ServiceClientCredentials | TokenCredential, - subscriptionId: string, - options?: Models.DataFactoryManagementClientOptions - ) { + constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.DataFactoryManagementClientOptions) { if (credentials == undefined) { - throw new Error("'credentials' cannot be null."); + throw new Error('\'credentials\' cannot be null.'); } if (subscriptionId == undefined) { - throw new Error("'subscriptionId' cannot be null."); + throw new Error('\'subscriptionId\' cannot be null.'); } if (!options) { @@ -53,8 +49,8 @@ export class DataFactoryManagementClientContext extends msRestAzure.AzureService super(credentials, options); - this.apiVersion = "2018-06-01"; - this.acceptLanguage = "en-US"; + this.apiVersion = '2018-06-01'; + this.acceptLanguage = 'en-US'; this.longRunningOperationRetryTimeout = 30; this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com"; this.requestContentType = "application/json; charset=utf-8"; @@ -64,10 +60,7 @@ export class DataFactoryManagementClientContext extends msRestAzure.AzureService if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) { this.acceptLanguage = options.acceptLanguage; } - if ( - options.longRunningOperationRetryTimeout !== null && - options.longRunningOperationRetryTimeout !== undefined - ) { + if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) { this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout; } } diff --git a/sdk/datafactory/arm-datafactory/src/models/dataFlowDebugSessionMappers.ts b/sdk/datafactory/arm-datafactory/src/models/dataFlowDebugSessionMappers.ts index 794362be6353..28419a965f9e 100644 --- a/sdk/datafactory/arm-datafactory/src/models/dataFlowDebugSessionMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/dataFlowDebugSessionMappers.ts @@ -79,6 +79,7 @@ export { CouchbaseTableDataset, CreateDataFlowDebugSessionRequest, CreateDataFlowDebugSessionResponse, + CredentialReference, CustomDataset, CustomDataSourceLinkedService, CustomSetupBase, diff --git a/sdk/datafactory/arm-datafactory/src/models/dataFlowsMappers.ts b/sdk/datafactory/arm-datafactory/src/models/dataFlowsMappers.ts index 0c48981c50f2..3850a28b13cf 100644 --- a/sdk/datafactory/arm-datafactory/src/models/dataFlowsMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/dataFlowsMappers.ts @@ -150,6 +150,9 @@ export { CouchbaseLinkedService, CouchbaseSource, CouchbaseTableDataset, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -325,6 +328,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointResource, @@ -482,6 +486,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/datasetsMappers.ts b/sdk/datafactory/arm-datafactory/src/models/datasetsMappers.ts index 783d2d32c5e8..a09b26ca402d 100644 --- a/sdk/datafactory/arm-datafactory/src/models/datasetsMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/datasetsMappers.ts @@ -150,6 +150,9 @@ export { CouchbaseLinkedService, CouchbaseSource, CouchbaseTableDataset, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -325,6 +328,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointResource, @@ -482,6 +486,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/factoriesMappers.ts b/sdk/datafactory/arm-datafactory/src/models/factoriesMappers.ts index d7a96ccb70cf..ba4165edffad 100644 --- a/sdk/datafactory/arm-datafactory/src/models/factoriesMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/factoriesMappers.ts @@ -151,6 +151,9 @@ export { CouchbaseLinkedService, CouchbaseSource, CouchbaseTableDataset, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -251,6 +254,7 @@ export { GetMetadataActivity, GitHubAccessTokenRequest, GitHubAccessTokenResponse, + GitHubClientSecret, GlobalParameterSpecification, GoogleAdWordsLinkedService, GoogleAdWordsObjectDataset, @@ -330,6 +334,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointResource, @@ -487,6 +492,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/index.ts b/sdk/datafactory/arm-datafactory/src/models/index.ts index 9ceceda02aa6..4c2c6444e3a8 100644 --- a/sdk/datafactory/arm-datafactory/src/models/index.ts +++ b/sdk/datafactory/arm-datafactory/src/models/index.ts @@ -187,10 +187,7 @@ export interface FactoryIdentity { /** * Contains the possible cases for FactoryRepoConfiguration. */ -export type FactoryRepoConfigurationUnion = - | FactoryRepoConfiguration - | FactoryVSTSConfiguration - | FactoryGitHubConfiguration; +export type FactoryRepoConfigurationUnion = FactoryRepoConfiguration | FactoryVSTSConfiguration | FactoryGitHubConfiguration; /** * Factory's git repo information. @@ -319,10 +316,7 @@ export interface Factory extends Resource { /** * Contains the possible cases for IntegrationRuntime. */ -export type IntegrationRuntimeUnion = - | IntegrationRuntime - | SelfHostedIntegrationRuntime - | ManagedIntegrationRuntime; +export type IntegrationRuntimeUnion = IntegrationRuntime | SelfHostedIntegrationRuntime | ManagedIntegrationRuntime; /** * Azure Data Factory nested object which serves as a compute resource for activities. @@ -379,10 +373,7 @@ export interface IntegrationRuntimeDebugResource extends SubResourceDebugResourc /** * Contains the possible cases for IntegrationRuntimeStatus. */ -export type IntegrationRuntimeStatusUnion = - | IntegrationRuntimeStatus - | SelfHostedIntegrationRuntimeStatus - | ManagedIntegrationRuntimeStatus; +export type IntegrationRuntimeStatusUnion = IntegrationRuntimeStatus | SelfHostedIntegrationRuntimeStatus | ManagedIntegrationRuntimeStatus; /** * Integration runtime status. @@ -515,108 +506,7 @@ export interface ParameterSpecification { /** * Contains the possible cases for LinkedService. */ -export type LinkedServiceUnion = - | LinkedService - | SharePointOnlineListLinkedService - | SnowflakeLinkedService - | AzureFunctionLinkedService - | AzureDataExplorerLinkedService - | SapTableLinkedService - | GoogleAdWordsLinkedService - | OracleServiceCloudLinkedService - | DynamicsAXLinkedService - | ResponsysLinkedService - | AzureDatabricksDeltaLakeLinkedService - | AzureDatabricksLinkedService - | AzureDataLakeAnalyticsLinkedService - | HDInsightOnDemandLinkedService - | SalesforceMarketingCloudLinkedService - | NetezzaLinkedService - | VerticaLinkedService - | ZohoLinkedService - | XeroLinkedService - | SquareLinkedService - | SparkLinkedService - | ShopifyLinkedService - | ServiceNowLinkedService - | QuickBooksLinkedService - | PrestoLinkedService - | PhoenixLinkedService - | PaypalLinkedService - | MarketoLinkedService - | AzureMariaDBLinkedService - | MariaDBLinkedService - | MagentoLinkedService - | JiraLinkedService - | ImpalaLinkedService - | HubspotLinkedService - | HiveLinkedService - | HBaseLinkedService - | GreenplumLinkedService - | GoogleBigQueryLinkedService - | EloquaLinkedService - | DrillLinkedService - | CouchbaseLinkedService - | ConcurLinkedService - | AzurePostgreSqlLinkedService - | AmazonMWSLinkedService - | SapHanaLinkedService - | SapBWLinkedService - | SftpServerLinkedService - | FtpServerLinkedService - | HttpLinkedService - | AzureSearchLinkedService - | CustomDataSourceLinkedService - | AmazonRedshiftLinkedService - | AmazonS3LinkedService - | RestServiceLinkedService - | SapOpenHubLinkedService - | SapEccLinkedService - | SapCloudForCustomerLinkedService - | SalesforceServiceCloudLinkedService - | SalesforceLinkedService - | Office365LinkedService - | AzureBlobFSLinkedService - | AzureDataLakeStoreLinkedService - | CosmosDbMongoDbApiLinkedService - | MongoDbV2LinkedService - | MongoDbAtlasLinkedService - | MongoDbLinkedService - | CassandraLinkedService - | WebLinkedService - | ODataLinkedService - | HdfsLinkedService - | MicrosoftAccessLinkedService - | InformixLinkedService - | OdbcLinkedService - | AzureMLServiceLinkedService - | AzureMLLinkedService - | TeradataLinkedService - | Db2LinkedService - | SybaseLinkedService - | PostgreSqlLinkedService - | MySqlLinkedService - | AzureMySqlLinkedService - | OracleLinkedService - | GoogleCloudStorageLinkedService - | OracleCloudStorageLinkedService - | AmazonS3CompatibleLinkedService - | AzureFileStorageLinkedService - | FileServerLinkedService - | HDInsightLinkedService - | CommonDataServiceForAppsLinkedService - | DynamicsCrmLinkedService - | DynamicsLinkedService - | CosmosDbLinkedService - | AzureKeyVaultLinkedService - | AzureBatchLinkedService - | AzureSqlMILinkedService - | AzureSqlDatabaseLinkedService - | SqlServerLinkedService - | AzureSqlDWLinkedService - | AzureTableStorageLinkedService - | AzureBlobStorageLinkedService - | AzureStorageLinkedService; +export type LinkedServiceUnion = LinkedService | SharePointOnlineListLinkedService | SnowflakeLinkedService | AzureFunctionLinkedService | AzureDataExplorerLinkedService | SapTableLinkedService | GoogleAdWordsLinkedService | OracleServiceCloudLinkedService | DynamicsAXLinkedService | ResponsysLinkedService | AzureDatabricksDeltaLakeLinkedService | AzureDatabricksLinkedService | AzureDataLakeAnalyticsLinkedService | HDInsightOnDemandLinkedService | SalesforceMarketingCloudLinkedService | NetezzaLinkedService | VerticaLinkedService | ZohoLinkedService | XeroLinkedService | SquareLinkedService | SparkLinkedService | ShopifyLinkedService | ServiceNowLinkedService | QuickBooksLinkedService | PrestoLinkedService | PhoenixLinkedService | PaypalLinkedService | MarketoLinkedService | AzureMariaDBLinkedService | MariaDBLinkedService | MagentoLinkedService | JiraLinkedService | ImpalaLinkedService | HubspotLinkedService | HiveLinkedService | HBaseLinkedService | GreenplumLinkedService | GoogleBigQueryLinkedService | EloquaLinkedService | DrillLinkedService | CouchbaseLinkedService | ConcurLinkedService | AzurePostgreSqlLinkedService | AmazonMWSLinkedService | SapHanaLinkedService | SapBWLinkedService | SftpServerLinkedService | FtpServerLinkedService | HttpLinkedService | AzureSearchLinkedService | CustomDataSourceLinkedService | AmazonRedshiftLinkedService | AmazonS3LinkedService | RestServiceLinkedService | SapOpenHubLinkedService | SapEccLinkedService | SapCloudForCustomerLinkedService | SalesforceServiceCloudLinkedService | SalesforceLinkedService | Office365LinkedService | AzureBlobFSLinkedService | AzureDataLakeStoreLinkedService | CosmosDbMongoDbApiLinkedService | MongoDbV2LinkedService | MongoDbAtlasLinkedService | MongoDbLinkedService | CassandraLinkedService | WebLinkedService | ODataLinkedService | HdfsLinkedService | MicrosoftAccessLinkedService | InformixLinkedService | OdbcLinkedService | AzureMLServiceLinkedService | AzureMLLinkedService | TeradataLinkedService | Db2LinkedService | SybaseLinkedService | PostgreSqlLinkedService | MySqlLinkedService | AzureMySqlLinkedService | OracleLinkedService | GoogleCloudStorageLinkedService | OracleCloudStorageLinkedService | AmazonS3CompatibleLinkedService | AzureFileStorageLinkedService | FileServerLinkedService | HDInsightLinkedService | CommonDataServiceForAppsLinkedService | DynamicsCrmLinkedService | DynamicsLinkedService | CosmosDbLinkedService | AzureKeyVaultLinkedService | AzureBatchLinkedService | AzureSqlMILinkedService | AzureSqlDatabaseLinkedService | SqlServerLinkedService | AzureSqlDWLinkedService | AzureTableStorageLinkedService | AzureBlobStorageLinkedService | AzureStorageLinkedService; /** * The Azure Data Factory nested object which contains the information and credential which can be @@ -672,101 +562,7 @@ export interface DatasetFolder { /** * Contains the possible cases for Dataset. */ -export type DatasetUnion = - | Dataset - | AzureDatabricksDeltaLakeDataset - | SharePointOnlineListResourceDataset - | SnowflakeDataset - | GoogleAdWordsObjectDataset - | AzureDataExplorerTableDataset - | OracleServiceCloudObjectDataset - | DynamicsAXResourceDataset - | ResponsysObjectDataset - | SalesforceMarketingCloudObjectDataset - | VerticaTableDataset - | NetezzaTableDataset - | ZohoObjectDataset - | XeroObjectDataset - | SquareObjectDataset - | SparkObjectDataset - | ShopifyObjectDataset - | ServiceNowObjectDataset - | QuickBooksObjectDataset - | PrestoObjectDataset - | PhoenixObjectDataset - | PaypalObjectDataset - | MarketoObjectDataset - | AzureMariaDBTableDataset - | MariaDBTableDataset - | MagentoObjectDataset - | JiraObjectDataset - | ImpalaObjectDataset - | HubspotObjectDataset - | HiveObjectDataset - | HBaseObjectDataset - | GreenplumTableDataset - | GoogleBigQueryObjectDataset - | EloquaObjectDataset - | DrillTableDataset - | CouchbaseTableDataset - | ConcurObjectDataset - | AzurePostgreSqlTableDataset - | AmazonMWSObjectDataset - | HttpDataset - | AzureSearchIndexDataset - | WebTableDataset - | SapTableResourceDataset - | RestResourceDataset - | SqlServerTableDataset - | SapOpenHubTableDataset - | SapHanaTableDataset - | SapEccResourceDataset - | SapCloudForCustomerResourceDataset - | SapBwCubeDataset - | SybaseTableDataset - | SalesforceServiceCloudObjectDataset - | SalesforceObjectDataset - | MicrosoftAccessTableDataset - | PostgreSqlTableDataset - | MySqlTableDataset - | OdbcTableDataset - | InformixTableDataset - | RelationalTableDataset - | Db2TableDataset - | AmazonRedshiftTableDataset - | AzureMySqlTableDataset - | TeradataTableDataset - | OracleTableDataset - | ODataResourceDataset - | CosmosDbMongoDbApiCollectionDataset - | MongoDbV2CollectionDataset - | MongoDbAtlasCollectionDataset - | MongoDbCollectionDataset - | FileShareDataset - | Office365Dataset - | AzureBlobFSDataset - | AzureDataLakeStoreDataset - | CommonDataServiceForAppsEntityDataset - | DynamicsCrmEntityDataset - | DynamicsEntityDataset - | DocumentDbCollectionDataset - | CosmosDbSqlApiCollectionDataset - | CustomDataset - | CassandraTableDataset - | AzureSqlDWTableDataset - | AzureSqlMITableDataset - | AzureSqlTableDataset - | AzureTableDataset - | AzureBlobDataset - | BinaryDataset - | OrcDataset - | XmlDataset - | JsonDataset - | DelimitedTextDataset - | ParquetDataset - | ExcelDataset - | AvroDataset - | AmazonS3Dataset; +export type DatasetUnion = Dataset | AzureDatabricksDeltaLakeDataset | SharePointOnlineListResourceDataset | SnowflakeDataset | GoogleAdWordsObjectDataset | AzureDataExplorerTableDataset | OracleServiceCloudObjectDataset | DynamicsAXResourceDataset | ResponsysObjectDataset | SalesforceMarketingCloudObjectDataset | VerticaTableDataset | NetezzaTableDataset | ZohoObjectDataset | XeroObjectDataset | SquareObjectDataset | SparkObjectDataset | ShopifyObjectDataset | ServiceNowObjectDataset | QuickBooksObjectDataset | PrestoObjectDataset | PhoenixObjectDataset | PaypalObjectDataset | MarketoObjectDataset | AzureMariaDBTableDataset | MariaDBTableDataset | MagentoObjectDataset | JiraObjectDataset | ImpalaObjectDataset | HubspotObjectDataset | HiveObjectDataset | HBaseObjectDataset | GreenplumTableDataset | GoogleBigQueryObjectDataset | EloquaObjectDataset | DrillTableDataset | CouchbaseTableDataset | ConcurObjectDataset | AzurePostgreSqlTableDataset | AmazonMWSObjectDataset | HttpDataset | AzureSearchIndexDataset | WebTableDataset | SapTableResourceDataset | RestResourceDataset | SqlServerTableDataset | SapOpenHubTableDataset | SapHanaTableDataset | SapEccResourceDataset | SapCloudForCustomerResourceDataset | SapBwCubeDataset | SybaseTableDataset | SalesforceServiceCloudObjectDataset | SalesforceObjectDataset | MicrosoftAccessTableDataset | PostgreSqlTableDataset | MySqlTableDataset | OdbcTableDataset | InformixTableDataset | RelationalTableDataset | Db2TableDataset | AmazonRedshiftTableDataset | AzureMySqlTableDataset | TeradataTableDataset | OracleTableDataset | ODataResourceDataset | CosmosDbMongoDbApiCollectionDataset | MongoDbV2CollectionDataset | MongoDbAtlasCollectionDataset | MongoDbCollectionDataset | FileShareDataset | Office365Dataset | AzureBlobFSDataset | AzureDataLakeStoreDataset | CommonDataServiceForAppsEntityDataset | DynamicsCrmEntityDataset | DynamicsEntityDataset | DocumentDbCollectionDataset | CosmosDbSqlApiCollectionDataset | CustomDataset | CassandraTableDataset | AzureSqlDWTableDataset | AzureSqlMITableDataset | AzureSqlTableDataset | AzureTableDataset | AzureBlobDataset | BinaryDataset | OrcDataset | XmlDataset | JsonDataset | DelimitedTextDataset | ParquetDataset | ExcelDataset | AvroDataset | AmazonS3Dataset; /** * The Azure Data Factory nested object which identifies data within different data stores, such as @@ -977,12 +773,7 @@ export interface PipelineResource extends SubResource { /** * Contains the possible cases for Trigger. */ -export type TriggerUnion = - | Trigger - | ChainingTrigger - | RerunTumblingWindowTrigger - | TumblingWindowTrigger - | MultiplePipelineTriggerUnion; +export type TriggerUnion = Trigger | ChainingTrigger | RerunTumblingWindowTrigger | TumblingWindowTrigger | MultiplePipelineTriggerUnion; /** * Azure data factory nested object which contains information about creating pipeline run @@ -1136,6 +927,20 @@ export interface FactoryGitHubConfiguration { hostName?: string; } +/** + * Client secret information for factory's bring your own app repository configuration. + */ +export interface GitHubClientSecret { + /** + * Bring your own app client secret AKV URL. + */ + byoaSecretAkvUrl?: string; + /** + * Bring your own app client secret name in AKV. + */ + byoaSecretName?: string; +} + /** * Factory's git repo information. */ @@ -1162,6 +967,10 @@ export interface GitHubAccessTokenRequest { * GitHub application client ID. */ gitHubClientId?: string; + /** + * GitHub bring your own app client secret information. + */ + gitHubClientSecret?: GitHubClientSecret; /** * GitHub access token base URL. */ @@ -1403,6 +1212,16 @@ export interface PipelineRunInvokedBy { * **NOTE: This property will not be serialized. It can only be populated by the server.** */ readonly invokedByType?: string; + /** + * The name of the pipeline that triggered the run, if any. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly pipelineName?: string; + /** + * The run id of the pipeline that triggered the run, if any. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly pipelineRunId?: string; } /** @@ -2445,6 +2264,110 @@ export interface PrivateLinkResourcesWrapper { value: PrivateLinkResource[]; } +/** + * Credential reference type. + */ +export interface CredentialReference { + /** + * Reference credential name. + */ + referenceName: string; + /** + * Describes unknown properties. The value of an unknown property can be of "any" type. + */ + [property: string]: any; +} + +/** + * Contains the possible cases for Credential. + */ +export type CredentialUnion = Credential | ManagedIdentityCredential | ServicePrincipalCredential; + +/** + * The Azure Data Factory nested object which contains the information and credential which can be + * used to connect with related store or compute resource. + */ +export interface Credential { + /** + * Polymorphic Discriminator + */ + type: "Credential"; + /** + * Credential description. + */ + description?: string; + /** + * List of tags that can be used for describing the Credential. + */ + annotations?: any[]; + /** + * Describes unknown properties. The value of an unknown property can be of "any" type. + */ + [property: string]: any; +} + +/** + * Credential resource type. + */ +export interface CredentialResource extends SubResource { + /** + * Properties of credentials. + */ + properties: CredentialUnion; +} + +/** + * Managed identity credential. + */ +export interface ManagedIdentityCredential { + /** + * Polymorphic Discriminator + */ + type: "ManagedIdentity"; + /** + * Credential description. + */ + description?: string; + /** + * List of tags that can be used for describing the Credential. + */ + annotations?: any[]; + /** + * The resource id of user assigned managed identity + */ + resourceId?: string; +} + +/** + * Service principal credential. + */ +export interface ServicePrincipalCredential { + /** + * Polymorphic Discriminator + */ + type: "ServicePrincipal"; + /** + * Credential description. + */ + description?: string; + /** + * List of tags that can be used for describing the Credential. + */ + annotations?: any[]; + /** + * The app ID of the service principal used to authenticate + */ + servicePrincipalId?: any; + /** + * The key of the service principal used to authenticate. + */ + servicePrincipalKey?: AzureKeyVaultSecretReference; + /** + * The ID of the tenant to which the service principal belongs + */ + tenant?: any; +} + /** * A data flow transformation. */ @@ -2664,6 +2587,19 @@ export interface AzureFunctionLinkedService { * integration runtime credential manager. Type: string (or Expression with resultType string). */ encryptedCredential?: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; + /** + * Allowed token audiences for azure function. + */ + resourceId?: any; + /** + * Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: + * string (or Expression with resultType string). + */ + authentication?: any; } /** @@ -2714,6 +2650,10 @@ export interface AzureDataExplorerLinkedService { * Expression with resultType string). */ tenant?: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -3243,6 +3183,10 @@ export interface AzureDatabricksLinkedService { * rules. Type: string (or Expression with resultType string). */ policyId?: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -3506,6 +3450,10 @@ export interface HDInsightOnDemandLinkedService { * property is required. Type: string (or Expression with resultType string). */ subnetName?: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -5949,6 +5897,10 @@ export interface RestServiceLinkedService { * integration runtime credential manager. Type: string (or Expression with resultType string). */ encryptedCredential?: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -6346,6 +6298,10 @@ export interface AzureBlobFSLinkedService { * integration runtime credential manager. Type: string (or Expression with resultType string). */ encryptedCredential?: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -6415,6 +6371,10 @@ export interface AzureDataLakeStoreLinkedService { * integration runtime credential manager. Type: string (or Expression with resultType string). */ encryptedCredential?: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -6654,11 +6614,7 @@ export interface CassandraLinkedService { /** * Contains the possible cases for WebLinkedServiceTypeProperties. */ -export type WebLinkedServiceTypePropertiesUnion = - | WebLinkedServiceTypeProperties - | WebClientCertificateAuthentication - | WebBasicAuthentication - | WebAnonymousAuthentication; +export type WebLinkedServiceTypePropertiesUnion = WebLinkedServiceTypeProperties | WebClientCertificateAuthentication | WebBasicAuthentication | WebAnonymousAuthentication; /** * Base definition of WebLinkedServiceTypeProperties, this typeProperties is polymorphic based on @@ -7193,6 +7149,11 @@ export interface AzureMLLinkedService { * integration runtime credential manager. Type: string (or Expression with resultType string). */ encryptedCredential?: any; + /** + * Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or + * Expression with resultType string). + */ + authentication?: any; } /** @@ -8234,6 +8195,10 @@ export interface AzureKeyVaultLinkedService { * Expression with resultType string). */ baseUrl: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -8285,6 +8250,10 @@ export interface AzureBatchLinkedService { * integration runtime credential manager. Type: string (or Expression with resultType string). */ encryptedCredential?: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -8368,6 +8337,10 @@ export interface AzureSqlMILinkedService { * Sql always encrypted properties. */ alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -8431,6 +8404,10 @@ export interface AzureSqlDatabaseLinkedService { * Sql always encrypted properties. */ alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -8539,6 +8516,10 @@ export interface AzureSqlDWLinkedService { * integration runtime credential manager. Type: string (or Expression with resultType string). */ encryptedCredential?: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -8668,6 +8649,10 @@ export interface AzureBlobStorageLinkedService { * integration runtime credential manager. Type: string (or Expression with resultType string). */ encryptedCredential?: string; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -10495,14 +10480,7 @@ export interface AmazonMWSObjectDataset { /** * Contains the possible cases for DatasetCompression. */ -export type DatasetCompressionUnion = - | DatasetCompression - | DatasetTarGZipCompression - | DatasetTarCompression - | DatasetZipDeflateCompression - | DatasetDeflateCompression - | DatasetGZipCompression - | DatasetBZip2Compression; +export type DatasetCompressionUnion = DatasetCompression | DatasetTarGZipCompression | DatasetTarCompression | DatasetZipDeflateCompression | DatasetDeflateCompression | DatasetGZipCompression | DatasetBZip2Compression; /** * The compression method used on a dataset. @@ -10597,13 +10575,7 @@ export interface DatasetBZip2Compression { /** * Contains the possible cases for DatasetStorageFormat. */ -export type DatasetStorageFormatUnion = - | DatasetStorageFormat - | ParquetFormat - | OrcFormat - | AvroFormat - | JsonFormat - | TextFormat; +export type DatasetStorageFormatUnion = DatasetStorageFormat | ParquetFormat | OrcFormat | AvroFormat | JsonFormat | TextFormat; /** * The format definition of a storage. @@ -13057,21 +13029,7 @@ export interface AzureBlobDataset { /** * Contains the possible cases for DatasetLocation. */ -export type DatasetLocationUnion = - | DatasetLocation - | HdfsLocation - | HttpServerLocation - | SftpLocation - | FtpServerLocation - | GoogleCloudStorageLocation - | OracleCloudStorageLocation - | AmazonS3CompatibleLocation - | AzureFileStorageLocation - | FileServerLocation - | AmazonS3Location - | AzureDataLakeStoreLocation - | AzureBlobFSLocation - | AzureBlobStorageLocation; +export type DatasetLocationUnion = DatasetLocation | HdfsLocation | HttpServerLocation | SftpLocation | FtpServerLocation | GoogleCloudStorageLocation | OracleCloudStorageLocation | AmazonS3CompatibleLocation | AzureFileStorageLocation | FileServerLocation | AmazonS3Location | AzureDataLakeStoreLocation | AzureBlobFSLocation | AzureBlobStorageLocation; /** * Dataset location. @@ -13470,9 +13428,9 @@ export interface OrcDataset { */ location: DatasetLocationUnion; /** - * Possible values include: 'none', 'zlib', 'snappy', 'lzo' + * The data orcCompressionCodec. Type: string (or Expression with resultType string). */ - orcCompressionCodec?: OrcCompressionCodec; + orcCompressionCodec?: any; } /** @@ -13838,9 +13796,9 @@ export interface AvroDataset { */ location: DatasetLocationUnion; /** - * Possible values include: 'none', 'deflate', 'snappy', 'xz', 'bzip2' + * The data avroCompressionCodec. Type: string (or Expression with resultType string). */ - avroCompressionCodec?: AvroCompressionCodec; + avroCompressionCodec?: any; avroCompressionLevel?: number; } @@ -14002,10 +13960,7 @@ export interface RerunTumblingWindowTrigger { /** * Contains the possible cases for DependencyReference. */ -export type DependencyReferenceUnion = - | DependencyReference - | SelfDependencyTumblingWindowTriggerReference - | TriggerDependencyReferenceUnion; +export type DependencyReferenceUnion = DependencyReference | SelfDependencyTumblingWindowTriggerReference | TriggerDependencyReferenceUnion; /** * Referenced dependency. @@ -14049,9 +14004,7 @@ export interface TriggerReference { /** * Contains the possible cases for TriggerDependencyReference. */ -export type TriggerDependencyReferenceUnion = - | TriggerDependencyReference - | TumblingWindowTriggerDependencyReference; +export type TriggerDependencyReferenceUnion = TriggerDependencyReference | TumblingWindowTriggerDependencyReference; /** * Trigger referenced dependency. @@ -14174,12 +14127,7 @@ export interface TumblingWindowTrigger { /** * Contains the possible cases for MultiplePipelineTrigger. */ -export type MultiplePipelineTriggerUnion = - | MultiplePipelineTrigger - | CustomEventsTrigger - | BlobEventsTrigger - | BlobTrigger - | ScheduleTrigger; +export type MultiplePipelineTriggerUnion = MultiplePipelineTrigger | CustomEventsTrigger | BlobEventsTrigger | BlobTrigger | ScheduleTrigger; /** * Base class for all triggers that support one to many model for trigger to pipeline. @@ -14519,31 +14467,7 @@ export interface ExecuteDataFlowActivityTypePropertiesCompute { /** * Contains the possible cases for ExecutionActivity. */ -export type ExecutionActivityUnion = - | ExecutionActivity - | ExecuteDataFlowActivity - | AzureFunctionActivity - | DatabricksSparkPythonActivity - | DatabricksSparkJarActivity - | DatabricksNotebookActivity - | DataLakeAnalyticsUSQLActivity - | AzureMLExecutePipelineActivity - | AzureMLUpdateResourceActivity - | AzureMLBatchExecutionActivity - | GetMetadataActivity - | WebActivity - | LookupActivity - | AzureDataExplorerCommandActivity - | DeleteActivity - | SqlServerStoredProcedureActivity - | CustomActivity - | ExecuteSSISPackageActivity - | HDInsightSparkActivity - | HDInsightStreamingActivity - | HDInsightMapReduceActivity - | HDInsightPigActivity - | HDInsightHiveActivity - | CopyActivity; +export type ExecutionActivityUnion = ExecutionActivity | ExecuteDataFlowActivity | AzureFunctionActivity | DatabricksSparkPythonActivity | DatabricksSparkJarActivity | DatabricksNotebookActivity | DataLakeAnalyticsUSQLActivity | AzureMLExecutePipelineActivity | AzureMLUpdateResourceActivity | AzureMLBatchExecutionActivity | GetMetadataActivity | WebActivity | LookupActivity | AzureDataExplorerCommandActivity | DeleteActivity | SqlServerStoredProcedureActivity | CustomActivity | ExecuteSSISPackageActivity | HDInsightSparkActivity | HDInsightStreamingActivity | HDInsightMapReduceActivity | HDInsightPigActivity | HDInsightHiveActivity | CopyActivity; /** * Base class for all execution activities. @@ -15108,11 +15032,7 @@ export interface AzureMLBatchExecutionActivity { /** * Contains the possible cases for CompressionReadSettings. */ -export type CompressionReadSettingsUnion = - | CompressionReadSettings - | TarGZipReadSettings - | TarReadSettings - | ZipDeflateReadSettings; +export type CompressionReadSettingsUnion = CompressionReadSettings | TarGZipReadSettings | TarReadSettings | ZipDeflateReadSettings; /** * Compression read settings. @@ -15176,12 +15096,7 @@ export interface ZipDeflateReadSettings { /** * Contains the possible cases for FormatReadSettings. */ -export type FormatReadSettingsUnion = - | FormatReadSettings - | BinaryReadSettings - | XmlReadSettings - | JsonReadSettings - | DelimitedTextReadSettings; +export type FormatReadSettingsUnion = FormatReadSettings | BinaryReadSettings | XmlReadSettings | JsonReadSettings | DelimitedTextReadSettings; /** * Format read settings. @@ -15304,21 +15219,7 @@ export interface DistcpSettings { /** * Contains the possible cases for StoreReadSettings. */ -export type StoreReadSettingsUnion = - | StoreReadSettings - | HdfsReadSettings - | HttpReadSettings - | SftpReadSettings - | FtpReadSettings - | GoogleCloudStorageReadSettings - | OracleCloudStorageReadSettings - | AmazonS3CompatibleReadSettings - | AzureFileStorageReadSettings - | FileServerReadSettings - | AmazonS3ReadSettings - | AzureDataLakeStoreReadSettings - | AzureBlobFSReadSettings - | AzureBlobStorageReadSettings; +export type StoreReadSettingsUnion = StoreReadSettings | HdfsReadSettings | HttpReadSettings | SftpReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | OracleCloudStorageReadSettings | AmazonS3CompatibleReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | AmazonS3ReadSettings | AzureDataLakeStoreReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings; /** * Connector read setting. @@ -16215,7 +16116,7 @@ export interface WebActivityAuthentication { /** * Web activity authentication (Basic/ClientCertificate/MSI/ServicePrincipal) */ - type: string; + type?: string; /** * Base64-encoded contents of a PFX file or Certificate when used for ServicePrincipal */ @@ -16239,6 +16140,10 @@ export interface WebActivityAuthentication { * Authentication. Type: string (or Expression with resultType string). */ userTenant?: any; + /** + * The credential reference containing authentication information. + */ + credential?: CredentialReference; } /** @@ -16313,44 +16218,7 @@ export interface WebActivity { /** * Contains the possible cases for CopySource. */ -export type CopySourceUnion = - | CopySource - | SharePointOnlineListSource - | AzureDatabricksDeltaLakeSource - | SnowflakeSource - | HttpSource - | AzureBlobFSSource - | AzureDataLakeStoreSource - | Office365Source - | CosmosDbMongoDbApiSource - | MongoDbV2Source - | MongoDbAtlasSource - | MongoDbSource - | WebSource - | OracleSource - | AzureDataExplorerSource - | HdfsSource - | FileSystemSource - | RestSource - | SalesforceServiceCloudSource - | ODataSource - | MicrosoftAccessSource - | RelationalSource - | CommonDataServiceForAppsSource - | DynamicsCrmSource - | DynamicsSource - | CosmosDbSqlApiSource - | DocumentDbCollectionSource - | BlobSource - | TabularSourceUnion - | BinarySource - | OrcSource - | XmlSource - | JsonSource - | DelimitedTextSource - | ParquetSource - | ExcelSource - | AvroSource; +export type CopySourceUnion = CopySource | SharePointOnlineListSource | AzureDatabricksDeltaLakeSource | SnowflakeSource | HttpSource | AzureBlobFSSource | AzureDataLakeStoreSource | Office365Source | CosmosDbMongoDbApiSource | MongoDbV2Source | MongoDbAtlasSource | MongoDbSource | WebSource | OracleSource | AzureDataExplorerSource | HdfsSource | FileSystemSource | RestSource | SalesforceServiceCloudSource | ODataSource | MicrosoftAccessSource | RelationalSource | CommonDataServiceForAppsSource | DynamicsCrmSource | DynamicsSource | CosmosDbSqlApiSource | DocumentDbCollectionSource | BlobSource | TabularSourceUnion | BinarySource | OrcSource | XmlSource | JsonSource | DelimitedTextSource | ParquetSource | ExcelSource | AvroSource; /** * A copy activity source. @@ -16428,10 +16296,7 @@ export interface SharePointOnlineListSource { /** * Contains the possible cases for ExportSettings. */ -export type ExportSettingsUnion = - | ExportSettings - | SnowflakeExportCopyCommand - | AzureDatabricksDeltaLakeExportCommand; +export type ExportSettingsUnion = ExportSettings | SnowflakeExportCopyCommand | AzureDatabricksDeltaLakeExportCommand; /** * Export command settings. @@ -17731,65 +17596,7 @@ export interface RedshiftUnloadSettings { /** * Contains the possible cases for TabularSource. */ -export type TabularSourceUnion = - | TabularSource - | AmazonRedshiftSource - | GoogleAdWordsSource - | OracleServiceCloudSource - | DynamicsAXSource - | ResponsysSource - | SalesforceMarketingCloudSource - | VerticaSource - | NetezzaSource - | ZohoSource - | XeroSource - | SquareSource - | SparkSource - | ShopifySource - | ServiceNowSource - | QuickBooksSource - | PrestoSource - | PhoenixSource - | PaypalSource - | MarketoSource - | AzureMariaDBSource - | MariaDBSource - | MagentoSource - | JiraSource - | ImpalaSource - | HubspotSource - | HiveSource - | HBaseSource - | GreenplumSource - | GoogleBigQuerySource - | EloquaSource - | DrillSource - | CouchbaseSource - | ConcurSource - | AzurePostgreSqlSource - | AmazonMWSSource - | CassandraSource - | TeradataSource - | AzureMySqlSource - | SqlDWSource - | SqlMISource - | AzureSqlSource - | SqlServerSource - | SqlSource - | SapTableSource - | SapOpenHubSource - | SapHanaSource - | SapEccSource - | SapCloudForCustomerSource - | SalesforceSource - | SapBwSource - | SybaseSource - | PostgreSqlSource - | MySqlSource - | OdbcSource - | Db2Source - | InformixSource - | AzureTableSource; +export type TabularSourceUnion = TabularSource | AmazonRedshiftSource | GoogleAdWordsSource | OracleServiceCloudSource | DynamicsAXSource | ResponsysSource | SalesforceMarketingCloudSource | VerticaSource | NetezzaSource | ZohoSource | XeroSource | SquareSource | SparkSource | ShopifySource | ServiceNowSource | QuickBooksSource | PrestoSource | PhoenixSource | PaypalSource | MarketoSource | AzureMariaDBSource | MariaDBSource | MagentoSource | JiraSource | ImpalaSource | HubspotSource | HiveSource | HBaseSource | GreenplumSource | GoogleBigQuerySource | EloquaSource | DrillSource | CouchbaseSource | ConcurSource | AzurePostgreSqlSource | AmazonMWSSource | CassandraSource | TeradataSource | AzureMySqlSource | SqlDWSource | SqlMISource | AzureSqlSource | SqlServerSource | SqlSource | SapTableSource | SapOpenHubSource | SapHanaSource | SapEccSource | SapCloudForCustomerSource | SalesforceSource | SapBwSource | SybaseSource | PostgreSqlSource | MySqlSource | OdbcSource | Db2Source | InformixSource | AzureTableSource; /** * Copy activity sources of tabular type. @@ -21489,15 +21296,11 @@ export interface ExecuteSSISPackageActivity { /** * The project level connection managers to execute the SSIS package. */ - projectConnectionManagers?: { - [propertyName: string]: { [propertyName: string]: SSISExecutionParameter }; - }; + projectConnectionManagers?: { [propertyName: string]: { [propertyName: string]: SSISExecutionParameter } }; /** * The package level connection managers to execute the SSIS package. */ - packageConnectionManagers?: { - [propertyName: string]: { [propertyName: string]: SSISExecutionParameter }; - }; + packageConnectionManagers?: { [propertyName: string]: { [propertyName: string]: SSISExecutionParameter } }; /** * The property overrides to execute the SSIS package. */ @@ -21966,47 +21769,7 @@ export interface StagingSettings { /** * Contains the possible cases for CopySink. */ -export type CopySinkUnion = - | CopySink - | CosmosDbMongoDbApiSink - | MongoDbV2Sink - | MongoDbAtlasSink - | SalesforceServiceCloudSink - | SalesforceSink - | AzureDataExplorerSink - | CommonDataServiceForAppsSink - | DynamicsCrmSink - | DynamicsSink - | MicrosoftAccessSink - | InformixSink - | OdbcSink - | AzureSearchIndexSink - | AzureBlobFSSink - | AzureDataLakeStoreSink - | OracleSink - | SnowflakeSink - | SqlDWSink - | SqlMISink - | AzureSqlSink - | SqlServerSink - | SqlSink - | CosmosDbSqlApiSink - | DocumentDbCollectionSink - | FileSystemSink - | BlobSink - | BinarySink - | ParquetSink - | AvroSink - | AzureTableSink - | AzureQueueSink - | SapCloudForCustomerSink - | AzureDatabricksDeltaLakeSink - | AzureMySqlSink - | AzurePostgreSqlSink - | RestSink - | OrcSink - | JsonSink - | DelimitedTextSink; +export type CopySinkUnion = CopySink | CosmosDbMongoDbApiSink | MongoDbV2Sink | MongoDbAtlasSink | SalesforceServiceCloudSink | SalesforceSink | AzureDataExplorerSink | CommonDataServiceForAppsSink | DynamicsCrmSink | DynamicsSink | MicrosoftAccessSink | InformixSink | OdbcSink | AzureSearchIndexSink | AzureBlobFSSink | AzureDataLakeStoreSink | OracleSink | SnowflakeSink | SqlDWSink | SqlMISink | AzureSqlSink | SqlServerSink | SqlSink | CosmosDbSqlApiSink | DocumentDbCollectionSink | FileSystemSink | BlobSink | BinarySink | ParquetSink | AvroSink | AzureTableSink | AzureQueueSink | SapCloudForCustomerSink | AzureDatabricksDeltaLakeSink | AzureMySqlSink | AzurePostgreSqlSink | RestSink | OrcSink | JsonSink | DelimitedTextSink; /** * A copy activity sink. @@ -22816,10 +22579,7 @@ export interface OracleSink { /** * Contains the possible cases for ImportSettings. */ -export type ImportSettingsUnion = - | ImportSettings - | AzureDatabricksDeltaLakeImportCommand - | SnowflakeImportCopyCommand; +export type ImportSettingsUnion = ImportSettings | AzureDatabricksDeltaLakeImportCommand | SnowflakeImportCopyCommand; /** * Import command settings. @@ -23501,14 +23261,7 @@ export interface BlobSink { /** * Contains the possible cases for StoreWriteSettings. */ -export type StoreWriteSettingsUnion = - | StoreWriteSettings - | AzureFileStorageWriteSettings - | FileServerWriteSettings - | AzureDataLakeStoreWriteSettings - | AzureBlobFSWriteSettings - | AzureBlobStorageWriteSettings - | SftpWriteSettings; +export type StoreWriteSettingsUnion = StoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | AzureDataLakeStoreWriteSettings | AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | SftpWriteSettings; /** * Connector write settings. @@ -23753,13 +23506,7 @@ export interface BinarySink { /** * Contains the possible cases for FormatWriteSettings. */ -export type FormatWriteSettingsUnion = - | FormatWriteSettings - | JsonWriteSettings - | DelimitedTextWriteSettings - | OrcWriteSettings - | AvroWriteSettings - | ParquetWriteSettings; +export type FormatWriteSettingsUnion = FormatWriteSettings | JsonWriteSettings | DelimitedTextWriteSettings | OrcWriteSettings | AvroWriteSettings | ParquetWriteSettings; /** * Format write settings. @@ -24569,19 +24316,7 @@ export interface CopyActivity { /** * Contains the possible cases for ControlActivity. */ -export type ControlActivityUnion = - | ControlActivity - | WebHookActivity - | AppendVariableActivity - | SetVariableActivity - | FilterActivity - | ValidationActivity - | UntilActivity - | WaitActivity - | ForEachActivity - | SwitchActivity - | IfConditionActivity - | ExecutePipelineActivity; +export type ControlActivityUnion = ControlActivity | WebHookActivity | AppendVariableActivity | SetVariableActivity | FilterActivity | ValidationActivity | UntilActivity | WaitActivity | ForEachActivity | SwitchActivity | IfConditionActivity | ExecutePipelineActivity; /** * Base class for all control activities like IfCondition, ForEach , Until. @@ -25453,10 +25188,7 @@ export interface ManagedIntegrationRuntimeStatus { /** * Contains the possible cases for LinkedIntegrationRuntimeType. */ -export type LinkedIntegrationRuntimeTypeUnion = - | LinkedIntegrationRuntimeType - | LinkedIntegrationRuntimeRbacAuthorization - | LinkedIntegrationRuntimeKeyAuthorization; +export type LinkedIntegrationRuntimeTypeUnion = LinkedIntegrationRuntimeType | LinkedIntegrationRuntimeRbacAuthorization | LinkedIntegrationRuntimeKeyAuthorization; /** * The base definition of a linked integration runtime. @@ -25517,7 +25249,7 @@ export interface SelfHostedIntegrationRuntime { export interface EntityReference { /** * The type of this referenced entity. Possible values include: 'IntegrationRuntimeReference', - * 'LinkedServiceReference', 'CredentialReference' + * 'LinkedServiceReference' */ type?: IntegrationRuntimeEntityReferenceType; /** @@ -25543,12 +25275,7 @@ export interface PackageStore { /** * Contains the possible cases for CustomSetupBase. */ -export type CustomSetupBaseUnion = - | CustomSetupBase - | AzPowerShellSetup - | ComponentSetup - | EnvironmentVariableSetup - | CmdkeySetup; +export type CustomSetupBaseUnion = CustomSetupBase | AzPowerShellSetup | ComponentSetup | EnvironmentVariableSetup | CmdkeySetup; /** * The base definition of the custom setup. @@ -25731,9 +25458,9 @@ export interface IntegrationRuntimeSsisProperties { */ packageStores?: PackageStore[]; /** - * The user-assigned managed identity reference. + * The credential reference containing authentication information. */ - managedCredential?: EntityReference; + credential?: CredentialReference; /** * Describes unknown properties. The value of an unknown property can be of "any" type. */ @@ -25903,12 +25630,7 @@ export interface SsisVariable { /** * Contains the possible cases for SsisObjectMetadata. */ -export type SsisObjectMetadataUnion = - | SsisObjectMetadata - | SsisEnvironment - | SsisPackage - | SsisProject - | SsisFolder; +export type SsisObjectMetadataUnion = SsisObjectMetadata | SsisEnvironment | SsisPackage | SsisProject | SsisFolder; /** * SSIS object metadata. @@ -26462,8 +26184,7 @@ export interface IntegrationRuntimesGetOptionalParams extends msRest.RequestOpti /** * Optional Parameters. */ -export interface IntegrationRuntimeObjectMetadataGetOptionalParams - extends msRest.RequestOptionsBase { +export interface IntegrationRuntimeObjectMetadataGetOptionalParams extends msRest.RequestOptionsBase { /** * The parameters for getting a SSIS object metadata. */ @@ -26624,8 +26345,7 @@ export interface DataFlowsGetOptionalParams extends msRest.RequestOptionsBase { /** * Optional Parameters. */ -export interface ManagedVirtualNetworksCreateOrUpdateOptionalParams - extends msRest.RequestOptionsBase { +export interface ManagedVirtualNetworksCreateOrUpdateOptionalParams extends msRest.RequestOptionsBase { /** * ETag of the managed Virtual Network entity. Should only be specified for update, for which it * should match existing entity or can be * for unconditional update. @@ -26647,8 +26367,7 @@ export interface ManagedVirtualNetworksGetOptionalParams extends msRest.RequestO /** * Optional Parameters. */ -export interface ManagedPrivateEndpointsCreateOrUpdateOptionalParams - extends msRest.RequestOptionsBase { +export interface ManagedPrivateEndpointsCreateOrUpdateOptionalParams extends msRest.RequestOptionsBase { /** * ETag of the managed private endpoint entity. Should only be specified for update, for which it * should match existing entity or can be * for unconditional update. @@ -26670,8 +26389,7 @@ export interface ManagedPrivateEndpointsGetOptionalParams extends msRest.Request /** * Optional Parameters. */ -export interface PrivateEndpointConnectionCreateOrUpdateOptionalParams - extends msRest.RequestOptionsBase { +export interface PrivateEndpointConnectionCreateOrUpdateOptionalParams extends msRest.RequestOptionsBase { /** * ETag of the private endpoint connection entity. Should only be specified for update, for * which it should match existing entity or can be * for unconditional update. @@ -26854,8 +26572,7 @@ export interface ManagedPrivateEndpointListResponse extends Array */ -export interface PrivateEndpointConnectionListResponse - extends Array { +export interface PrivateEndpointConnectionListResponse extends Array { /** * The link to the next page of results, if any remaining results exist. */ @@ -26868,7 +26585,7 @@ export interface PrivateEndpointConnectionListResponse * @readonly * @enum {string} */ -export type FactoryIdentityType = "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"; +export type FactoryIdentityType = 'SystemAssigned' | 'UserAssigned' | 'SystemAssigned,UserAssigned'; /** * Defines values for GlobalParameterType. @@ -26876,7 +26593,7 @@ export type FactoryIdentityType = "SystemAssigned" | "UserAssigned" | "SystemAss * @readonly * @enum {string} */ -export type GlobalParameterType = "Object" | "String" | "Int" | "Float" | "Bool" | "Array"; +export type GlobalParameterType = 'Object' | 'String' | 'Int' | 'Float' | 'Bool' | 'Array'; /** * Defines values for PublicNetworkAccess. @@ -26884,7 +26601,7 @@ export type GlobalParameterType = "Object" | "String" | "Int" | "Float" | "Bool" * @readonly * @enum {string} */ -export type PublicNetworkAccess = "Enabled" | "Disabled"; +export type PublicNetworkAccess = 'Enabled' | 'Disabled'; /** * Defines values for IntegrationRuntimeState. @@ -26893,17 +26610,7 @@ export type PublicNetworkAccess = "Enabled" | "Disabled"; * @readonly * @enum {string} */ -export type IntegrationRuntimeState = - | "Initial" - | "Stopped" - | "Started" - | "Starting" - | "Stopping" - | "NeedRegistration" - | "Online" - | "Limited" - | "Offline" - | "AccessDenied"; +export type IntegrationRuntimeState = 'Initial' | 'Stopped' | 'Started' | 'Starting' | 'Stopping' | 'NeedRegistration' | 'Online' | 'Limited' | 'Offline' | 'AccessDenied'; /** * Defines values for IntegrationRuntimeAutoUpdate. @@ -26911,7 +26618,7 @@ export type IntegrationRuntimeState = * @readonly * @enum {string} */ -export type IntegrationRuntimeAutoUpdate = "On" | "Off"; +export type IntegrationRuntimeAutoUpdate = 'On' | 'Off'; /** * Defines values for ParameterType. @@ -26919,14 +26626,7 @@ export type IntegrationRuntimeAutoUpdate = "On" | "Off"; * @readonly * @enum {string} */ -export type ParameterType = - | "Object" - | "String" - | "Int" - | "Float" - | "Bool" - | "Array" - | "SecureString"; +export type ParameterType = 'Object' | 'String' | 'Int' | 'Float' | 'Bool' | 'Array' | 'SecureString'; /** * Defines values for DependencyCondition. @@ -26934,7 +26634,7 @@ export type ParameterType = * @readonly * @enum {string} */ -export type DependencyCondition = "Succeeded" | "Failed" | "Skipped" | "Completed"; +export type DependencyCondition = 'Succeeded' | 'Failed' | 'Skipped' | 'Completed'; /** * Defines values for VariableType. @@ -26942,7 +26642,7 @@ export type DependencyCondition = "Succeeded" | "Failed" | "Skipped" | "Complete * @readonly * @enum {string} */ -export type VariableType = "String" | "Bool" | "Array"; +export type VariableType = 'String' | 'Bool' | 'Array'; /** * Defines values for TriggerRuntimeState. @@ -26950,7 +26650,7 @@ export type VariableType = "String" | "Bool" | "Array"; * @readonly * @enum {string} */ -export type TriggerRuntimeState = "Started" | "Stopped" | "Disabled"; +export type TriggerRuntimeState = 'Started' | 'Stopped' | 'Disabled'; /** * Defines values for EventSubscriptionStatus. @@ -26958,12 +26658,7 @@ export type TriggerRuntimeState = "Started" | "Stopped" | "Disabled"; * @readonly * @enum {string} */ -export type EventSubscriptionStatus = - | "Enabled" - | "Provisioning" - | "Deprovisioning" - | "Disabled" - | "Unknown"; +export type EventSubscriptionStatus = 'Enabled' | 'Provisioning' | 'Deprovisioning' | 'Disabled' | 'Unknown'; /** * Defines values for RunQueryFilterOperand. @@ -26973,19 +26668,7 @@ export type EventSubscriptionStatus = * @readonly * @enum {string} */ -export type RunQueryFilterOperand = - | "PipelineName" - | "Status" - | "RunStart" - | "RunEnd" - | "ActivityName" - | "ActivityRunStart" - | "ActivityRunEnd" - | "ActivityType" - | "TriggerName" - | "TriggerRunTimestamp" - | "RunGroupId" - | "LatestOnly"; +export type RunQueryFilterOperand = 'PipelineName' | 'Status' | 'RunStart' | 'RunEnd' | 'ActivityName' | 'ActivityRunStart' | 'ActivityRunEnd' | 'ActivityType' | 'TriggerName' | 'TriggerRunTimestamp' | 'RunGroupId' | 'LatestOnly'; /** * Defines values for RunQueryFilterOperator. @@ -26993,7 +26676,7 @@ export type RunQueryFilterOperand = * @readonly * @enum {string} */ -export type RunQueryFilterOperator = "Equals" | "NotEquals" | "In" | "NotIn"; +export type RunQueryFilterOperator = 'Equals' | 'NotEquals' | 'In' | 'NotIn'; /** * Defines values for RunQueryOrderByField. @@ -27002,16 +26685,7 @@ export type RunQueryFilterOperator = "Equals" | "NotEquals" | "In" | "NotIn"; * @readonly * @enum {string} */ -export type RunQueryOrderByField = - | "RunStart" - | "RunEnd" - | "PipelineName" - | "Status" - | "ActivityName" - | "ActivityRunStart" - | "ActivityRunEnd" - | "TriggerName" - | "TriggerRunTimestamp"; +export type RunQueryOrderByField = 'RunStart' | 'RunEnd' | 'PipelineName' | 'Status' | 'ActivityName' | 'ActivityRunStart' | 'ActivityRunEnd' | 'TriggerName' | 'TriggerRunTimestamp'; /** * Defines values for RunQueryOrder. @@ -27019,7 +26693,7 @@ export type RunQueryOrderByField = * @readonly * @enum {string} */ -export type RunQueryOrder = "ASC" | "DESC"; +export type RunQueryOrder = 'ASC' | 'DESC'; /** * Defines values for TriggerRunStatus. @@ -27027,7 +26701,7 @@ export type RunQueryOrder = "ASC" | "DESC"; * @readonly * @enum {string} */ -export type TriggerRunStatus = "Succeeded" | "Failed" | "Inprogress"; +export type TriggerRunStatus = 'Succeeded' | 'Failed' | 'Inprogress'; /** * Defines values for DataFlowDebugCommandType. @@ -27036,10 +26710,7 @@ export type TriggerRunStatus = "Succeeded" | "Failed" | "Inprogress"; * @readonly * @enum {string} */ -export type DataFlowDebugCommandType = - | "executePreviewQuery" - | "executeStatisticsQuery" - | "executeExpressionQuery"; +export type DataFlowDebugCommandType = 'executePreviewQuery' | 'executeStatisticsQuery' | 'executeExpressionQuery'; /** * Defines values for GoogleAdWordsAuthenticationType. @@ -27047,7 +26718,7 @@ export type DataFlowDebugCommandType = * @readonly * @enum {string} */ -export type GoogleAdWordsAuthenticationType = "ServiceAuthentication" | "UserAuthentication"; +export type GoogleAdWordsAuthenticationType = 'ServiceAuthentication' | 'UserAuthentication'; /** * Defines values for SparkServerType. @@ -27055,7 +26726,7 @@ export type GoogleAdWordsAuthenticationType = "ServiceAuthentication" | "UserAut * @readonly * @enum {string} */ -export type SparkServerType = "SharkServer" | "SharkServer2" | "SparkThriftServer"; +export type SparkServerType = 'SharkServer' | 'SharkServer2' | 'SparkThriftServer'; /** * Defines values for SparkThriftTransportProtocol. @@ -27063,7 +26734,7 @@ export type SparkServerType = "SharkServer" | "SharkServer2" | "SparkThriftServe * @readonly * @enum {string} */ -export type SparkThriftTransportProtocol = "Binary" | "SASL" | "HTTP "; +export type SparkThriftTransportProtocol = 'Binary' | 'SASL' | 'HTTP '; /** * Defines values for SparkAuthenticationType. @@ -27072,11 +26743,7 @@ export type SparkThriftTransportProtocol = "Binary" | "SASL" | "HTTP "; * @readonly * @enum {string} */ -export type SparkAuthenticationType = - | "Anonymous" - | "Username" - | "UsernameAndPassword" - | "WindowsAzureHDInsightService"; +export type SparkAuthenticationType = 'Anonymous' | 'Username' | 'UsernameAndPassword' | 'WindowsAzureHDInsightService'; /** * Defines values for ServiceNowAuthenticationType. @@ -27084,7 +26751,7 @@ export type SparkAuthenticationType = * @readonly * @enum {string} */ -export type ServiceNowAuthenticationType = "Basic" | "OAuth2"; +export type ServiceNowAuthenticationType = 'Basic' | 'OAuth2'; /** * Defines values for PrestoAuthenticationType. @@ -27092,7 +26759,7 @@ export type ServiceNowAuthenticationType = "Basic" | "OAuth2"; * @readonly * @enum {string} */ -export type PrestoAuthenticationType = "Anonymous" | "LDAP"; +export type PrestoAuthenticationType = 'Anonymous' | 'LDAP'; /** * Defines values for PhoenixAuthenticationType. @@ -27100,10 +26767,7 @@ export type PrestoAuthenticationType = "Anonymous" | "LDAP"; * @readonly * @enum {string} */ -export type PhoenixAuthenticationType = - | "Anonymous" - | "UsernameAndPassword" - | "WindowsAzureHDInsightService"; +export type PhoenixAuthenticationType = 'Anonymous' | 'UsernameAndPassword' | 'WindowsAzureHDInsightService'; /** * Defines values for ImpalaAuthenticationType. @@ -27111,7 +26775,7 @@ export type PhoenixAuthenticationType = * @readonly * @enum {string} */ -export type ImpalaAuthenticationType = "Anonymous" | "SASLUsername" | "UsernameAndPassword"; +export type ImpalaAuthenticationType = 'Anonymous' | 'SASLUsername' | 'UsernameAndPassword'; /** * Defines values for HiveServerType. @@ -27119,7 +26783,7 @@ export type ImpalaAuthenticationType = "Anonymous" | "SASLUsername" | "UsernameA * @readonly * @enum {string} */ -export type HiveServerType = "HiveServer1" | "HiveServer2" | "HiveThriftServer"; +export type HiveServerType = 'HiveServer1' | 'HiveServer2' | 'HiveThriftServer'; /** * Defines values for HiveThriftTransportProtocol. @@ -27127,7 +26791,7 @@ export type HiveServerType = "HiveServer1" | "HiveServer2" | "HiveThriftServer"; * @readonly * @enum {string} */ -export type HiveThriftTransportProtocol = "Binary" | "SASL" | "HTTP "; +export type HiveThriftTransportProtocol = 'Binary' | 'SASL' | 'HTTP '; /** * Defines values for HiveAuthenticationType. @@ -27136,11 +26800,7 @@ export type HiveThriftTransportProtocol = "Binary" | "SASL" | "HTTP "; * @readonly * @enum {string} */ -export type HiveAuthenticationType = - | "Anonymous" - | "Username" - | "UsernameAndPassword" - | "WindowsAzureHDInsightService"; +export type HiveAuthenticationType = 'Anonymous' | 'Username' | 'UsernameAndPassword' | 'WindowsAzureHDInsightService'; /** * Defines values for HBaseAuthenticationType. @@ -27148,7 +26808,7 @@ export type HiveAuthenticationType = * @readonly * @enum {string} */ -export type HBaseAuthenticationType = "Anonymous" | "Basic"; +export type HBaseAuthenticationType = 'Anonymous' | 'Basic'; /** * Defines values for GoogleBigQueryAuthenticationType. @@ -27156,7 +26816,7 @@ export type HBaseAuthenticationType = "Anonymous" | "Basic"; * @readonly * @enum {string} */ -export type GoogleBigQueryAuthenticationType = "ServiceAuthentication" | "UserAuthentication"; +export type GoogleBigQueryAuthenticationType = 'ServiceAuthentication' | 'UserAuthentication'; /** * Defines values for SapHanaAuthenticationType. @@ -27164,7 +26824,7 @@ export type GoogleBigQueryAuthenticationType = "ServiceAuthentication" | "UserAu * @readonly * @enum {string} */ -export type SapHanaAuthenticationType = "Basic" | "Windows"; +export type SapHanaAuthenticationType = 'Basic' | 'Windows'; /** * Defines values for SftpAuthenticationType. @@ -27172,7 +26832,7 @@ export type SapHanaAuthenticationType = "Basic" | "Windows"; * @readonly * @enum {string} */ -export type SftpAuthenticationType = "Basic" | "SshPublicKey" | "MultiFactor"; +export type SftpAuthenticationType = 'Basic' | 'SshPublicKey' | 'MultiFactor'; /** * Defines values for FtpAuthenticationType. @@ -27180,7 +26840,7 @@ export type SftpAuthenticationType = "Basic" | "SshPublicKey" | "MultiFactor"; * @readonly * @enum {string} */ -export type FtpAuthenticationType = "Basic" | "Anonymous"; +export type FtpAuthenticationType = 'Basic' | 'Anonymous'; /** * Defines values for HttpAuthenticationType. @@ -27188,12 +26848,7 @@ export type FtpAuthenticationType = "Basic" | "Anonymous"; * @readonly * @enum {string} */ -export type HttpAuthenticationType = - | "Basic" - | "Anonymous" - | "Digest" - | "Windows" - | "ClientCertificate"; +export type HttpAuthenticationType = 'Basic' | 'Anonymous' | 'Digest' | 'Windows' | 'ClientCertificate'; /** * Defines values for RestServiceAuthenticationType. @@ -27201,11 +26856,7 @@ export type HttpAuthenticationType = * @readonly * @enum {string} */ -export type RestServiceAuthenticationType = - | "Anonymous" - | "Basic" - | "AadServicePrincipal" - | "ManagedServiceIdentity"; +export type RestServiceAuthenticationType = 'Anonymous' | 'Basic' | 'AadServicePrincipal' | 'ManagedServiceIdentity'; /** * Defines values for MongoDbAuthenticationType. @@ -27213,7 +26864,7 @@ export type RestServiceAuthenticationType = * @readonly * @enum {string} */ -export type MongoDbAuthenticationType = "Basic" | "Anonymous"; +export type MongoDbAuthenticationType = 'Basic' | 'Anonymous'; /** * Defines values for ODataAuthenticationType. @@ -27222,12 +26873,7 @@ export type MongoDbAuthenticationType = "Basic" | "Anonymous"; * @readonly * @enum {string} */ -export type ODataAuthenticationType = - | "Basic" - | "Anonymous" - | "Windows" - | "AadServicePrincipal" - | "ManagedServiceIdentity"; +export type ODataAuthenticationType = 'Basic' | 'Anonymous' | 'Windows' | 'AadServicePrincipal' | 'ManagedServiceIdentity'; /** * Defines values for ODataAadServicePrincipalCredentialType. @@ -27235,7 +26881,7 @@ export type ODataAuthenticationType = * @readonly * @enum {string} */ -export type ODataAadServicePrincipalCredentialType = "ServicePrincipalKey" | "ServicePrincipalCert"; +export type ODataAadServicePrincipalCredentialType = 'ServicePrincipalKey' | 'ServicePrincipalCert'; /** * Defines values for TeradataAuthenticationType. @@ -27243,7 +26889,7 @@ export type ODataAadServicePrincipalCredentialType = "ServicePrincipalKey" | "Se * @readonly * @enum {string} */ -export type TeradataAuthenticationType = "Basic" | "Windows"; +export type TeradataAuthenticationType = 'Basic' | 'Windows'; /** * Defines values for Db2AuthenticationType. @@ -27251,7 +26897,7 @@ export type TeradataAuthenticationType = "Basic" | "Windows"; * @readonly * @enum {string} */ -export type Db2AuthenticationType = "Basic"; +export type Db2AuthenticationType = 'Basic'; /** * Defines values for SybaseAuthenticationType. @@ -27259,7 +26905,7 @@ export type Db2AuthenticationType = "Basic"; * @readonly * @enum {string} */ -export type SybaseAuthenticationType = "Basic" | "Windows"; +export type SybaseAuthenticationType = 'Basic' | 'Windows'; /** * Defines values for CosmosDbServicePrincipalCredentialType. @@ -27267,7 +26913,7 @@ export type SybaseAuthenticationType = "Basic" | "Windows"; * @readonly * @enum {string} */ -export type CosmosDbServicePrincipalCredentialType = "ServicePrincipalKey" | "ServicePrincipalCert"; +export type CosmosDbServicePrincipalCredentialType = 'ServicePrincipalKey' | 'ServicePrincipalCert'; /** * Defines values for CosmosDbConnectionMode. @@ -27275,7 +26921,7 @@ export type CosmosDbServicePrincipalCredentialType = "ServicePrincipalKey" | "Se * @readonly * @enum {string} */ -export type CosmosDbConnectionMode = "Gateway" | "Direct"; +export type CosmosDbConnectionMode = 'Gateway' | 'Direct'; /** * Defines values for SqlAlwaysEncryptedAkvAuthType. @@ -27283,23 +26929,7 @@ export type CosmosDbConnectionMode = "Gateway" | "Direct"; * @readonly * @enum {string} */ -export type SqlAlwaysEncryptedAkvAuthType = "ServicePrincipal" | "ManagedIdentity"; - -/** - * Defines values for OrcCompressionCodec. - * Possible values include: 'none', 'zlib', 'snappy', 'lzo' - * @readonly - * @enum {string} - */ -export type OrcCompressionCodec = "none" | "zlib" | "snappy" | "lzo"; - -/** - * Defines values for AvroCompressionCodec. - * Possible values include: 'none', 'deflate', 'snappy', 'xz', 'bzip2' - * @readonly - * @enum {string} - */ -export type AvroCompressionCodec = "none" | "deflate" | "snappy" | "xz" | "bzip2"; +export type SqlAlwaysEncryptedAkvAuthType = 'ServicePrincipal' | 'ManagedIdentity'; /** * Defines values for TumblingWindowFrequency. @@ -27307,7 +26937,7 @@ export type AvroCompressionCodec = "none" | "deflate" | "snappy" | "xz" | "bzip2 * @readonly * @enum {string} */ -export type TumblingWindowFrequency = "Minute" | "Hour" | "Month"; +export type TumblingWindowFrequency = 'Minute' | 'Hour' | 'Month'; /** * Defines values for BlobEventTypes. @@ -27315,7 +26945,7 @@ export type TumblingWindowFrequency = "Minute" | "Hour" | "Month"; * @readonly * @enum {string} */ -export type BlobEventTypes = "Microsoft.Storage.BlobCreated" | "Microsoft.Storage.BlobDeleted"; +export type BlobEventTypes = 'Microsoft.Storage.BlobCreated' | 'Microsoft.Storage.BlobDeleted'; /** * Defines values for DayOfWeek. @@ -27324,14 +26954,7 @@ export type BlobEventTypes = "Microsoft.Storage.BlobCreated" | "Microsoft.Storag * @readonly * @enum {string} */ -export type DayOfWeek = - | "Sunday" - | "Monday" - | "Tuesday" - | "Wednesday" - | "Thursday" - | "Friday" - | "Saturday"; +export type DayOfWeek = 'Sunday' | 'Monday' | 'Tuesday' | 'Wednesday' | 'Thursday' | 'Friday' | 'Saturday'; /** * Defines values for DaysOfWeek. @@ -27340,14 +26963,7 @@ export type DayOfWeek = * @readonly * @enum {string} */ -export type DaysOfWeek = - | "Sunday" - | "Monday" - | "Tuesday" - | "Wednesday" - | "Thursday" - | "Friday" - | "Saturday"; +export type DaysOfWeek = 'Sunday' | 'Monday' | 'Tuesday' | 'Wednesday' | 'Thursday' | 'Friday' | 'Saturday'; /** * Defines values for RecurrenceFrequency. @@ -27355,14 +26971,7 @@ export type DaysOfWeek = * @readonly * @enum {string} */ -export type RecurrenceFrequency = - | "NotSpecified" - | "Minute" - | "Hour" - | "Day" - | "Week" - | "Month" - | "Year"; +export type RecurrenceFrequency = 'NotSpecified' | 'Minute' | 'Hour' | 'Day' | 'Week' | 'Month' | 'Year'; /** * Defines values for AzureFunctionActivityMethod. @@ -27370,14 +26979,7 @@ export type RecurrenceFrequency = * @readonly * @enum {string} */ -export type AzureFunctionActivityMethod = - | "GET" - | "POST" - | "PUT" - | "DELETE" - | "OPTIONS" - | "HEAD" - | "TRACE"; +export type AzureFunctionActivityMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'OPTIONS' | 'HEAD' | 'TRACE'; /** * Defines values for WebActivityMethod. @@ -27385,7 +26987,7 @@ export type AzureFunctionActivityMethod = * @readonly * @enum {string} */ -export type WebActivityMethod = "GET" | "POST" | "PUT" | "DELETE"; +export type WebActivityMethod = 'GET' | 'POST' | 'PUT' | 'DELETE'; /** * Defines values for SalesforceSourceReadBehavior. @@ -27393,7 +26995,7 @@ export type WebActivityMethod = "GET" | "POST" | "PUT" | "DELETE"; * @readonly * @enum {string} */ -export type SalesforceSourceReadBehavior = "Query" | "QueryAll"; +export type SalesforceSourceReadBehavior = 'Query' | 'QueryAll'; /** * Defines values for CassandraSourceReadConsistencyLevels. @@ -27402,17 +27004,7 @@ export type SalesforceSourceReadBehavior = "Query" | "QueryAll"; * @readonly * @enum {string} */ -export type CassandraSourceReadConsistencyLevels = - | "ALL" - | "EACH_QUORUM" - | "QUORUM" - | "LOCAL_QUORUM" - | "ONE" - | "TWO" - | "THREE" - | "LOCAL_ONE" - | "SERIAL" - | "LOCAL_SERIAL"; +export type CassandraSourceReadConsistencyLevels = 'ALL' | 'EACH_QUORUM' | 'QUORUM' | 'LOCAL_QUORUM' | 'ONE' | 'TWO' | 'THREE' | 'LOCAL_ONE' | 'SERIAL' | 'LOCAL_SERIAL'; /** * Defines values for StoredProcedureParameterType. @@ -27420,14 +27012,7 @@ export type CassandraSourceReadConsistencyLevels = * @readonly * @enum {string} */ -export type StoredProcedureParameterType = - | "String" - | "Int" - | "Int64" - | "Decimal" - | "Guid" - | "Boolean" - | "Date"; +export type StoredProcedureParameterType = 'String' | 'Int' | 'Int64' | 'Decimal' | 'Guid' | 'Boolean' | 'Date'; /** * Defines values for SsisPackageLocationType. @@ -27435,7 +27020,7 @@ export type StoredProcedureParameterType = * @readonly * @enum {string} */ -export type SsisPackageLocationType = "SSISDB" | "File" | "InlinePackage" | "PackageStore"; +export type SsisPackageLocationType = 'SSISDB' | 'File' | 'InlinePackage' | 'PackageStore'; /** * Defines values for HDInsightActivityDebugInfoOption. @@ -27443,7 +27028,7 @@ export type SsisPackageLocationType = "SSISDB" | "File" | "InlinePackage" | "Pac * @readonly * @enum {string} */ -export type HDInsightActivityDebugInfoOption = "None" | "Always" | "Failure"; +export type HDInsightActivityDebugInfoOption = 'None' | 'Always' | 'Failure'; /** * Defines values for SalesforceSinkWriteBehavior. @@ -27451,7 +27036,7 @@ export type HDInsightActivityDebugInfoOption = "None" | "Always" | "Failure"; * @readonly * @enum {string} */ -export type SalesforceSinkWriteBehavior = "Insert" | "Upsert"; +export type SalesforceSinkWriteBehavior = 'Insert' | 'Upsert'; /** * Defines values for DynamicsSinkWriteBehavior. @@ -27459,7 +27044,7 @@ export type SalesforceSinkWriteBehavior = "Insert" | "Upsert"; * @readonly * @enum {string} */ -export type DynamicsSinkWriteBehavior = "Upsert"; +export type DynamicsSinkWriteBehavior = 'Upsert'; /** * Defines values for AzureSearchIndexWriteBehaviorType. @@ -27467,7 +27052,7 @@ export type DynamicsSinkWriteBehavior = "Upsert"; * @readonly * @enum {string} */ -export type AzureSearchIndexWriteBehaviorType = "Merge" | "Upload"; +export type AzureSearchIndexWriteBehaviorType = 'Merge' | 'Upload'; /** * Defines values for PolybaseSettingsRejectType. @@ -27475,7 +27060,7 @@ export type AzureSearchIndexWriteBehaviorType = "Merge" | "Upload"; * @readonly * @enum {string} */ -export type PolybaseSettingsRejectType = "value" | "percentage"; +export type PolybaseSettingsRejectType = 'value' | 'percentage'; /** * Defines values for SapCloudForCustomerSinkWriteBehavior. @@ -27483,7 +27068,7 @@ export type PolybaseSettingsRejectType = "value" | "percentage"; * @readonly * @enum {string} */ -export type SapCloudForCustomerSinkWriteBehavior = "Insert" | "Update"; +export type SapCloudForCustomerSinkWriteBehavior = 'Insert' | 'Update'; /** * Defines values for WebHookActivityMethod. @@ -27491,7 +27076,7 @@ export type SapCloudForCustomerSinkWriteBehavior = "Insert" | "Update"; * @readonly * @enum {string} */ -export type WebHookActivityMethod = "POST"; +export type WebHookActivityMethod = 'POST'; /** * Defines values for IntegrationRuntimeType. @@ -27499,7 +27084,7 @@ export type WebHookActivityMethod = "POST"; * @readonly * @enum {string} */ -export type IntegrationRuntimeType = "Managed" | "SelfHosted"; +export type IntegrationRuntimeType = 'Managed' | 'SelfHosted'; /** * Defines values for SelfHostedIntegrationRuntimeNodeStatus. @@ -27508,14 +27093,7 @@ export type IntegrationRuntimeType = "Managed" | "SelfHosted"; * @readonly * @enum {string} */ -export type SelfHostedIntegrationRuntimeNodeStatus = - | "NeedRegistration" - | "Online" - | "Limited" - | "Offline" - | "Upgrading" - | "Initializing" - | "InitializeFailed"; +export type SelfHostedIntegrationRuntimeNodeStatus = 'NeedRegistration' | 'Online' | 'Limited' | 'Offline' | 'Upgrading' | 'Initializing' | 'InitializeFailed'; /** * Defines values for IntegrationRuntimeUpdateResult. @@ -27523,7 +27101,7 @@ export type SelfHostedIntegrationRuntimeNodeStatus = * @readonly * @enum {string} */ -export type IntegrationRuntimeUpdateResult = "None" | "Succeed" | "Fail"; +export type IntegrationRuntimeUpdateResult = 'None' | 'Succeed' | 'Fail'; /** * Defines values for IntegrationRuntimeInternalChannelEncryptionMode. @@ -27531,10 +27109,7 @@ export type IntegrationRuntimeUpdateResult = "None" | "Succeed" | "Fail"; * @readonly * @enum {string} */ -export type IntegrationRuntimeInternalChannelEncryptionMode = - | "NotSet" - | "SslEncrypted" - | "NotEncrypted"; +export type IntegrationRuntimeInternalChannelEncryptionMode = 'NotSet' | 'SslEncrypted' | 'NotEncrypted'; /** * Defines values for ManagedIntegrationRuntimeNodeStatus. @@ -27542,23 +27117,15 @@ export type IntegrationRuntimeInternalChannelEncryptionMode = * @readonly * @enum {string} */ -export type ManagedIntegrationRuntimeNodeStatus = - | "Starting" - | "Available" - | "Recycling" - | "Unavailable"; +export type ManagedIntegrationRuntimeNodeStatus = 'Starting' | 'Available' | 'Recycling' | 'Unavailable'; /** * Defines values for IntegrationRuntimeEntityReferenceType. - * Possible values include: 'IntegrationRuntimeReference', 'LinkedServiceReference', - * 'CredentialReference' + * Possible values include: 'IntegrationRuntimeReference', 'LinkedServiceReference' * @readonly * @enum {string} */ -export type IntegrationRuntimeEntityReferenceType = - | "IntegrationRuntimeReference" - | "LinkedServiceReference" - | "CredentialReference"; +export type IntegrationRuntimeEntityReferenceType = 'IntegrationRuntimeReference' | 'LinkedServiceReference'; /** * Defines values for IntegrationRuntimeSsisCatalogPricingTier. @@ -27566,11 +27133,7 @@ export type IntegrationRuntimeEntityReferenceType = * @readonly * @enum {string} */ -export type IntegrationRuntimeSsisCatalogPricingTier = - | "Basic" - | "Standard" - | "Premium" - | "PremiumRS"; +export type IntegrationRuntimeSsisCatalogPricingTier = 'Basic' | 'Standard' | 'Premium' | 'PremiumRS'; /** * Defines values for IntegrationRuntimeLicenseType. @@ -27578,7 +27141,7 @@ export type IntegrationRuntimeSsisCatalogPricingTier = * @readonly * @enum {string} */ -export type IntegrationRuntimeLicenseType = "BasePrice" | "LicenseIncluded"; +export type IntegrationRuntimeLicenseType = 'BasePrice' | 'LicenseIncluded'; /** * Defines values for IntegrationRuntimeEdition. @@ -27586,7 +27149,7 @@ export type IntegrationRuntimeLicenseType = "BasePrice" | "LicenseIncluded"; * @readonly * @enum {string} */ -export type IntegrationRuntimeEdition = "Standard" | "Enterprise"; +export type IntegrationRuntimeEdition = 'Standard' | 'Enterprise'; /** * Defines values for DataFlowComputeType. @@ -27594,7 +27157,7 @@ export type IntegrationRuntimeEdition = "Standard" | "Enterprise"; * @readonly * @enum {string} */ -export type DataFlowComputeType = "General" | "MemoryOptimized" | "ComputeOptimized"; +export type DataFlowComputeType = 'General' | 'MemoryOptimized' | 'ComputeOptimized'; /** * Defines values for SsisObjectMetadataType. @@ -27602,7 +27165,7 @@ export type DataFlowComputeType = "General" | "MemoryOptimized" | "ComputeOptimi * @readonly * @enum {string} */ -export type SsisObjectMetadataType = "Folder" | "Project" | "Package" | "Environment"; +export type SsisObjectMetadataType = 'Folder' | 'Project' | 'Package' | 'Environment'; /** * Defines values for IntegrationRuntimeAuthKeyName. @@ -27610,7 +27173,7 @@ export type SsisObjectMetadataType = "Folder" | "Project" | "Package" | "Environ * @readonly * @enum {string} */ -export type IntegrationRuntimeAuthKeyName = "authKey1" | "authKey2"; +export type IntegrationRuntimeAuthKeyName = 'authKey1' | 'authKey2'; /** * Defines values for JsonFormatFilePattern. @@ -27618,7 +27181,7 @@ export type IntegrationRuntimeAuthKeyName = "authKey1" | "authKey2"; * @readonly * @enum {string} */ -export type JsonFormatFilePattern = "setOfObjects" | "arrayOfObjects"; +export type JsonFormatFilePattern = 'setOfObjects' | 'arrayOfObjects'; /** * Defines values for DatasetCompressionLevel. @@ -27626,7 +27189,15 @@ export type JsonFormatFilePattern = "setOfObjects" | "arrayOfObjects"; * @readonly * @enum {string} */ -export type DatasetCompressionLevel = "Optimal" | "Fastest"; +export type DatasetCompressionLevel = 'Optimal' | 'Fastest'; + +/** + * Defines values for AvroCompressionCodec. + * Possible values include: 'none', 'deflate', 'snappy', 'xz', 'bzip2' + * @readonly + * @enum {string} + */ +export type AvroCompressionCodec = 'none' | 'deflate' | 'snappy' | 'xz' | 'bzip2'; /** * Defines values for CompressionCodec. @@ -27635,17 +27206,15 @@ export type DatasetCompressionLevel = "Optimal" | "Fastest"; * @readonly * @enum {string} */ -export type CompressionCodec = - | "none" - | "lzo" - | "bzip2" - | "gzip" - | "deflate" - | "zipDeflate" - | "snappy" - | "lz4" - | "tar" - | "tarGZip"; +export type CompressionCodec = 'none' | 'lzo' | 'bzip2' | 'gzip' | 'deflate' | 'zipDeflate' | 'snappy' | 'lz4' | 'tar' | 'tarGZip'; + +/** + * Defines values for OrcCompressionCodec. + * Possible values include: 'none', 'zlib', 'snappy', 'lzo' + * @readonly + * @enum {string} + */ +export type OrcCompressionCodec = 'none' | 'zlib' | 'snappy' | 'lzo'; /** * Defines values for DynamicsDeploymentType. @@ -27653,7 +27222,7 @@ export type CompressionCodec = * @readonly * @enum {string} */ -export type DynamicsDeploymentType = "Online" | "OnPremisesWithIfd"; +export type DynamicsDeploymentType = 'Online' | 'OnPremisesWithIfd'; /** * Defines values for DynamicsAuthenticationType. @@ -27661,7 +27230,7 @@ export type DynamicsDeploymentType = "Online" | "OnPremisesWithIfd"; * @readonly * @enum {string} */ -export type DynamicsAuthenticationType = "Office365" | "Ifd" | "AADServicePrincipal"; +export type DynamicsAuthenticationType = 'Office365' | 'Ifd' | 'AADServicePrincipal'; /** * Defines values for ServicePrincipalCredentialType. @@ -27669,7 +27238,7 @@ export type DynamicsAuthenticationType = "Office365" | "Ifd" | "AADServicePrinci * @readonly * @enum {string} */ -export type ServicePrincipalCredentialType = "ServicePrincipalKey" | "ServicePrincipalCert"; +export type ServicePrincipalCredentialType = 'ServicePrincipalKey' | 'ServicePrincipalCert'; /** * Defines values for HdiNodeTypes. @@ -27677,7 +27246,7 @@ export type ServicePrincipalCredentialType = "ServicePrincipalKey" | "ServicePri * @readonly * @enum {string} */ -export type HdiNodeTypes = "Headnode" | "Workernode" | "Zookeeper"; +export type HdiNodeTypes = 'Headnode' | 'Workernode' | 'Zookeeper'; /** * Defines values for JsonWriteFilePattern. @@ -27685,7 +27254,7 @@ export type HdiNodeTypes = "Headnode" | "Workernode" | "Zookeeper"; * @readonly * @enum {string} */ -export type JsonWriteFilePattern = "setOfObjects" | "arrayOfObjects"; +export type JsonWriteFilePattern = 'setOfObjects' | 'arrayOfObjects'; /** * Defines values for CopyBehaviorType. @@ -27693,7 +27262,7 @@ export type JsonWriteFilePattern = "setOfObjects" | "arrayOfObjects"; * @readonly * @enum {string} */ -export type CopyBehaviorType = "PreserveHierarchy" | "FlattenHierarchy" | "MergeFiles"; +export type CopyBehaviorType = 'PreserveHierarchy' | 'FlattenHierarchy' | 'MergeFiles'; /** * Defines values for SqlPartitionOption. @@ -27701,7 +27270,7 @@ export type CopyBehaviorType = "PreserveHierarchy" | "FlattenHierarchy" | "Merge * @readonly * @enum {string} */ -export type SqlPartitionOption = "None" | "PhysicalPartitionsOfTable" | "DynamicRange"; +export type SqlPartitionOption = 'None' | 'PhysicalPartitionsOfTable' | 'DynamicRange'; /** * Defines values for SapHanaPartitionOption. @@ -27709,7 +27278,7 @@ export type SqlPartitionOption = "None" | "PhysicalPartitionsOfTable" | "Dynamic * @readonly * @enum {string} */ -export type SapHanaPartitionOption = "None" | "PhysicalPartitionsOfTable" | "SapHanaDynamicRange"; +export type SapHanaPartitionOption = 'None' | 'PhysicalPartitionsOfTable' | 'SapHanaDynamicRange'; /** * Defines values for SapTablePartitionOption. @@ -27718,13 +27287,7 @@ export type SapHanaPartitionOption = "None" | "PhysicalPartitionsOfTable" | "Sap * @readonly * @enum {string} */ -export type SapTablePartitionOption = - | "None" - | "PartitionOnInt" - | "PartitionOnCalendarYear" - | "PartitionOnCalendarMonth" - | "PartitionOnCalendarDate" - | "PartitionOnTime"; +export type SapTablePartitionOption = 'None' | 'PartitionOnInt' | 'PartitionOnCalendarYear' | 'PartitionOnCalendarMonth' | 'PartitionOnCalendarDate' | 'PartitionOnTime'; /** * Defines values for OraclePartitionOption. @@ -27732,7 +27295,7 @@ export type SapTablePartitionOption = * @readonly * @enum {string} */ -export type OraclePartitionOption = "None" | "PhysicalPartitionsOfTable" | "DynamicRange"; +export type OraclePartitionOption = 'None' | 'PhysicalPartitionsOfTable' | 'DynamicRange'; /** * Defines values for TeradataPartitionOption. @@ -27740,7 +27303,7 @@ export type OraclePartitionOption = "None" | "PhysicalPartitionsOfTable" | "Dyna * @readonly * @enum {string} */ -export type TeradataPartitionOption = "None" | "Hash" | "DynamicRange"; +export type TeradataPartitionOption = 'None' | 'Hash' | 'DynamicRange'; /** * Defines values for NetezzaPartitionOption. @@ -27748,7 +27311,7 @@ export type TeradataPartitionOption = "None" | "Hash" | "DynamicRange"; * @readonly * @enum {string} */ -export type NetezzaPartitionOption = "None" | "DataSlice" | "DynamicRange"; +export type NetezzaPartitionOption = 'None' | 'DataSlice' | 'DynamicRange'; /** * Contains response data for the list operation. @@ -27758,16 +27321,16 @@ export type OperationsListResponse = OperationListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: OperationListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: OperationListResponse; + }; }; /** @@ -27778,16 +27341,16 @@ export type OperationsListNextResponse = OperationListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: OperationListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: OperationListResponse; + }; }; /** @@ -27798,16 +27361,16 @@ export type FactoriesListResponse = FactoryListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: FactoryListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: FactoryListResponse; + }; }; /** @@ -27818,16 +27381,16 @@ export type FactoriesConfigureFactoryRepoResponse = Factory & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Factory; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: Factory; + }; }; /** @@ -27838,16 +27401,16 @@ export type FactoriesListByResourceGroupResponse = FactoryListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: FactoryListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: FactoryListResponse; + }; }; /** @@ -27858,16 +27421,16 @@ export type FactoriesCreateOrUpdateResponse = Factory & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Factory; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: Factory; + }; }; /** @@ -27878,16 +27441,16 @@ export type FactoriesUpdateResponse = Factory & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Factory; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: Factory; + }; }; /** @@ -27898,16 +27461,16 @@ export type FactoriesGetResponse = Factory & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Factory; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: Factory; + }; }; /** @@ -27918,16 +27481,16 @@ export type FactoriesGetGitHubAccessTokenResponse = GitHubAccessTokenResponse & * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: GitHubAccessTokenResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: GitHubAccessTokenResponse; + }; }; /** @@ -27938,16 +27501,16 @@ export type FactoriesGetDataPlaneAccessResponse = AccessPolicyResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: AccessPolicyResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: AccessPolicyResponse; + }; }; /** @@ -27958,36 +27521,36 @@ export type FactoriesListNextResponse = FactoryListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: FactoryListResponse; - }; -}; + /** + * The response body as text (string format) + */ + bodyAsText: string; -/** - * Contains response data for the listByResourceGroupNext operation. + /** + * The response body as parsed JSON or XML + */ + parsedBody: FactoryListResponse; + }; +}; + +/** + * Contains response data for the listByResourceGroupNext operation. */ export type FactoriesListByResourceGroupNextResponse = FactoryListResponse & { /** * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: FactoryListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: FactoryListResponse; + }; }; /** @@ -27998,16 +27561,16 @@ export type ExposureControlGetFeatureValueResponse = ExposureControlResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ExposureControlResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ExposureControlResponse; + }; }; /** @@ -28018,16 +27581,16 @@ export type ExposureControlGetFeatureValueByFactoryResponse = ExposureControlRes * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ExposureControlResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ExposureControlResponse; + }; }; /** @@ -28038,16 +27601,16 @@ export type ExposureControlQueryFeatureValuesByFactoryResponse = ExposureControl * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ExposureControlBatchResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ExposureControlBatchResponse; + }; }; /** @@ -28058,16 +27621,16 @@ export type IntegrationRuntimesListByFactoryResponse = IntegrationRuntimeListRes * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeListResponse; + }; }; /** @@ -28078,16 +27641,16 @@ export type IntegrationRuntimesCreateOrUpdateResponse = IntegrationRuntimeResour * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeResource; + }; }; /** @@ -28098,16 +27661,16 @@ export type IntegrationRuntimesGetResponse = IntegrationRuntimeResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeResource; + }; }; /** @@ -28118,16 +27681,16 @@ export type IntegrationRuntimesUpdateResponse = IntegrationRuntimeResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeResource; + }; }; /** @@ -28138,16 +27701,16 @@ export type IntegrationRuntimesGetStatusResponse = IntegrationRuntimeStatusRespo * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeStatusResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeStatusResponse; + }; }; /** @@ -28158,16 +27721,16 @@ export type IntegrationRuntimesGetConnectionInfoResponse = IntegrationRuntimeCon * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeConnectionInfo; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeConnectionInfo; + }; }; /** @@ -28178,16 +27741,16 @@ export type IntegrationRuntimesRegenerateAuthKeyResponse = IntegrationRuntimeAut * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeAuthKeys; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeAuthKeys; + }; }; /** @@ -28198,16 +27761,16 @@ export type IntegrationRuntimesListAuthKeysResponse = IntegrationRuntimeAuthKeys * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeAuthKeys; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeAuthKeys; + }; }; /** @@ -28218,16 +27781,16 @@ export type IntegrationRuntimesStartResponse = IntegrationRuntimeStatusResponse * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeStatusResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeStatusResponse; + }; }; /** @@ -28238,16 +27801,16 @@ export type IntegrationRuntimesGetMonitoringDataResponse = IntegrationRuntimeMon * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeMonitoringData; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeMonitoringData; + }; }; /** @@ -28258,16 +27821,16 @@ export type IntegrationRuntimesCreateLinkedIntegrationRuntimeResponse = Integrat * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeStatusResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeStatusResponse; + }; }; /** @@ -28278,16 +27841,16 @@ export type IntegrationRuntimesBeginStartResponse = IntegrationRuntimeStatusResp * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeStatusResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeStatusResponse; + }; }; /** @@ -28298,16 +27861,16 @@ export type IntegrationRuntimesListByFactoryNextResponse = IntegrationRuntimeLis * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeListResponse; + }; }; /** @@ -28318,16 +27881,16 @@ export type IntegrationRuntimeObjectMetadataRefreshResponse = SsisObjectMetadata * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: SsisObjectMetadataStatusResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: SsisObjectMetadataStatusResponse; + }; }; /** @@ -28338,16 +27901,16 @@ export type IntegrationRuntimeObjectMetadataGetResponse = SsisObjectMetadataList * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: SsisObjectMetadataListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: SsisObjectMetadataListResponse; + }; }; /** @@ -28358,16 +27921,16 @@ export type IntegrationRuntimeObjectMetadataBeginRefreshResponse = SsisObjectMet * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: SsisObjectMetadataStatusResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: SsisObjectMetadataStatusResponse; + }; }; /** @@ -28378,16 +27941,16 @@ export type IntegrationRuntimeNodesGetResponse = SelfHostedIntegrationRuntimeNod * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: SelfHostedIntegrationRuntimeNode; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: SelfHostedIntegrationRuntimeNode; + }; }; /** @@ -28398,16 +27961,16 @@ export type IntegrationRuntimeNodesUpdateResponse = SelfHostedIntegrationRuntime * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: SelfHostedIntegrationRuntimeNode; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: SelfHostedIntegrationRuntimeNode; + }; }; /** @@ -28418,16 +27981,16 @@ export type IntegrationRuntimeNodesGetIpAddressResponse = IntegrationRuntimeNode * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: IntegrationRuntimeNodeIpAddress; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: IntegrationRuntimeNodeIpAddress; + }; }; /** @@ -28438,16 +28001,16 @@ export type LinkedServicesListByFactoryResponse = LinkedServiceListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: LinkedServiceListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: LinkedServiceListResponse; + }; }; /** @@ -28458,16 +28021,16 @@ export type LinkedServicesCreateOrUpdateResponse = LinkedServiceResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: LinkedServiceResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: LinkedServiceResource; + }; }; /** @@ -28478,16 +28041,16 @@ export type LinkedServicesGetResponse = LinkedServiceResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: LinkedServiceResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: LinkedServiceResource; + }; }; /** @@ -28498,16 +28061,16 @@ export type LinkedServicesListByFactoryNextResponse = LinkedServiceListResponse * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: LinkedServiceListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: LinkedServiceListResponse; + }; }; /** @@ -28518,16 +28081,16 @@ export type DatasetsListByFactoryResponse = DatasetListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: DatasetListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: DatasetListResponse; + }; }; /** @@ -28538,16 +28101,16 @@ export type DatasetsCreateOrUpdateResponse = DatasetResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: DatasetResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: DatasetResource; + }; }; /** @@ -28558,16 +28121,16 @@ export type DatasetsGetResponse = DatasetResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: DatasetResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: DatasetResource; + }; }; /** @@ -28578,16 +28141,16 @@ export type DatasetsListByFactoryNextResponse = DatasetListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: DatasetListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: DatasetListResponse; + }; }; /** @@ -28598,16 +28161,16 @@ export type PipelinesListByFactoryResponse = PipelineListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PipelineListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PipelineListResponse; + }; }; /** @@ -28618,16 +28181,16 @@ export type PipelinesCreateOrUpdateResponse = PipelineResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PipelineResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PipelineResource; + }; }; /** @@ -28638,16 +28201,16 @@ export type PipelinesGetResponse = PipelineResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PipelineResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PipelineResource; + }; }; /** @@ -28658,16 +28221,16 @@ export type PipelinesCreateRunResponse = CreateRunResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: CreateRunResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: CreateRunResponse; + }; }; /** @@ -28678,16 +28241,16 @@ export type PipelinesListByFactoryNextResponse = PipelineListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PipelineListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PipelineListResponse; + }; }; /** @@ -28698,16 +28261,16 @@ export type PipelineRunsQueryByFactoryResponse = PipelineRunsQueryResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PipelineRunsQueryResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PipelineRunsQueryResponse; + }; }; /** @@ -28718,16 +28281,16 @@ export type PipelineRunsGetResponse = PipelineRun & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PipelineRun; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PipelineRun; + }; }; /** @@ -28738,16 +28301,16 @@ export type ActivityRunsQueryByPipelineRunResponse = ActivityRunsQueryResponse & * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ActivityRunsQueryResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ActivityRunsQueryResponse; + }; }; /** @@ -28758,16 +28321,16 @@ export type TriggersListByFactoryResponse = TriggerListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerListResponse; + }; }; /** @@ -28778,16 +28341,16 @@ export type TriggersQueryByFactoryResponse = TriggerQueryResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerQueryResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerQueryResponse; + }; }; /** @@ -28798,16 +28361,16 @@ export type TriggersCreateOrUpdateResponse = TriggerResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerResource; + }; }; /** @@ -28818,16 +28381,16 @@ export type TriggersGetResponse = TriggerResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerResource; + }; }; /** @@ -28838,16 +28401,16 @@ export type TriggersSubscribeToEventsResponse = TriggerSubscriptionOperationStat * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerSubscriptionOperationStatus; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerSubscriptionOperationStatus; + }; }; /** @@ -28858,16 +28421,16 @@ export type TriggersGetEventSubscriptionStatusResponse = TriggerSubscriptionOper * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerSubscriptionOperationStatus; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerSubscriptionOperationStatus; + }; }; /** @@ -28878,16 +28441,16 @@ export type TriggersUnsubscribeFromEventsResponse = TriggerSubscriptionOperation * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerSubscriptionOperationStatus; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerSubscriptionOperationStatus; + }; }; /** @@ -28898,16 +28461,16 @@ export type TriggersBeginSubscribeToEventsResponse = TriggerSubscriptionOperatio * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerSubscriptionOperationStatus; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerSubscriptionOperationStatus; + }; }; /** @@ -28918,16 +28481,16 @@ export type TriggersBeginUnsubscribeFromEventsResponse = TriggerSubscriptionOper * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerSubscriptionOperationStatus; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerSubscriptionOperationStatus; + }; }; /** @@ -28938,16 +28501,16 @@ export type TriggersListByFactoryNextResponse = TriggerListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerListResponse; + }; }; /** @@ -28958,16 +28521,16 @@ export type TriggerRunsQueryByFactoryResponse = TriggerRunsQueryResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: TriggerRunsQueryResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: TriggerRunsQueryResponse; + }; }; /** @@ -28978,16 +28541,16 @@ export type DataFlowsCreateOrUpdateResponse = DataFlowResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: DataFlowResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: DataFlowResource; + }; }; /** @@ -28998,16 +28561,16 @@ export type DataFlowsGetResponse = DataFlowResource & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: DataFlowResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: DataFlowResource; + }; }; /** @@ -29018,16 +28581,16 @@ export type DataFlowsListByFactoryResponse = DataFlowListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: DataFlowListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: DataFlowListResponse; + }; }; /** @@ -29038,27 +28601,26 @@ export type DataFlowsListByFactoryNextResponse = DataFlowListResponse & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: DataFlowListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: DataFlowListResponse; + }; }; /** * Contains response data for the create operation. */ -export type DataFlowDebugSessionCreateResponse = CreateDataFlowDebugSessionResponse & - DataFlowDebugSessionCreateHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { +export type DataFlowDebugSessionCreateResponse = CreateDataFlowDebugSessionResponse & DataFlowDebugSessionCreateHeaders & { + /** + * The underlying HTTP response. + */ + _response: msRest.HttpResponse & { /** * The parsed HTTP response headers. */ @@ -29074,7 +28636,7 @@ export type DataFlowDebugSessionCreateResponse = CreateDataFlowDebugSessionRespo */ parsedBody: CreateDataFlowDebugSessionResponse; }; - }; +}; /** * Contains response data for the queryByFactory operation. @@ -29084,16 +28646,16 @@ export type DataFlowDebugSessionQueryByFactoryResponse = QueryDataFlowDebugSessi * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: QueryDataFlowDebugSessionsResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: QueryDataFlowDebugSessionsResponse; + }; }; /** @@ -29104,27 +28666,26 @@ export type DataFlowDebugSessionAddDataFlowResponse = AddDataFlowToDebugSessionR * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: AddDataFlowToDebugSessionResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: AddDataFlowToDebugSessionResponse; + }; }; /** * Contains response data for the executeCommand operation. */ -export type DataFlowDebugSessionExecuteCommandResponse = DataFlowDebugCommandResponse & - DataFlowDebugSessionExecuteCommandHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { +export type DataFlowDebugSessionExecuteCommandResponse = DataFlowDebugCommandResponse & DataFlowDebugSessionExecuteCommandHeaders & { + /** + * The underlying HTTP response. + */ + _response: msRest.HttpResponse & { /** * The parsed HTTP response headers. */ @@ -29140,7 +28701,7 @@ export type DataFlowDebugSessionExecuteCommandResponse = DataFlowDebugCommandRes */ parsedBody: DataFlowDebugCommandResponse; }; - }; +}; /** * Contains response data for the queryByFactoryNext operation. @@ -29150,16 +28711,16 @@ export type DataFlowDebugSessionQueryByFactoryNextResponse = QueryDataFlowDebugS * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: QueryDataFlowDebugSessionsResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: QueryDataFlowDebugSessionsResponse; + }; }; /** @@ -29170,16 +28731,16 @@ export type ManagedVirtualNetworksListByFactoryResponse = ManagedVirtualNetworkL * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ManagedVirtualNetworkListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ManagedVirtualNetworkListResponse; + }; }; /** @@ -29190,16 +28751,16 @@ export type ManagedVirtualNetworksCreateOrUpdateResponse = ManagedVirtualNetwork * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ManagedVirtualNetworkResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ManagedVirtualNetworkResource; + }; }; /** @@ -29210,16 +28771,16 @@ export type ManagedVirtualNetworksGetResponse = ManagedVirtualNetworkResource & * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ManagedVirtualNetworkResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ManagedVirtualNetworkResource; + }; }; /** @@ -29230,16 +28791,16 @@ export type ManagedVirtualNetworksListByFactoryNextResponse = ManagedVirtualNetw * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ManagedVirtualNetworkListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ManagedVirtualNetworkListResponse; + }; }; /** @@ -29250,16 +28811,16 @@ export type ManagedPrivateEndpointsListByFactoryResponse = ManagedPrivateEndpoin * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ManagedPrivateEndpointListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ManagedPrivateEndpointListResponse; + }; }; /** @@ -29270,16 +28831,16 @@ export type ManagedPrivateEndpointsCreateOrUpdateResponse = ManagedPrivateEndpoi * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ManagedPrivateEndpointResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ManagedPrivateEndpointResource; + }; }; /** @@ -29290,16 +28851,16 @@ export type ManagedPrivateEndpointsGetResponse = ManagedPrivateEndpointResource * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ManagedPrivateEndpointResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ManagedPrivateEndpointResource; + }; }; /** @@ -29310,16 +28871,16 @@ export type ManagedPrivateEndpointsListByFactoryNextResponse = ManagedPrivateEnd * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: ManagedPrivateEndpointListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: ManagedPrivateEndpointListResponse; + }; }; /** @@ -29330,16 +28891,16 @@ export type PrivateEndPointConnectionsListByFactoryResponse = PrivateEndpointCon * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PrivateEndpointConnectionListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PrivateEndpointConnectionListResponse; + }; }; /** @@ -29350,16 +28911,16 @@ export type PrivateEndPointConnectionsListByFactoryNextResponse = PrivateEndpoin * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PrivateEndpointConnectionListResponse; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PrivateEndpointConnectionListResponse; + }; }; /** @@ -29370,16 +28931,16 @@ export type PrivateEndpointConnectionCreateOrUpdateResponse = PrivateEndpointCon * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PrivateEndpointConnectionResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PrivateEndpointConnectionResource; + }; }; /** @@ -29390,16 +28951,16 @@ export type PrivateEndpointConnectionGetResponse = PrivateEndpointConnectionReso * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PrivateEndpointConnectionResource; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PrivateEndpointConnectionResource; + }; }; /** @@ -29410,14 +28971,14 @@ export type PrivateLinkResourcesGetResponse = PrivateLinkResourcesWrapper & { * The underlying HTTP response. */ _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PrivateLinkResourcesWrapper; - }; + /** + * The response body as text (string format) + */ + bodyAsText: string; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: PrivateLinkResourcesWrapper; + }; }; diff --git a/sdk/datafactory/arm-datafactory/src/models/integrationRuntimesMappers.ts b/sdk/datafactory/arm-datafactory/src/models/integrationRuntimesMappers.ts index de856fa59889..1702c43d8ca4 100644 --- a/sdk/datafactory/arm-datafactory/src/models/integrationRuntimesMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/integrationRuntimesMappers.ts @@ -151,6 +151,9 @@ export { CouchbaseSource, CouchbaseTableDataset, CreateLinkedIntegrationRuntimeRequest, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -335,6 +338,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedIntegrationRuntimeError, ManagedIntegrationRuntimeNode, @@ -498,6 +502,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/linkedServicesMappers.ts b/sdk/datafactory/arm-datafactory/src/models/linkedServicesMappers.ts index b96f244c0c0a..b062f365baf6 100644 --- a/sdk/datafactory/arm-datafactory/src/models/linkedServicesMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/linkedServicesMappers.ts @@ -150,6 +150,9 @@ export { CouchbaseLinkedService, CouchbaseSource, CouchbaseTableDataset, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -325,6 +328,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointResource, @@ -482,6 +486,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/managedPrivateEndpointsMappers.ts b/sdk/datafactory/arm-datafactory/src/models/managedPrivateEndpointsMappers.ts index dc3ab19f4d0f..e0199cfb4f41 100644 --- a/sdk/datafactory/arm-datafactory/src/models/managedPrivateEndpointsMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/managedPrivateEndpointsMappers.ts @@ -150,6 +150,9 @@ export { CouchbaseLinkedService, CouchbaseSource, CouchbaseTableDataset, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -324,6 +327,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointListResponse, @@ -482,6 +486,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/managedVirtualNetworksMappers.ts b/sdk/datafactory/arm-datafactory/src/models/managedVirtualNetworksMappers.ts index 128d16bf987b..09482132a053 100644 --- a/sdk/datafactory/arm-datafactory/src/models/managedVirtualNetworksMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/managedVirtualNetworksMappers.ts @@ -150,6 +150,9 @@ export { CouchbaseLinkedService, CouchbaseSource, CouchbaseTableDataset, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -324,6 +327,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointResource, @@ -482,6 +486,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/mappers.ts b/sdk/datafactory/arm-datafactory/src/models/mappers.ts index b2ce562eca04..10fa6ddbd1e0 100644 --- a/sdk/datafactory/arm-datafactory/src/models/mappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/mappers.ts @@ -131,7 +131,7 @@ export const Expression: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "Expression", + defaultValue: 'Expression', type: { name: "String" } @@ -199,7 +199,7 @@ export const LinkedServiceReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "LinkedServiceReference", + defaultValue: 'LinkedServiceReference', type: { name: "String" } @@ -579,7 +579,7 @@ export const IntegrationRuntimeReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "IntegrationRuntimeReference", + defaultValue: 'IntegrationRuntimeReference', type: { name: "String" } @@ -1555,6 +1555,28 @@ export const FactoryGitHubConfiguration: msRest.CompositeMapper = { } }; +export const GitHubClientSecret: msRest.CompositeMapper = { + serializedName: "GitHubClientSecret", + type: { + name: "Composite", + className: "GitHubClientSecret", + modelProperties: { + byoaSecretAkvUrl: { + serializedName: "byoaSecretAkvUrl", + type: { + name: "String" + } + }, + byoaSecretName: { + serializedName: "byoaSecretName", + type: { + name: "String" + } + } + } + } +}; + export const FactoryRepoUpdate: msRest.CompositeMapper = { serializedName: "FactoryRepoUpdate", type: { @@ -1597,6 +1619,13 @@ export const GitHubAccessTokenRequest: msRest.CompositeMapper = { name: "String" } }, + gitHubClientSecret: { + serializedName: "gitHubClientSecret", + type: { + name: "Composite", + className: "GitHubClientSecret" + } + }, gitHubAccessTokenBaseUrl: { required: true, serializedName: "gitHubAccessTokenBaseUrl", @@ -1703,7 +1732,7 @@ export const PipelineReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "PipelineReference", + defaultValue: 'PipelineReference', type: { name: "String" } @@ -1791,7 +1820,7 @@ export const DatasetReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "DatasetReference", + defaultValue: 'DatasetReference', type: { name: "String" } @@ -2030,6 +2059,20 @@ export const PipelineRunInvokedBy: msRest.CompositeMapper = { type: { name: "String" } + }, + pipelineName: { + readOnly: true, + serializedName: "pipelineName", + type: { + name: "String" + } + }, + pipelineRunId: { + readOnly: true, + serializedName: "pipelineRunId", + type: { + name: "String" + } } } } @@ -3411,7 +3454,7 @@ export const DataFlowReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "DataFlowReference", + defaultValue: 'DataFlowReference', type: { name: "String" } @@ -3615,7 +3658,7 @@ export const ManagedVirtualNetworkReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "ManagedVirtualNetworkReference", + defaultValue: 'ManagedVirtualNetworkReference', type: { name: "String" } @@ -3842,6 +3885,158 @@ export const PrivateLinkResourcesWrapper: msRest.CompositeMapper = { } }; +export const CredentialReference: msRest.CompositeMapper = { + serializedName: "CredentialReference", + type: { + name: "Composite", + className: "CredentialReference", + modelProperties: { + type: { + required: true, + isConstant: true, + serializedName: "type", + defaultValue: 'CredentialReference', + type: { + name: "String" + } + }, + referenceName: { + required: true, + serializedName: "referenceName", + type: { + name: "String" + } + } + }, + additionalProperties: { + type: { + name: "Object" + } + } + } +}; + +export const Credential: msRest.CompositeMapper = { + serializedName: "Credential", + type: { + name: "Composite", + polymorphicDiscriminator: { + serializedName: "type", + clientName: "type" + }, + uberParent: "Credential", + className: "Credential", + modelProperties: { + description: { + serializedName: "description", + type: { + name: "String" + } + }, + annotations: { + serializedName: "annotations", + type: { + name: "Sequence", + element: { + type: { + name: "Object" + } + } + } + }, + type: { + required: true, + serializedName: "type", + type: { + name: "String" + } + } + }, + additionalProperties: { + type: { + name: "Object" + } + } + } +}; + +export const CredentialResource: msRest.CompositeMapper = { + serializedName: "CredentialResource", + type: { + name: "Composite", + className: "CredentialResource", + modelProperties: { + ...SubResource.type.modelProperties, + properties: { + required: true, + serializedName: "properties", + type: { + name: "Composite", + className: "Credential", + additionalProperties: { + type: { + name: "Object" + } + } + } + } + } + } +}; + +export const ManagedIdentityCredential: msRest.CompositeMapper = { + serializedName: "ManagedIdentity", + type: { + name: "Composite", + polymorphicDiscriminator: Credential.type.polymorphicDiscriminator, + uberParent: "Credential", + className: "ManagedIdentityCredential", + modelProperties: { + ...Credential.type.modelProperties, + resourceId: { + serializedName: "typeProperties.resourceId", + type: { + name: "String" + } + } + }, + additionalProperties: Credential.type.additionalProperties + } +}; + +export const ServicePrincipalCredential: msRest.CompositeMapper = { + serializedName: "ServicePrincipal", + type: { + name: "Composite", + polymorphicDiscriminator: Credential.type.polymorphicDiscriminator, + uberParent: "Credential", + className: "ServicePrincipalCredential", + modelProperties: { + ...Credential.type.modelProperties, + servicePrincipalId: { + serializedName: "typeProperties.servicePrincipalId", + type: { + name: "Object" + } + }, + servicePrincipalKey: { + serializedName: "typeProperties.servicePrincipalKey", + type: { + name: "Composite", + className: "AzureKeyVaultSecretReference" + } + }, + tenant: { + serializedName: "typeProperties.tenant", + type: { + name: "Object" + } + } + }, + additionalProperties: Credential.type.additionalProperties + } +}; + export const Transformation: msRest.CompositeMapper = { serializedName: "Transformation", type: { @@ -4095,6 +4290,30 @@ export const AzureFunctionLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } + }, + resourceId: { + serializedName: "typeProperties.resourceId", + type: { + name: "Object" + } + }, + authentication: { + serializedName: "typeProperties.authentication", + type: { + name: "Object" + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -4142,6 +4361,18 @@ export const AzureDataExplorerLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -4693,6 +4924,18 @@ export const AzureDatabricksLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -5032,6 +5275,18 @@ export const HDInsightOnDemandLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -7491,6 +7746,18 @@ export const RestServiceLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -7869,6 +8136,18 @@ export const AzureBlobFSLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -7939,6 +8218,18 @@ export const AzureDataLakeStoreLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -8701,6 +8992,12 @@ export const AzureMLLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + authentication: { + serializedName: "typeProperties.authentication", + type: { + name: "Object" + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -9695,6 +9992,18 @@ export const AzureKeyVaultLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -9752,6 +10061,18 @@ export const AzureBatchLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -9848,6 +10169,18 @@ export const AzureSqlMILinkedService: msRest.CompositeMapper = { name: "Composite", className: "SqlAlwaysEncryptedProperties" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -9914,6 +10247,18 @@ export const AzureSqlDatabaseLinkedService: msRest.CompositeMapper = { name: "Composite", className: "SqlAlwaysEncryptedProperties" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -10020,6 +10365,18 @@ export const AzureSqlDWLinkedService: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -10149,6 +10506,18 @@ export const AzureBlobStorageLinkedService: msRest.CompositeMapper = { type: { name: "String" } + }, + credential: { + serializedName: "typeProperties.credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } }, additionalProperties: LinkedService.type.additionalProperties @@ -13079,7 +13448,7 @@ export const OrcDataset: msRest.CompositeMapper = { orcCompressionCodec: { serializedName: "typeProperties.orcCompressionCodec", type: { - name: "String" + name: "Object" } } }, @@ -13391,7 +13760,7 @@ export const AvroDataset: msRest.CompositeMapper = { avroCompressionCodec: { serializedName: "typeProperties.avroCompressionCodec", type: { - name: "String" + name: "Object" } }, avroCompressionLevel: { @@ -13641,7 +14010,7 @@ export const TriggerReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "TriggerReference", + defaultValue: 'TriggerReference', type: { name: "String" } @@ -16087,7 +16456,6 @@ export const WebActivityAuthentication: msRest.CompositeMapper = { className: "WebActivityAuthentication", modelProperties: { type: { - required: true, serializedName: "type", type: { name: "String" @@ -16124,6 +16492,18 @@ export const WebActivityAuthentication: msRest.CompositeMapper = { type: { name: "Object" } + }, + credential: { + serializedName: "credential", + type: { + name: "Composite", + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } + } } } } @@ -19816,7 +20196,7 @@ export const SSISLogLocation: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "File", + defaultValue: 'File', type: { name: "String" } @@ -20980,7 +21360,7 @@ export const CommonDataServiceForAppsSink: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "writeBehavior", - defaultValue: "Upsert", + defaultValue: 'Upsert', type: { name: "String" } @@ -21015,7 +21395,7 @@ export const DynamicsCrmSink: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "writeBehavior", - defaultValue: "Upsert", + defaultValue: 'Upsert', type: { name: "String" } @@ -21050,7 +21430,7 @@ export const DynamicsSink: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "writeBehavior", - defaultValue: "Upsert", + defaultValue: 'Upsert', type: { name: "String" } @@ -22780,7 +23160,7 @@ export const WebHookActivity: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "typeProperties.method", - defaultValue: "POST", + defaultValue: 'POST', type: { name: "String" } @@ -24266,11 +24646,16 @@ export const IntegrationRuntimeSsisProperties: msRest.CompositeMapper = { } } }, - managedCredential: { - serializedName: "managedCredential", + credential: { + serializedName: "credential", type: { name: "Composite", - className: "EntityReference" + className: "CredentialReference", + additionalProperties: { + type: { + name: "Object" + } + } } } }, @@ -25638,485 +26023,489 @@ export const PrivateEndpointConnectionListResponse: msRest.CompositeMapper = { }; export const discriminators = { - "SecretBase.SecureString": SecureString, - "SecretBase.AzureKeyVaultSecret": AzureKeyVaultSecretReference, - SecretBase: SecretBase, - FactoryRepoConfiguration: FactoryRepoConfiguration, - IntegrationRuntime: IntegrationRuntime, - IntegrationRuntimeStatus: IntegrationRuntimeStatus, - LinkedService: LinkedService, - Dataset: Dataset, - Activity: Activity, - Trigger: Trigger, - "FactoryRepoConfiguration.FactoryVSTSConfiguration": FactoryVSTSConfiguration, - "FactoryRepoConfiguration.FactoryGitHubConfiguration": FactoryGitHubConfiguration, - DataFlow: DataFlow, - "DataFlow.MappingDataFlow": MappingDataFlow, - "LinkedService.SharePointOnlineList": SharePointOnlineListLinkedService, - "LinkedService.Snowflake": SnowflakeLinkedService, - "LinkedService.AzureFunction": AzureFunctionLinkedService, - "LinkedService.AzureDataExplorer": AzureDataExplorerLinkedService, - "LinkedService.SapTable": SapTableLinkedService, - "LinkedService.GoogleAdWords": GoogleAdWordsLinkedService, - "LinkedService.OracleServiceCloud": OracleServiceCloudLinkedService, - "LinkedService.DynamicsAX": DynamicsAXLinkedService, - "LinkedService.Responsys": ResponsysLinkedService, - "LinkedService.AzureDatabricksDeltaLake": AzureDatabricksDeltaLakeLinkedService, - "LinkedService.AzureDatabricks": AzureDatabricksLinkedService, - "LinkedService.AzureDataLakeAnalytics": AzureDataLakeAnalyticsLinkedService, - "LinkedService.HDInsightOnDemand": HDInsightOnDemandLinkedService, - "LinkedService.SalesforceMarketingCloud": SalesforceMarketingCloudLinkedService, - "LinkedService.Netezza": NetezzaLinkedService, - "LinkedService.Vertica": VerticaLinkedService, - "LinkedService.Zoho": ZohoLinkedService, - "LinkedService.Xero": XeroLinkedService, - "LinkedService.Square": SquareLinkedService, - "LinkedService.Spark": SparkLinkedService, - "LinkedService.Shopify": ShopifyLinkedService, - "LinkedService.ServiceNow": ServiceNowLinkedService, - "LinkedService.QuickBooks": QuickBooksLinkedService, - "LinkedService.Presto": PrestoLinkedService, - "LinkedService.Phoenix": PhoenixLinkedService, - "LinkedService.Paypal": PaypalLinkedService, - "LinkedService.Marketo": MarketoLinkedService, - "LinkedService.AzureMariaDB": AzureMariaDBLinkedService, - "LinkedService.MariaDB": MariaDBLinkedService, - "LinkedService.Magento": MagentoLinkedService, - "LinkedService.Jira": JiraLinkedService, - "LinkedService.Impala": ImpalaLinkedService, - "LinkedService.Hubspot": HubspotLinkedService, - "LinkedService.Hive": HiveLinkedService, - "LinkedService.HBase": HBaseLinkedService, - "LinkedService.Greenplum": GreenplumLinkedService, - "LinkedService.GoogleBigQuery": GoogleBigQueryLinkedService, - "LinkedService.Eloqua": EloquaLinkedService, - "LinkedService.Drill": DrillLinkedService, - "LinkedService.Couchbase": CouchbaseLinkedService, - "LinkedService.Concur": ConcurLinkedService, - "LinkedService.AzurePostgreSql": AzurePostgreSqlLinkedService, - "LinkedService.AmazonMWS": AmazonMWSLinkedService, - "LinkedService.SapHana": SapHanaLinkedService, - "LinkedService.SapBW": SapBWLinkedService, - "LinkedService.Sftp": SftpServerLinkedService, - "LinkedService.FtpServer": FtpServerLinkedService, - "LinkedService.HttpServer": HttpLinkedService, - "LinkedService.AzureSearch": AzureSearchLinkedService, - "LinkedService.CustomDataSource": CustomDataSourceLinkedService, - "LinkedService.AmazonRedshift": AmazonRedshiftLinkedService, - "LinkedService.AmazonS3": AmazonS3LinkedService, - "LinkedService.RestService": RestServiceLinkedService, - "LinkedService.SapOpenHub": SapOpenHubLinkedService, - "LinkedService.SapEcc": SapEccLinkedService, - "LinkedService.SapCloudForCustomer": SapCloudForCustomerLinkedService, - "LinkedService.SalesforceServiceCloud": SalesforceServiceCloudLinkedService, - "LinkedService.Salesforce": SalesforceLinkedService, - "LinkedService.Office365": Office365LinkedService, - "LinkedService.AzureBlobFS": AzureBlobFSLinkedService, - "LinkedService.AzureDataLakeStore": AzureDataLakeStoreLinkedService, - "LinkedService.CosmosDbMongoDbApi": CosmosDbMongoDbApiLinkedService, - "LinkedService.MongoDbV2": MongoDbV2LinkedService, - "LinkedService.MongoDbAtlas": MongoDbAtlasLinkedService, - "LinkedService.MongoDb": MongoDbLinkedService, - "LinkedService.Cassandra": CassandraLinkedService, - "WebLinkedServiceTypeProperties.ClientCertificate": WebClientCertificateAuthentication, - "WebLinkedServiceTypeProperties.Basic": WebBasicAuthentication, - "WebLinkedServiceTypeProperties.Anonymous": WebAnonymousAuthentication, - WebLinkedServiceTypeProperties: WebLinkedServiceTypeProperties, - "LinkedService.Web": WebLinkedService, - "LinkedService.OData": ODataLinkedService, - "LinkedService.Hdfs": HdfsLinkedService, - "LinkedService.MicrosoftAccess": MicrosoftAccessLinkedService, - "LinkedService.Informix": InformixLinkedService, - "LinkedService.Odbc": OdbcLinkedService, - "LinkedService.AzureMLService": AzureMLServiceLinkedService, - "LinkedService.AzureML": AzureMLLinkedService, - "LinkedService.Teradata": TeradataLinkedService, - "LinkedService.Db2": Db2LinkedService, - "LinkedService.Sybase": SybaseLinkedService, - "LinkedService.PostgreSql": PostgreSqlLinkedService, - "LinkedService.MySql": MySqlLinkedService, - "LinkedService.AzureMySql": AzureMySqlLinkedService, - "LinkedService.Oracle": OracleLinkedService, - "LinkedService.GoogleCloudStorage": GoogleCloudStorageLinkedService, - "LinkedService.OracleCloudStorage": OracleCloudStorageLinkedService, - "LinkedService.AmazonS3Compatible": AmazonS3CompatibleLinkedService, - "LinkedService.AzureFileStorage": AzureFileStorageLinkedService, - "LinkedService.FileServer": FileServerLinkedService, - "LinkedService.HDInsight": HDInsightLinkedService, - "LinkedService.CommonDataServiceForApps": CommonDataServiceForAppsLinkedService, - "LinkedService.DynamicsCrm": DynamicsCrmLinkedService, - "LinkedService.Dynamics": DynamicsLinkedService, - "LinkedService.CosmosDb": CosmosDbLinkedService, - "LinkedService.AzureKeyVault": AzureKeyVaultLinkedService, - "LinkedService.AzureBatch": AzureBatchLinkedService, - "LinkedService.AzureSqlMI": AzureSqlMILinkedService, - "LinkedService.AzureSqlDatabase": AzureSqlDatabaseLinkedService, - "LinkedService.SqlServer": SqlServerLinkedService, - "LinkedService.AzureSqlDW": AzureSqlDWLinkedService, - "LinkedService.AzureTableStorage": AzureTableStorageLinkedService, - "LinkedService.AzureBlobStorage": AzureBlobStorageLinkedService, - "LinkedService.AzureStorage": AzureStorageLinkedService, - "Dataset.AzureDatabricksDeltaLakeDataset": AzureDatabricksDeltaLakeDataset, - "Dataset.SharePointOnlineListResource": SharePointOnlineListResourceDataset, - "Dataset.SnowflakeTable": SnowflakeDataset, - "Dataset.GoogleAdWordsObject": GoogleAdWordsObjectDataset, - "Dataset.AzureDataExplorerTable": AzureDataExplorerTableDataset, - "Dataset.OracleServiceCloudObject": OracleServiceCloudObjectDataset, - "Dataset.DynamicsAXResource": DynamicsAXResourceDataset, - "Dataset.ResponsysObject": ResponsysObjectDataset, - "Dataset.SalesforceMarketingCloudObject": SalesforceMarketingCloudObjectDataset, - "Dataset.VerticaTable": VerticaTableDataset, - "Dataset.NetezzaTable": NetezzaTableDataset, - "Dataset.ZohoObject": ZohoObjectDataset, - "Dataset.XeroObject": XeroObjectDataset, - "Dataset.SquareObject": SquareObjectDataset, - "Dataset.SparkObject": SparkObjectDataset, - "Dataset.ShopifyObject": ShopifyObjectDataset, - "Dataset.ServiceNowObject": ServiceNowObjectDataset, - "Dataset.QuickBooksObject": QuickBooksObjectDataset, - "Dataset.PrestoObject": PrestoObjectDataset, - "Dataset.PhoenixObject": PhoenixObjectDataset, - "Dataset.PaypalObject": PaypalObjectDataset, - "Dataset.MarketoObject": MarketoObjectDataset, - "Dataset.AzureMariaDBTable": AzureMariaDBTableDataset, - "Dataset.MariaDBTable": MariaDBTableDataset, - "Dataset.MagentoObject": MagentoObjectDataset, - "Dataset.JiraObject": JiraObjectDataset, - "Dataset.ImpalaObject": ImpalaObjectDataset, - "Dataset.HubspotObject": HubspotObjectDataset, - "Dataset.HiveObject": HiveObjectDataset, - "Dataset.HBaseObject": HBaseObjectDataset, - "Dataset.GreenplumTable": GreenplumTableDataset, - "Dataset.GoogleBigQueryObject": GoogleBigQueryObjectDataset, - "Dataset.EloquaObject": EloquaObjectDataset, - "Dataset.DrillTable": DrillTableDataset, - "Dataset.CouchbaseTable": CouchbaseTableDataset, - "Dataset.ConcurObject": ConcurObjectDataset, - "Dataset.AzurePostgreSqlTable": AzurePostgreSqlTableDataset, - "Dataset.AmazonMWSObject": AmazonMWSObjectDataset, - "DatasetCompression.TarGZip": DatasetTarGZipCompression, - "DatasetCompression.Tar": DatasetTarCompression, - "DatasetCompression.ZipDeflate": DatasetZipDeflateCompression, - "DatasetCompression.Deflate": DatasetDeflateCompression, - "DatasetCompression.GZip": DatasetGZipCompression, - "DatasetCompression.BZip2": DatasetBZip2Compression, - DatasetCompression: DatasetCompression, - "DatasetStorageFormat.ParquetFormat": ParquetFormat, - "DatasetStorageFormat.OrcFormat": OrcFormat, - "DatasetStorageFormat.AvroFormat": AvroFormat, - "DatasetStorageFormat.JsonFormat": JsonFormat, - "DatasetStorageFormat.TextFormat": TextFormat, - DatasetStorageFormat: DatasetStorageFormat, - "Dataset.HttpFile": HttpDataset, - "Dataset.AzureSearchIndex": AzureSearchIndexDataset, - "Dataset.WebTable": WebTableDataset, - "Dataset.SapTableResource": SapTableResourceDataset, - "Dataset.RestResource": RestResourceDataset, - "Dataset.SqlServerTable": SqlServerTableDataset, - "Dataset.SapOpenHubTable": SapOpenHubTableDataset, - "Dataset.SapHanaTable": SapHanaTableDataset, - "Dataset.SapEccResource": SapEccResourceDataset, - "Dataset.SapCloudForCustomerResource": SapCloudForCustomerResourceDataset, - "Dataset.SapBwCube": SapBwCubeDataset, - "Dataset.SybaseTable": SybaseTableDataset, - "Dataset.SalesforceServiceCloudObject": SalesforceServiceCloudObjectDataset, - "Dataset.SalesforceObject": SalesforceObjectDataset, - "Dataset.MicrosoftAccessTable": MicrosoftAccessTableDataset, - "Dataset.PostgreSqlTable": PostgreSqlTableDataset, - "Dataset.MySqlTable": MySqlTableDataset, - "Dataset.OdbcTable": OdbcTableDataset, - "Dataset.InformixTable": InformixTableDataset, - "Dataset.RelationalTable": RelationalTableDataset, - "Dataset.Db2Table": Db2TableDataset, - "Dataset.AmazonRedshiftTable": AmazonRedshiftTableDataset, - "Dataset.AzureMySqlTable": AzureMySqlTableDataset, - "Dataset.TeradataTable": TeradataTableDataset, - "Dataset.OracleTable": OracleTableDataset, - "Dataset.ODataResource": ODataResourceDataset, - "Dataset.CosmosDbMongoDbApiCollection": CosmosDbMongoDbApiCollectionDataset, - "Dataset.MongoDbV2Collection": MongoDbV2CollectionDataset, - "Dataset.MongoDbAtlasCollection": MongoDbAtlasCollectionDataset, - "Dataset.MongoDbCollection": MongoDbCollectionDataset, - "Dataset.FileShare": FileShareDataset, - "Dataset.Office365Table": Office365Dataset, - "Dataset.AzureBlobFSFile": AzureBlobFSDataset, - "Dataset.AzureDataLakeStoreFile": AzureDataLakeStoreDataset, - "Dataset.CommonDataServiceForAppsEntity": CommonDataServiceForAppsEntityDataset, - "Dataset.DynamicsCrmEntity": DynamicsCrmEntityDataset, - "Dataset.DynamicsEntity": DynamicsEntityDataset, - "Dataset.DocumentDbCollection": DocumentDbCollectionDataset, - "Dataset.CosmosDbSqlApiCollection": CosmosDbSqlApiCollectionDataset, - "Dataset.CustomDataset": CustomDataset, - "Dataset.CassandraTable": CassandraTableDataset, - "Dataset.AzureSqlDWTable": AzureSqlDWTableDataset, - "Dataset.AzureSqlMITable": AzureSqlMITableDataset, - "Dataset.AzureSqlTable": AzureSqlTableDataset, - "Dataset.AzureTable": AzureTableDataset, - "Dataset.AzureBlob": AzureBlobDataset, - "DatasetLocation.HdfsLocation": HdfsLocation, - "DatasetLocation.HttpServerLocation": HttpServerLocation, - "DatasetLocation.SftpLocation": SftpLocation, - "DatasetLocation.FtpServerLocation": FtpServerLocation, - "DatasetLocation.GoogleCloudStorageLocation": GoogleCloudStorageLocation, - "DatasetLocation.OracleCloudStorageLocation": OracleCloudStorageLocation, - "DatasetLocation.AmazonS3CompatibleLocation": AmazonS3CompatibleLocation, - "DatasetLocation.AzureFileStorageLocation": AzureFileStorageLocation, - "DatasetLocation.FileServerLocation": FileServerLocation, - "DatasetLocation.AmazonS3Location": AmazonS3Location, - "DatasetLocation.AzureDataLakeStoreLocation": AzureDataLakeStoreLocation, - "DatasetLocation.AzureBlobFSLocation": AzureBlobFSLocation, - "DatasetLocation.AzureBlobStorageLocation": AzureBlobStorageLocation, - DatasetLocation: DatasetLocation, - "Dataset.Binary": BinaryDataset, - "Dataset.Orc": OrcDataset, - "Dataset.Xml": XmlDataset, - "Dataset.Json": JsonDataset, - "Dataset.DelimitedText": DelimitedTextDataset, - "Dataset.Parquet": ParquetDataset, - "Dataset.Excel": ExcelDataset, - "Dataset.Avro": AvroDataset, - "Dataset.AmazonS3Object": AmazonS3Dataset, - "Trigger.ChainingTrigger": ChainingTrigger, - "Trigger.RerunTumblingWindowTrigger": RerunTumblingWindowTrigger, - "DependencyReference.SelfDependencyTumblingWindowTriggerReference": SelfDependencyTumblingWindowTriggerReference, - "DependencyReference.TumblingWindowTriggerDependencyReference": TumblingWindowTriggerDependencyReference, - "DependencyReference.TriggerDependencyReference": TriggerDependencyReference, - DependencyReference: DependencyReference, - "Trigger.TumblingWindowTrigger": TumblingWindowTrigger, - "Trigger.CustomEventsTrigger": CustomEventsTrigger, - "Trigger.BlobEventsTrigger": BlobEventsTrigger, - "Trigger.BlobTrigger": BlobTrigger, - "Trigger.ScheduleTrigger": ScheduleTrigger, - "Trigger.MultiplePipelineTrigger": MultiplePipelineTrigger, - "Activity.ExecuteDataFlow": ExecuteDataFlowActivity, - "Activity.AzureFunctionActivity": AzureFunctionActivity, - "Activity.DatabricksSparkPython": DatabricksSparkPythonActivity, - "Activity.DatabricksSparkJar": DatabricksSparkJarActivity, - "Activity.DatabricksNotebook": DatabricksNotebookActivity, - "Activity.DataLakeAnalyticsU-SQL": DataLakeAnalyticsUSQLActivity, - "Activity.AzureMLExecutePipeline": AzureMLExecutePipelineActivity, - "Activity.AzureMLUpdateResource": AzureMLUpdateResourceActivity, - "Activity.AzureMLBatchExecution": AzureMLBatchExecutionActivity, - "CompressionReadSettings.TarGZipReadSettings": TarGZipReadSettings, - "CompressionReadSettings.TarReadSettings": TarReadSettings, - "CompressionReadSettings.ZipDeflateReadSettings": ZipDeflateReadSettings, - CompressionReadSettings: CompressionReadSettings, - "FormatReadSettings.BinaryReadSettings": BinaryReadSettings, - "FormatReadSettings.XmlReadSettings": XmlReadSettings, - "FormatReadSettings.JsonReadSettings": JsonReadSettings, - "FormatReadSettings.DelimitedTextReadSettings": DelimitedTextReadSettings, - FormatReadSettings: FormatReadSettings, - "StoreReadSettings.HdfsReadSettings": HdfsReadSettings, - "StoreReadSettings.HttpReadSettings": HttpReadSettings, - "StoreReadSettings.SftpReadSettings": SftpReadSettings, - "StoreReadSettings.FtpReadSettings": FtpReadSettings, - "StoreReadSettings.GoogleCloudStorageReadSettings": GoogleCloudStorageReadSettings, - "StoreReadSettings.OracleCloudStorageReadSettings": OracleCloudStorageReadSettings, - "StoreReadSettings.AmazonS3CompatibleReadSettings": AmazonS3CompatibleReadSettings, - "StoreReadSettings.AzureFileStorageReadSettings": AzureFileStorageReadSettings, - "StoreReadSettings.FileServerReadSettings": FileServerReadSettings, - "StoreReadSettings.AmazonS3ReadSettings": AmazonS3ReadSettings, - "StoreReadSettings.AzureDataLakeStoreReadSettings": AzureDataLakeStoreReadSettings, - "StoreReadSettings.AzureBlobFSReadSettings": AzureBlobFSReadSettings, - "StoreReadSettings.AzureBlobStorageReadSettings": AzureBlobStorageReadSettings, - StoreReadSettings: StoreReadSettings, - "Activity.GetMetadata": GetMetadataActivity, - "Activity.WebActivity": WebActivity, - "CopySource.SharePointOnlineListSource": SharePointOnlineListSource, - "ExportSettings.SnowflakeExportCopyCommand": SnowflakeExportCopyCommand, - ExportSettings: ExportSettings, - "ExportSettings.AzureDatabricksDeltaLakeExportCommand": AzureDatabricksDeltaLakeExportCommand, - "CopySource.AzureDatabricksDeltaLakeSource": AzureDatabricksDeltaLakeSource, - "CopySource.SnowflakeSource": SnowflakeSource, - "CopySource.HttpSource": HttpSource, - "CopySource.AzureBlobFSSource": AzureBlobFSSource, - "CopySource.AzureDataLakeStoreSource": AzureDataLakeStoreSource, - "CopySource.Office365Source": Office365Source, - "CopySource.CosmosDbMongoDbApiSource": CosmosDbMongoDbApiSource, - "CopySource.MongoDbV2Source": MongoDbV2Source, - "CopySource.MongoDbAtlasSource": MongoDbAtlasSource, - "CopySource.MongoDbSource": MongoDbSource, - "CopySource.WebSource": WebSource, - "CopySource.OracleSource": OracleSource, - "CopySource.AzureDataExplorerSource": AzureDataExplorerSource, - "CopySource.HdfsSource": HdfsSource, - "CopySource.FileSystemSource": FileSystemSource, - "CopySource.RestSource": RestSource, - "CopySource.SalesforceServiceCloudSource": SalesforceServiceCloudSource, - "CopySource.ODataSource": ODataSource, - "CopySource.MicrosoftAccessSource": MicrosoftAccessSource, - "CopySource.RelationalSource": RelationalSource, - "CopySource.CommonDataServiceForAppsSource": CommonDataServiceForAppsSource, - "CopySource.DynamicsCrmSource": DynamicsCrmSource, - "CopySource.DynamicsSource": DynamicsSource, - "CopySource.CosmosDbSqlApiSource": CosmosDbSqlApiSource, - "CopySource.DocumentDbCollectionSource": DocumentDbCollectionSource, - "CopySource.BlobSource": BlobSource, - "CopySource.AmazonRedshiftSource": AmazonRedshiftSource, - "CopySource.GoogleAdWordsSource": GoogleAdWordsSource, - "CopySource.OracleServiceCloudSource": OracleServiceCloudSource, - "CopySource.DynamicsAXSource": DynamicsAXSource, - "CopySource.ResponsysSource": ResponsysSource, - "CopySource.SalesforceMarketingCloudSource": SalesforceMarketingCloudSource, - "CopySource.VerticaSource": VerticaSource, - "CopySource.NetezzaSource": NetezzaSource, - "CopySource.ZohoSource": ZohoSource, - "CopySource.XeroSource": XeroSource, - "CopySource.SquareSource": SquareSource, - "CopySource.SparkSource": SparkSource, - "CopySource.ShopifySource": ShopifySource, - "CopySource.ServiceNowSource": ServiceNowSource, - "CopySource.QuickBooksSource": QuickBooksSource, - "CopySource.PrestoSource": PrestoSource, - "CopySource.PhoenixSource": PhoenixSource, - "CopySource.PaypalSource": PaypalSource, - "CopySource.MarketoSource": MarketoSource, - "CopySource.AzureMariaDBSource": AzureMariaDBSource, - "CopySource.MariaDBSource": MariaDBSource, - "CopySource.MagentoSource": MagentoSource, - "CopySource.JiraSource": JiraSource, - "CopySource.ImpalaSource": ImpalaSource, - "CopySource.HubspotSource": HubspotSource, - "CopySource.HiveSource": HiveSource, - "CopySource.HBaseSource": HBaseSource, - "CopySource.GreenplumSource": GreenplumSource, - "CopySource.GoogleBigQuerySource": GoogleBigQuerySource, - "CopySource.EloquaSource": EloquaSource, - "CopySource.DrillSource": DrillSource, - "CopySource.CouchbaseSource": CouchbaseSource, - "CopySource.ConcurSource": ConcurSource, - "CopySource.AzurePostgreSqlSource": AzurePostgreSqlSource, - "CopySource.AmazonMWSSource": AmazonMWSSource, - "CopySource.CassandraSource": CassandraSource, - "CopySource.TeradataSource": TeradataSource, - "CopySource.AzureMySqlSource": AzureMySqlSource, - "CopySource.SqlDWSource": SqlDWSource, - "CopySource.SqlMISource": SqlMISource, - "CopySource.AzureSqlSource": AzureSqlSource, - "CopySource.SqlServerSource": SqlServerSource, - "CopySource.SqlSource": SqlSource, - "CopySource.SapTableSource": SapTableSource, - "CopySource.SapOpenHubSource": SapOpenHubSource, - "CopySource.SapHanaSource": SapHanaSource, - "CopySource.SapEccSource": SapEccSource, - "CopySource.SapCloudForCustomerSource": SapCloudForCustomerSource, - "CopySource.SalesforceSource": SalesforceSource, - "CopySource.SapBwSource": SapBwSource, - "CopySource.SybaseSource": SybaseSource, - "CopySource.PostgreSqlSource": PostgreSqlSource, - "CopySource.MySqlSource": MySqlSource, - "CopySource.OdbcSource": OdbcSource, - "CopySource.Db2Source": Db2Source, - "CopySource.InformixSource": InformixSource, - "CopySource.AzureTableSource": AzureTableSource, - "CopySource.TabularSource": TabularSource, - "CopySource.BinarySource": BinarySource, - "CopySource.OrcSource": OrcSource, - "CopySource.XmlSource": XmlSource, - "CopySource.JsonSource": JsonSource, - "CopySource.DelimitedTextSource": DelimitedTextSource, - "CopySource.ParquetSource": ParquetSource, - "CopySource.ExcelSource": ExcelSource, - "CopySource.AvroSource": AvroSource, - CopySource: CopySource, - "Activity.Lookup": LookupActivity, - "Activity.AzureDataExplorerCommand": AzureDataExplorerCommandActivity, - "Activity.Delete": DeleteActivity, - "Activity.SqlServerStoredProcedure": SqlServerStoredProcedureActivity, - "Activity.Custom": CustomActivity, - "Activity.ExecuteSSISPackage": ExecuteSSISPackageActivity, - "Activity.HDInsightSpark": HDInsightSparkActivity, - "Activity.HDInsightStreaming": HDInsightStreamingActivity, - "Activity.HDInsightMapReduce": HDInsightMapReduceActivity, - "Activity.HDInsightPig": HDInsightPigActivity, - "Activity.HDInsightHive": HDInsightHiveActivity, - "CopySink.CosmosDbMongoDbApiSink": CosmosDbMongoDbApiSink, - "CopySink.MongoDbV2Sink": MongoDbV2Sink, - "CopySink.MongoDbAtlasSink": MongoDbAtlasSink, - "CopySink.SalesforceServiceCloudSink": SalesforceServiceCloudSink, - "CopySink.SalesforceSink": SalesforceSink, - "CopySink.AzureDataExplorerSink": AzureDataExplorerSink, - "CopySink.CommonDataServiceForAppsSink": CommonDataServiceForAppsSink, - "CopySink.DynamicsCrmSink": DynamicsCrmSink, - "CopySink.DynamicsSink": DynamicsSink, - "CopySink.MicrosoftAccessSink": MicrosoftAccessSink, - "CopySink.InformixSink": InformixSink, - "CopySink.OdbcSink": OdbcSink, - "CopySink.AzureSearchIndexSink": AzureSearchIndexSink, - "CopySink.AzureBlobFSSink": AzureBlobFSSink, - "CopySink.AzureDataLakeStoreSink": AzureDataLakeStoreSink, - "CopySink.OracleSink": OracleSink, - "ImportSettings.AzureDatabricksDeltaLakeImportCommand": AzureDatabricksDeltaLakeImportCommand, - ImportSettings: ImportSettings, - "ImportSettings.SnowflakeImportCopyCommand": SnowflakeImportCopyCommand, - "CopySink.SnowflakeSink": SnowflakeSink, - "CopySink.SqlDWSink": SqlDWSink, - "CopySink.SqlMISink": SqlMISink, - "CopySink.AzureSqlSink": AzureSqlSink, - "CopySink.SqlServerSink": SqlServerSink, - "CopySink.SqlSink": SqlSink, - "CopySink.CosmosDbSqlApiSink": CosmosDbSqlApiSink, - "CopySink.DocumentDbCollectionSink": DocumentDbCollectionSink, - "CopySink.FileSystemSink": FileSystemSink, - "CopySink.BlobSink": BlobSink, - "StoreWriteSettings.AzureFileStorageWriteSettings": AzureFileStorageWriteSettings, - "StoreWriteSettings.FileServerWriteSettings": FileServerWriteSettings, - "StoreWriteSettings.AzureDataLakeStoreWriteSettings": AzureDataLakeStoreWriteSettings, - "StoreWriteSettings.AzureBlobFSWriteSettings": AzureBlobFSWriteSettings, - "StoreWriteSettings.AzureBlobStorageWriteSettings": AzureBlobStorageWriteSettings, - "StoreWriteSettings.SftpWriteSettings": SftpWriteSettings, - StoreWriteSettings: StoreWriteSettings, - "CopySink.BinarySink": BinarySink, - "FormatWriteSettings.JsonWriteSettings": JsonWriteSettings, - "FormatWriteSettings.DelimitedTextWriteSettings": DelimitedTextWriteSettings, - "FormatWriteSettings.OrcWriteSettings": OrcWriteSettings, - "FormatWriteSettings.AvroWriteSettings": AvroWriteSettings, - FormatWriteSettings: FormatWriteSettings, - "FormatWriteSettings.ParquetWriteSettings": ParquetWriteSettings, - "CopySink.ParquetSink": ParquetSink, - "CopySink.AvroSink": AvroSink, - "CopySink.AzureTableSink": AzureTableSink, - "CopySink.AzureQueueSink": AzureQueueSink, - "CopySink.SapCloudForCustomerSink": SapCloudForCustomerSink, - "CopySink.AzureDatabricksDeltaLakeSink": AzureDatabricksDeltaLakeSink, - "CopySink.AzureMySqlSink": AzureMySqlSink, - "CopySink.AzurePostgreSqlSink": AzurePostgreSqlSink, - "CopySink.RestSink": RestSink, - "CopySink.OrcSink": OrcSink, - "CopySink.JsonSink": JsonSink, - "CopySink.DelimitedTextSink": DelimitedTextSink, - CopySink: CopySink, - "Activity.Copy": CopyActivity, - "Activity.Execution": ExecutionActivity, - "Activity.WebHook": WebHookActivity, - "Activity.AppendVariable": AppendVariableActivity, - "Activity.SetVariable": SetVariableActivity, - "Activity.Filter": FilterActivity, - "Activity.Validation": ValidationActivity, - "Activity.Until": UntilActivity, - "Activity.Wait": WaitActivity, - "Activity.ForEach": ForEachActivity, - "Activity.Switch": SwitchActivity, - "Activity.IfCondition": IfConditionActivity, - "Activity.ExecutePipeline": ExecutePipelineActivity, - "Activity.Container": ControlActivity, - "IntegrationRuntimeStatus.SelfHosted": SelfHostedIntegrationRuntimeStatus, - "IntegrationRuntimeStatus.Managed": ManagedIntegrationRuntimeStatus, - "LinkedIntegrationRuntimeType.RBAC": LinkedIntegrationRuntimeRbacAuthorization, - "LinkedIntegrationRuntimeType.Key": LinkedIntegrationRuntimeKeyAuthorization, - LinkedIntegrationRuntimeType: LinkedIntegrationRuntimeType, - "IntegrationRuntime.SelfHosted": SelfHostedIntegrationRuntime, - "CustomSetupBase.AzPowerShellSetup": AzPowerShellSetup, - "CustomSetupBase.ComponentSetup": ComponentSetup, - "CustomSetupBase.EnvironmentVariableSetup": EnvironmentVariableSetup, - "CustomSetupBase.CmdkeySetup": CmdkeySetup, - CustomSetupBase: CustomSetupBase, - "IntegrationRuntime.Managed": ManagedIntegrationRuntime, - "SsisObjectMetadata.Environment": SsisEnvironment, - "SsisObjectMetadata.Package": SsisPackage, - "SsisObjectMetadata.Project": SsisProject, - "SsisObjectMetadata.Folder": SsisFolder, - SsisObjectMetadata: SsisObjectMetadata, - CopyTranslator: CopyTranslator, - "CopyTranslator.TabularTranslator": TabularTranslator + 'SecretBase.SecureString' : SecureString, + 'SecretBase.AzureKeyVaultSecret' : AzureKeyVaultSecretReference, + 'SecretBase' : SecretBase, + 'FactoryRepoConfiguration' : FactoryRepoConfiguration, + 'IntegrationRuntime' : IntegrationRuntime, + 'IntegrationRuntimeStatus' : IntegrationRuntimeStatus, + 'LinkedService' : LinkedService, + 'Dataset' : Dataset, + 'Activity' : Activity, + 'Trigger' : Trigger, + 'FactoryRepoConfiguration.FactoryVSTSConfiguration' : FactoryVSTSConfiguration, + 'FactoryRepoConfiguration.FactoryGitHubConfiguration' : FactoryGitHubConfiguration, + 'DataFlow' : DataFlow, + 'Credential' : Credential, + 'Credential.ManagedIdentity' : ManagedIdentityCredential, + 'Credential.ServicePrincipal' : ServicePrincipalCredential, + 'DataFlow.MappingDataFlow' : MappingDataFlow, + 'LinkedService.SharePointOnlineList' : SharePointOnlineListLinkedService, + 'LinkedService.Snowflake' : SnowflakeLinkedService, + 'LinkedService.AzureFunction' : AzureFunctionLinkedService, + 'LinkedService.AzureDataExplorer' : AzureDataExplorerLinkedService, + 'LinkedService.SapTable' : SapTableLinkedService, + 'LinkedService.GoogleAdWords' : GoogleAdWordsLinkedService, + 'LinkedService.OracleServiceCloud' : OracleServiceCloudLinkedService, + 'LinkedService.DynamicsAX' : DynamicsAXLinkedService, + 'LinkedService.Responsys' : ResponsysLinkedService, + 'LinkedService.AzureDatabricksDeltaLake' : AzureDatabricksDeltaLakeLinkedService, + 'LinkedService.AzureDatabricks' : AzureDatabricksLinkedService, + 'LinkedService.AzureDataLakeAnalytics' : AzureDataLakeAnalyticsLinkedService, + 'LinkedService.HDInsightOnDemand' : HDInsightOnDemandLinkedService, + 'LinkedService.SalesforceMarketingCloud' : SalesforceMarketingCloudLinkedService, + 'LinkedService.Netezza' : NetezzaLinkedService, + 'LinkedService.Vertica' : VerticaLinkedService, + 'LinkedService.Zoho' : ZohoLinkedService, + 'LinkedService.Xero' : XeroLinkedService, + 'LinkedService.Square' : SquareLinkedService, + 'LinkedService.Spark' : SparkLinkedService, + 'LinkedService.Shopify' : ShopifyLinkedService, + 'LinkedService.ServiceNow' : ServiceNowLinkedService, + 'LinkedService.QuickBooks' : QuickBooksLinkedService, + 'LinkedService.Presto' : PrestoLinkedService, + 'LinkedService.Phoenix' : PhoenixLinkedService, + 'LinkedService.Paypal' : PaypalLinkedService, + 'LinkedService.Marketo' : MarketoLinkedService, + 'LinkedService.AzureMariaDB' : AzureMariaDBLinkedService, + 'LinkedService.MariaDB' : MariaDBLinkedService, + 'LinkedService.Magento' : MagentoLinkedService, + 'LinkedService.Jira' : JiraLinkedService, + 'LinkedService.Impala' : ImpalaLinkedService, + 'LinkedService.Hubspot' : HubspotLinkedService, + 'LinkedService.Hive' : HiveLinkedService, + 'LinkedService.HBase' : HBaseLinkedService, + 'LinkedService.Greenplum' : GreenplumLinkedService, + 'LinkedService.GoogleBigQuery' : GoogleBigQueryLinkedService, + 'LinkedService.Eloqua' : EloquaLinkedService, + 'LinkedService.Drill' : DrillLinkedService, + 'LinkedService.Couchbase' : CouchbaseLinkedService, + 'LinkedService.Concur' : ConcurLinkedService, + 'LinkedService.AzurePostgreSql' : AzurePostgreSqlLinkedService, + 'LinkedService.AmazonMWS' : AmazonMWSLinkedService, + 'LinkedService.SapHana' : SapHanaLinkedService, + 'LinkedService.SapBW' : SapBWLinkedService, + 'LinkedService.Sftp' : SftpServerLinkedService, + 'LinkedService.FtpServer' : FtpServerLinkedService, + 'LinkedService.HttpServer' : HttpLinkedService, + 'LinkedService.AzureSearch' : AzureSearchLinkedService, + 'LinkedService.CustomDataSource' : CustomDataSourceLinkedService, + 'LinkedService.AmazonRedshift' : AmazonRedshiftLinkedService, + 'LinkedService.AmazonS3' : AmazonS3LinkedService, + 'LinkedService.RestService' : RestServiceLinkedService, + 'LinkedService.SapOpenHub' : SapOpenHubLinkedService, + 'LinkedService.SapEcc' : SapEccLinkedService, + 'LinkedService.SapCloudForCustomer' : SapCloudForCustomerLinkedService, + 'LinkedService.SalesforceServiceCloud' : SalesforceServiceCloudLinkedService, + 'LinkedService.Salesforce' : SalesforceLinkedService, + 'LinkedService.Office365' : Office365LinkedService, + 'LinkedService.AzureBlobFS' : AzureBlobFSLinkedService, + 'LinkedService.AzureDataLakeStore' : AzureDataLakeStoreLinkedService, + 'LinkedService.CosmosDbMongoDbApi' : CosmosDbMongoDbApiLinkedService, + 'LinkedService.MongoDbV2' : MongoDbV2LinkedService, + 'LinkedService.MongoDbAtlas' : MongoDbAtlasLinkedService, + 'LinkedService.MongoDb' : MongoDbLinkedService, + 'LinkedService.Cassandra' : CassandraLinkedService, + 'WebLinkedServiceTypeProperties.ClientCertificate' : WebClientCertificateAuthentication, + 'WebLinkedServiceTypeProperties.Basic' : WebBasicAuthentication, + 'WebLinkedServiceTypeProperties.Anonymous' : WebAnonymousAuthentication, + 'WebLinkedServiceTypeProperties' : WebLinkedServiceTypeProperties, + 'LinkedService.Web' : WebLinkedService, + 'LinkedService.OData' : ODataLinkedService, + 'LinkedService.Hdfs' : HdfsLinkedService, + 'LinkedService.MicrosoftAccess' : MicrosoftAccessLinkedService, + 'LinkedService.Informix' : InformixLinkedService, + 'LinkedService.Odbc' : OdbcLinkedService, + 'LinkedService.AzureMLService' : AzureMLServiceLinkedService, + 'LinkedService.AzureML' : AzureMLLinkedService, + 'LinkedService.Teradata' : TeradataLinkedService, + 'LinkedService.Db2' : Db2LinkedService, + 'LinkedService.Sybase' : SybaseLinkedService, + 'LinkedService.PostgreSql' : PostgreSqlLinkedService, + 'LinkedService.MySql' : MySqlLinkedService, + 'LinkedService.AzureMySql' : AzureMySqlLinkedService, + 'LinkedService.Oracle' : OracleLinkedService, + 'LinkedService.GoogleCloudStorage' : GoogleCloudStorageLinkedService, + 'LinkedService.OracleCloudStorage' : OracleCloudStorageLinkedService, + 'LinkedService.AmazonS3Compatible' : AmazonS3CompatibleLinkedService, + 'LinkedService.AzureFileStorage' : AzureFileStorageLinkedService, + 'LinkedService.FileServer' : FileServerLinkedService, + 'LinkedService.HDInsight' : HDInsightLinkedService, + 'LinkedService.CommonDataServiceForApps' : CommonDataServiceForAppsLinkedService, + 'LinkedService.DynamicsCrm' : DynamicsCrmLinkedService, + 'LinkedService.Dynamics' : DynamicsLinkedService, + 'LinkedService.CosmosDb' : CosmosDbLinkedService, + 'LinkedService.AzureKeyVault' : AzureKeyVaultLinkedService, + 'LinkedService.AzureBatch' : AzureBatchLinkedService, + 'LinkedService.AzureSqlMI' : AzureSqlMILinkedService, + 'LinkedService.AzureSqlDatabase' : AzureSqlDatabaseLinkedService, + 'LinkedService.SqlServer' : SqlServerLinkedService, + 'LinkedService.AzureSqlDW' : AzureSqlDWLinkedService, + 'LinkedService.AzureTableStorage' : AzureTableStorageLinkedService, + 'LinkedService.AzureBlobStorage' : AzureBlobStorageLinkedService, + 'LinkedService.AzureStorage' : AzureStorageLinkedService, + 'Dataset.AzureDatabricksDeltaLakeDataset' : AzureDatabricksDeltaLakeDataset, + 'Dataset.SharePointOnlineListResource' : SharePointOnlineListResourceDataset, + 'Dataset.SnowflakeTable' : SnowflakeDataset, + 'Dataset.GoogleAdWordsObject' : GoogleAdWordsObjectDataset, + 'Dataset.AzureDataExplorerTable' : AzureDataExplorerTableDataset, + 'Dataset.OracleServiceCloudObject' : OracleServiceCloudObjectDataset, + 'Dataset.DynamicsAXResource' : DynamicsAXResourceDataset, + 'Dataset.ResponsysObject' : ResponsysObjectDataset, + 'Dataset.SalesforceMarketingCloudObject' : SalesforceMarketingCloudObjectDataset, + 'Dataset.VerticaTable' : VerticaTableDataset, + 'Dataset.NetezzaTable' : NetezzaTableDataset, + 'Dataset.ZohoObject' : ZohoObjectDataset, + 'Dataset.XeroObject' : XeroObjectDataset, + 'Dataset.SquareObject' : SquareObjectDataset, + 'Dataset.SparkObject' : SparkObjectDataset, + 'Dataset.ShopifyObject' : ShopifyObjectDataset, + 'Dataset.ServiceNowObject' : ServiceNowObjectDataset, + 'Dataset.QuickBooksObject' : QuickBooksObjectDataset, + 'Dataset.PrestoObject' : PrestoObjectDataset, + 'Dataset.PhoenixObject' : PhoenixObjectDataset, + 'Dataset.PaypalObject' : PaypalObjectDataset, + 'Dataset.MarketoObject' : MarketoObjectDataset, + 'Dataset.AzureMariaDBTable' : AzureMariaDBTableDataset, + 'Dataset.MariaDBTable' : MariaDBTableDataset, + 'Dataset.MagentoObject' : MagentoObjectDataset, + 'Dataset.JiraObject' : JiraObjectDataset, + 'Dataset.ImpalaObject' : ImpalaObjectDataset, + 'Dataset.HubspotObject' : HubspotObjectDataset, + 'Dataset.HiveObject' : HiveObjectDataset, + 'Dataset.HBaseObject' : HBaseObjectDataset, + 'Dataset.GreenplumTable' : GreenplumTableDataset, + 'Dataset.GoogleBigQueryObject' : GoogleBigQueryObjectDataset, + 'Dataset.EloquaObject' : EloquaObjectDataset, + 'Dataset.DrillTable' : DrillTableDataset, + 'Dataset.CouchbaseTable' : CouchbaseTableDataset, + 'Dataset.ConcurObject' : ConcurObjectDataset, + 'Dataset.AzurePostgreSqlTable' : AzurePostgreSqlTableDataset, + 'Dataset.AmazonMWSObject' : AmazonMWSObjectDataset, + 'DatasetCompression.TarGZip' : DatasetTarGZipCompression, + 'DatasetCompression.Tar' : DatasetTarCompression, + 'DatasetCompression.ZipDeflate' : DatasetZipDeflateCompression, + 'DatasetCompression.Deflate' : DatasetDeflateCompression, + 'DatasetCompression.GZip' : DatasetGZipCompression, + 'DatasetCompression.BZip2' : DatasetBZip2Compression, + 'DatasetCompression' : DatasetCompression, + 'DatasetStorageFormat.ParquetFormat' : ParquetFormat, + 'DatasetStorageFormat.OrcFormat' : OrcFormat, + 'DatasetStorageFormat.AvroFormat' : AvroFormat, + 'DatasetStorageFormat.JsonFormat' : JsonFormat, + 'DatasetStorageFormat.TextFormat' : TextFormat, + 'DatasetStorageFormat' : DatasetStorageFormat, + 'Dataset.HttpFile' : HttpDataset, + 'Dataset.AzureSearchIndex' : AzureSearchIndexDataset, + 'Dataset.WebTable' : WebTableDataset, + 'Dataset.SapTableResource' : SapTableResourceDataset, + 'Dataset.RestResource' : RestResourceDataset, + 'Dataset.SqlServerTable' : SqlServerTableDataset, + 'Dataset.SapOpenHubTable' : SapOpenHubTableDataset, + 'Dataset.SapHanaTable' : SapHanaTableDataset, + 'Dataset.SapEccResource' : SapEccResourceDataset, + 'Dataset.SapCloudForCustomerResource' : SapCloudForCustomerResourceDataset, + 'Dataset.SapBwCube' : SapBwCubeDataset, + 'Dataset.SybaseTable' : SybaseTableDataset, + 'Dataset.SalesforceServiceCloudObject' : SalesforceServiceCloudObjectDataset, + 'Dataset.SalesforceObject' : SalesforceObjectDataset, + 'Dataset.MicrosoftAccessTable' : MicrosoftAccessTableDataset, + 'Dataset.PostgreSqlTable' : PostgreSqlTableDataset, + 'Dataset.MySqlTable' : MySqlTableDataset, + 'Dataset.OdbcTable' : OdbcTableDataset, + 'Dataset.InformixTable' : InformixTableDataset, + 'Dataset.RelationalTable' : RelationalTableDataset, + 'Dataset.Db2Table' : Db2TableDataset, + 'Dataset.AmazonRedshiftTable' : AmazonRedshiftTableDataset, + 'Dataset.AzureMySqlTable' : AzureMySqlTableDataset, + 'Dataset.TeradataTable' : TeradataTableDataset, + 'Dataset.OracleTable' : OracleTableDataset, + 'Dataset.ODataResource' : ODataResourceDataset, + 'Dataset.CosmosDbMongoDbApiCollection' : CosmosDbMongoDbApiCollectionDataset, + 'Dataset.MongoDbV2Collection' : MongoDbV2CollectionDataset, + 'Dataset.MongoDbAtlasCollection' : MongoDbAtlasCollectionDataset, + 'Dataset.MongoDbCollection' : MongoDbCollectionDataset, + 'Dataset.FileShare' : FileShareDataset, + 'Dataset.Office365Table' : Office365Dataset, + 'Dataset.AzureBlobFSFile' : AzureBlobFSDataset, + 'Dataset.AzureDataLakeStoreFile' : AzureDataLakeStoreDataset, + 'Dataset.CommonDataServiceForAppsEntity' : CommonDataServiceForAppsEntityDataset, + 'Dataset.DynamicsCrmEntity' : DynamicsCrmEntityDataset, + 'Dataset.DynamicsEntity' : DynamicsEntityDataset, + 'Dataset.DocumentDbCollection' : DocumentDbCollectionDataset, + 'Dataset.CosmosDbSqlApiCollection' : CosmosDbSqlApiCollectionDataset, + 'Dataset.CustomDataset' : CustomDataset, + 'Dataset.CassandraTable' : CassandraTableDataset, + 'Dataset.AzureSqlDWTable' : AzureSqlDWTableDataset, + 'Dataset.AzureSqlMITable' : AzureSqlMITableDataset, + 'Dataset.AzureSqlTable' : AzureSqlTableDataset, + 'Dataset.AzureTable' : AzureTableDataset, + 'Dataset.AzureBlob' : AzureBlobDataset, + 'DatasetLocation.HdfsLocation' : HdfsLocation, + 'DatasetLocation.HttpServerLocation' : HttpServerLocation, + 'DatasetLocation.SftpLocation' : SftpLocation, + 'DatasetLocation.FtpServerLocation' : FtpServerLocation, + 'DatasetLocation.GoogleCloudStorageLocation' : GoogleCloudStorageLocation, + 'DatasetLocation.OracleCloudStorageLocation' : OracleCloudStorageLocation, + 'DatasetLocation.AmazonS3CompatibleLocation' : AmazonS3CompatibleLocation, + 'DatasetLocation.AzureFileStorageLocation' : AzureFileStorageLocation, + 'DatasetLocation.FileServerLocation' : FileServerLocation, + 'DatasetLocation.AmazonS3Location' : AmazonS3Location, + 'DatasetLocation.AzureDataLakeStoreLocation' : AzureDataLakeStoreLocation, + 'DatasetLocation.AzureBlobFSLocation' : AzureBlobFSLocation, + 'DatasetLocation.AzureBlobStorageLocation' : AzureBlobStorageLocation, + 'DatasetLocation' : DatasetLocation, + 'Dataset.Binary' : BinaryDataset, + 'Dataset.Orc' : OrcDataset, + 'Dataset.Xml' : XmlDataset, + 'Dataset.Json' : JsonDataset, + 'Dataset.DelimitedText' : DelimitedTextDataset, + 'Dataset.Parquet' : ParquetDataset, + 'Dataset.Excel' : ExcelDataset, + 'Dataset.Avro' : AvroDataset, + 'Dataset.AmazonS3Object' : AmazonS3Dataset, + 'Trigger.ChainingTrigger' : ChainingTrigger, + 'Trigger.RerunTumblingWindowTrigger' : RerunTumblingWindowTrigger, + 'DependencyReference.SelfDependencyTumblingWindowTriggerReference' : SelfDependencyTumblingWindowTriggerReference, + 'DependencyReference.TumblingWindowTriggerDependencyReference' : TumblingWindowTriggerDependencyReference, + 'DependencyReference.TriggerDependencyReference' : TriggerDependencyReference, + 'DependencyReference' : DependencyReference, + 'Trigger.TumblingWindowTrigger' : TumblingWindowTrigger, + 'Trigger.CustomEventsTrigger' : CustomEventsTrigger, + 'Trigger.BlobEventsTrigger' : BlobEventsTrigger, + 'Trigger.BlobTrigger' : BlobTrigger, + 'Trigger.ScheduleTrigger' : ScheduleTrigger, + 'Trigger.MultiplePipelineTrigger' : MultiplePipelineTrigger, + 'Activity.ExecuteDataFlow' : ExecuteDataFlowActivity, + 'Activity.AzureFunctionActivity' : AzureFunctionActivity, + 'Activity.DatabricksSparkPython' : DatabricksSparkPythonActivity, + 'Activity.DatabricksSparkJar' : DatabricksSparkJarActivity, + 'Activity.DatabricksNotebook' : DatabricksNotebookActivity, + 'Activity.DataLakeAnalyticsU-SQL' : DataLakeAnalyticsUSQLActivity, + 'Activity.AzureMLExecutePipeline' : AzureMLExecutePipelineActivity, + 'Activity.AzureMLUpdateResource' : AzureMLUpdateResourceActivity, + 'Activity.AzureMLBatchExecution' : AzureMLBatchExecutionActivity, + 'CompressionReadSettings.TarGZipReadSettings' : TarGZipReadSettings, + 'CompressionReadSettings.TarReadSettings' : TarReadSettings, + 'CompressionReadSettings.ZipDeflateReadSettings' : ZipDeflateReadSettings, + 'CompressionReadSettings' : CompressionReadSettings, + 'FormatReadSettings.BinaryReadSettings' : BinaryReadSettings, + 'FormatReadSettings.XmlReadSettings' : XmlReadSettings, + 'FormatReadSettings.JsonReadSettings' : JsonReadSettings, + 'FormatReadSettings.DelimitedTextReadSettings' : DelimitedTextReadSettings, + 'FormatReadSettings' : FormatReadSettings, + 'StoreReadSettings.HdfsReadSettings' : HdfsReadSettings, + 'StoreReadSettings.HttpReadSettings' : HttpReadSettings, + 'StoreReadSettings.SftpReadSettings' : SftpReadSettings, + 'StoreReadSettings.FtpReadSettings' : FtpReadSettings, + 'StoreReadSettings.GoogleCloudStorageReadSettings' : GoogleCloudStorageReadSettings, + 'StoreReadSettings.OracleCloudStorageReadSettings' : OracleCloudStorageReadSettings, + 'StoreReadSettings.AmazonS3CompatibleReadSettings' : AmazonS3CompatibleReadSettings, + 'StoreReadSettings.AzureFileStorageReadSettings' : AzureFileStorageReadSettings, + 'StoreReadSettings.FileServerReadSettings' : FileServerReadSettings, + 'StoreReadSettings.AmazonS3ReadSettings' : AmazonS3ReadSettings, + 'StoreReadSettings.AzureDataLakeStoreReadSettings' : AzureDataLakeStoreReadSettings, + 'StoreReadSettings.AzureBlobFSReadSettings' : AzureBlobFSReadSettings, + 'StoreReadSettings.AzureBlobStorageReadSettings' : AzureBlobStorageReadSettings, + 'StoreReadSettings' : StoreReadSettings, + 'Activity.GetMetadata' : GetMetadataActivity, + 'Activity.WebActivity' : WebActivity, + 'CopySource.SharePointOnlineListSource' : SharePointOnlineListSource, + 'ExportSettings.SnowflakeExportCopyCommand' : SnowflakeExportCopyCommand, + 'ExportSettings' : ExportSettings, + 'ExportSettings.AzureDatabricksDeltaLakeExportCommand' : AzureDatabricksDeltaLakeExportCommand, + 'CopySource.AzureDatabricksDeltaLakeSource' : AzureDatabricksDeltaLakeSource, + 'CopySource.SnowflakeSource' : SnowflakeSource, + 'CopySource.HttpSource' : HttpSource, + 'CopySource.AzureBlobFSSource' : AzureBlobFSSource, + 'CopySource.AzureDataLakeStoreSource' : AzureDataLakeStoreSource, + 'CopySource.Office365Source' : Office365Source, + 'CopySource.CosmosDbMongoDbApiSource' : CosmosDbMongoDbApiSource, + 'CopySource.MongoDbV2Source' : MongoDbV2Source, + 'CopySource.MongoDbAtlasSource' : MongoDbAtlasSource, + 'CopySource.MongoDbSource' : MongoDbSource, + 'CopySource.WebSource' : WebSource, + 'CopySource.OracleSource' : OracleSource, + 'CopySource.AzureDataExplorerSource' : AzureDataExplorerSource, + 'CopySource.HdfsSource' : HdfsSource, + 'CopySource.FileSystemSource' : FileSystemSource, + 'CopySource.RestSource' : RestSource, + 'CopySource.SalesforceServiceCloudSource' : SalesforceServiceCloudSource, + 'CopySource.ODataSource' : ODataSource, + 'CopySource.MicrosoftAccessSource' : MicrosoftAccessSource, + 'CopySource.RelationalSource' : RelationalSource, + 'CopySource.CommonDataServiceForAppsSource' : CommonDataServiceForAppsSource, + 'CopySource.DynamicsCrmSource' : DynamicsCrmSource, + 'CopySource.DynamicsSource' : DynamicsSource, + 'CopySource.CosmosDbSqlApiSource' : CosmosDbSqlApiSource, + 'CopySource.DocumentDbCollectionSource' : DocumentDbCollectionSource, + 'CopySource.BlobSource' : BlobSource, + 'CopySource.AmazonRedshiftSource' : AmazonRedshiftSource, + 'CopySource.GoogleAdWordsSource' : GoogleAdWordsSource, + 'CopySource.OracleServiceCloudSource' : OracleServiceCloudSource, + 'CopySource.DynamicsAXSource' : DynamicsAXSource, + 'CopySource.ResponsysSource' : ResponsysSource, + 'CopySource.SalesforceMarketingCloudSource' : SalesforceMarketingCloudSource, + 'CopySource.VerticaSource' : VerticaSource, + 'CopySource.NetezzaSource' : NetezzaSource, + 'CopySource.ZohoSource' : ZohoSource, + 'CopySource.XeroSource' : XeroSource, + 'CopySource.SquareSource' : SquareSource, + 'CopySource.SparkSource' : SparkSource, + 'CopySource.ShopifySource' : ShopifySource, + 'CopySource.ServiceNowSource' : ServiceNowSource, + 'CopySource.QuickBooksSource' : QuickBooksSource, + 'CopySource.PrestoSource' : PrestoSource, + 'CopySource.PhoenixSource' : PhoenixSource, + 'CopySource.PaypalSource' : PaypalSource, + 'CopySource.MarketoSource' : MarketoSource, + 'CopySource.AzureMariaDBSource' : AzureMariaDBSource, + 'CopySource.MariaDBSource' : MariaDBSource, + 'CopySource.MagentoSource' : MagentoSource, + 'CopySource.JiraSource' : JiraSource, + 'CopySource.ImpalaSource' : ImpalaSource, + 'CopySource.HubspotSource' : HubspotSource, + 'CopySource.HiveSource' : HiveSource, + 'CopySource.HBaseSource' : HBaseSource, + 'CopySource.GreenplumSource' : GreenplumSource, + 'CopySource.GoogleBigQuerySource' : GoogleBigQuerySource, + 'CopySource.EloquaSource' : EloquaSource, + 'CopySource.DrillSource' : DrillSource, + 'CopySource.CouchbaseSource' : CouchbaseSource, + 'CopySource.ConcurSource' : ConcurSource, + 'CopySource.AzurePostgreSqlSource' : AzurePostgreSqlSource, + 'CopySource.AmazonMWSSource' : AmazonMWSSource, + 'CopySource.CassandraSource' : CassandraSource, + 'CopySource.TeradataSource' : TeradataSource, + 'CopySource.AzureMySqlSource' : AzureMySqlSource, + 'CopySource.SqlDWSource' : SqlDWSource, + 'CopySource.SqlMISource' : SqlMISource, + 'CopySource.AzureSqlSource' : AzureSqlSource, + 'CopySource.SqlServerSource' : SqlServerSource, + 'CopySource.SqlSource' : SqlSource, + 'CopySource.SapTableSource' : SapTableSource, + 'CopySource.SapOpenHubSource' : SapOpenHubSource, + 'CopySource.SapHanaSource' : SapHanaSource, + 'CopySource.SapEccSource' : SapEccSource, + 'CopySource.SapCloudForCustomerSource' : SapCloudForCustomerSource, + 'CopySource.SalesforceSource' : SalesforceSource, + 'CopySource.SapBwSource' : SapBwSource, + 'CopySource.SybaseSource' : SybaseSource, + 'CopySource.PostgreSqlSource' : PostgreSqlSource, + 'CopySource.MySqlSource' : MySqlSource, + 'CopySource.OdbcSource' : OdbcSource, + 'CopySource.Db2Source' : Db2Source, + 'CopySource.InformixSource' : InformixSource, + 'CopySource.AzureTableSource' : AzureTableSource, + 'CopySource.TabularSource' : TabularSource, + 'CopySource.BinarySource' : BinarySource, + 'CopySource.OrcSource' : OrcSource, + 'CopySource.XmlSource' : XmlSource, + 'CopySource.JsonSource' : JsonSource, + 'CopySource.DelimitedTextSource' : DelimitedTextSource, + 'CopySource.ParquetSource' : ParquetSource, + 'CopySource.ExcelSource' : ExcelSource, + 'CopySource.AvroSource' : AvroSource, + 'CopySource' : CopySource, + 'Activity.Lookup' : LookupActivity, + 'Activity.AzureDataExplorerCommand' : AzureDataExplorerCommandActivity, + 'Activity.Delete' : DeleteActivity, + 'Activity.SqlServerStoredProcedure' : SqlServerStoredProcedureActivity, + 'Activity.Custom' : CustomActivity, + 'Activity.ExecuteSSISPackage' : ExecuteSSISPackageActivity, + 'Activity.HDInsightSpark' : HDInsightSparkActivity, + 'Activity.HDInsightStreaming' : HDInsightStreamingActivity, + 'Activity.HDInsightMapReduce' : HDInsightMapReduceActivity, + 'Activity.HDInsightPig' : HDInsightPigActivity, + 'Activity.HDInsightHive' : HDInsightHiveActivity, + 'CopySink.CosmosDbMongoDbApiSink' : CosmosDbMongoDbApiSink, + 'CopySink.MongoDbV2Sink' : MongoDbV2Sink, + 'CopySink.MongoDbAtlasSink' : MongoDbAtlasSink, + 'CopySink.SalesforceServiceCloudSink' : SalesforceServiceCloudSink, + 'CopySink.SalesforceSink' : SalesforceSink, + 'CopySink.AzureDataExplorerSink' : AzureDataExplorerSink, + 'CopySink.CommonDataServiceForAppsSink' : CommonDataServiceForAppsSink, + 'CopySink.DynamicsCrmSink' : DynamicsCrmSink, + 'CopySink.DynamicsSink' : DynamicsSink, + 'CopySink.MicrosoftAccessSink' : MicrosoftAccessSink, + 'CopySink.InformixSink' : InformixSink, + 'CopySink.OdbcSink' : OdbcSink, + 'CopySink.AzureSearchIndexSink' : AzureSearchIndexSink, + 'CopySink.AzureBlobFSSink' : AzureBlobFSSink, + 'CopySink.AzureDataLakeStoreSink' : AzureDataLakeStoreSink, + 'CopySink.OracleSink' : OracleSink, + 'ImportSettings.AzureDatabricksDeltaLakeImportCommand' : AzureDatabricksDeltaLakeImportCommand, + 'ImportSettings' : ImportSettings, + 'ImportSettings.SnowflakeImportCopyCommand' : SnowflakeImportCopyCommand, + 'CopySink.SnowflakeSink' : SnowflakeSink, + 'CopySink.SqlDWSink' : SqlDWSink, + 'CopySink.SqlMISink' : SqlMISink, + 'CopySink.AzureSqlSink' : AzureSqlSink, + 'CopySink.SqlServerSink' : SqlServerSink, + 'CopySink.SqlSink' : SqlSink, + 'CopySink.CosmosDbSqlApiSink' : CosmosDbSqlApiSink, + 'CopySink.DocumentDbCollectionSink' : DocumentDbCollectionSink, + 'CopySink.FileSystemSink' : FileSystemSink, + 'CopySink.BlobSink' : BlobSink, + 'StoreWriteSettings.AzureFileStorageWriteSettings' : AzureFileStorageWriteSettings, + 'StoreWriteSettings.FileServerWriteSettings' : FileServerWriteSettings, + 'StoreWriteSettings.AzureDataLakeStoreWriteSettings' : AzureDataLakeStoreWriteSettings, + 'StoreWriteSettings.AzureBlobFSWriteSettings' : AzureBlobFSWriteSettings, + 'StoreWriteSettings.AzureBlobStorageWriteSettings' : AzureBlobStorageWriteSettings, + 'StoreWriteSettings.SftpWriteSettings' : SftpWriteSettings, + 'StoreWriteSettings' : StoreWriteSettings, + 'CopySink.BinarySink' : BinarySink, + 'FormatWriteSettings.JsonWriteSettings' : JsonWriteSettings, + 'FormatWriteSettings.DelimitedTextWriteSettings' : DelimitedTextWriteSettings, + 'FormatWriteSettings.OrcWriteSettings' : OrcWriteSettings, + 'FormatWriteSettings.AvroWriteSettings' : AvroWriteSettings, + 'FormatWriteSettings' : FormatWriteSettings, + 'FormatWriteSettings.ParquetWriteSettings' : ParquetWriteSettings, + 'CopySink.ParquetSink' : ParquetSink, + 'CopySink.AvroSink' : AvroSink, + 'CopySink.AzureTableSink' : AzureTableSink, + 'CopySink.AzureQueueSink' : AzureQueueSink, + 'CopySink.SapCloudForCustomerSink' : SapCloudForCustomerSink, + 'CopySink.AzureDatabricksDeltaLakeSink' : AzureDatabricksDeltaLakeSink, + 'CopySink.AzureMySqlSink' : AzureMySqlSink, + 'CopySink.AzurePostgreSqlSink' : AzurePostgreSqlSink, + 'CopySink.RestSink' : RestSink, + 'CopySink.OrcSink' : OrcSink, + 'CopySink.JsonSink' : JsonSink, + 'CopySink.DelimitedTextSink' : DelimitedTextSink, + 'CopySink' : CopySink, + 'Activity.Copy' : CopyActivity, + 'Activity.Execution' : ExecutionActivity, + 'Activity.WebHook' : WebHookActivity, + 'Activity.AppendVariable' : AppendVariableActivity, + 'Activity.SetVariable' : SetVariableActivity, + 'Activity.Filter' : FilterActivity, + 'Activity.Validation' : ValidationActivity, + 'Activity.Until' : UntilActivity, + 'Activity.Wait' : WaitActivity, + 'Activity.ForEach' : ForEachActivity, + 'Activity.Switch' : SwitchActivity, + 'Activity.IfCondition' : IfConditionActivity, + 'Activity.ExecutePipeline' : ExecutePipelineActivity, + 'Activity.Container' : ControlActivity, + 'IntegrationRuntimeStatus.SelfHosted' : SelfHostedIntegrationRuntimeStatus, + 'IntegrationRuntimeStatus.Managed' : ManagedIntegrationRuntimeStatus, + 'LinkedIntegrationRuntimeType.RBAC' : LinkedIntegrationRuntimeRbacAuthorization, + 'LinkedIntegrationRuntimeType.Key' : LinkedIntegrationRuntimeKeyAuthorization, + 'LinkedIntegrationRuntimeType' : LinkedIntegrationRuntimeType, + 'IntegrationRuntime.SelfHosted' : SelfHostedIntegrationRuntime, + 'CustomSetupBase.AzPowerShellSetup' : AzPowerShellSetup, + 'CustomSetupBase.ComponentSetup' : ComponentSetup, + 'CustomSetupBase.EnvironmentVariableSetup' : EnvironmentVariableSetup, + 'CustomSetupBase.CmdkeySetup' : CmdkeySetup, + 'CustomSetupBase' : CustomSetupBase, + 'IntegrationRuntime.Managed' : ManagedIntegrationRuntime, + 'SsisObjectMetadata.Environment' : SsisEnvironment, + 'SsisObjectMetadata.Package' : SsisPackage, + 'SsisObjectMetadata.Project' : SsisProject, + 'SsisObjectMetadata.Folder' : SsisFolder, + 'SsisObjectMetadata' : SsisObjectMetadata, + 'CopyTranslator' : CopyTranslator, + 'CopyTranslator.TabularTranslator' : TabularTranslator + }; diff --git a/sdk/datafactory/arm-datafactory/src/models/parameters.ts b/sdk/datafactory/arm-datafactory/src/models/parameters.ts index 64c4719300b6..158556d6684b 100644 --- a/sdk/datafactory/arm-datafactory/src/models/parameters.ts +++ b/sdk/datafactory/arm-datafactory/src/models/parameters.ts @@ -13,7 +13,7 @@ export const acceptLanguage: msRest.OperationParameter = { parameterPath: "acceptLanguage", mapper: { serializedName: "accept-language", - defaultValue: "en-US", + defaultValue: 'en-US', type: { name: "String" } @@ -75,7 +75,10 @@ export const factoryName: msRest.OperationURLParameter = { } }; export const ifMatch: msRest.OperationParameter = { - parameterPath: ["options", "ifMatch"], + parameterPath: [ + "options", + "ifMatch" + ], mapper: { serializedName: "If-Match", type: { @@ -84,7 +87,10 @@ export const ifMatch: msRest.OperationParameter = { } }; export const ifNoneMatch: msRest.OperationParameter = { - parameterPath: ["options", "ifNoneMatch"], + parameterPath: [ + "options", + "ifNoneMatch" + ], mapper: { serializedName: "If-None-Match", type: { @@ -108,7 +114,10 @@ export const integrationRuntimeName: msRest.OperationURLParameter = { } }; export const isRecovery: msRest.OperationQueryParameter = { - parameterPath: ["options", "isRecovery"], + parameterPath: [ + "options", + "isRecovery" + ], mapper: { serializedName: "isRecovery", type: { @@ -117,7 +126,10 @@ export const isRecovery: msRest.OperationQueryParameter = { } }; export const isRecursive: msRest.OperationQueryParameter = { - parameterPath: ["options", "isRecursive"], + parameterPath: [ + "options", + "isRecursive" + ], mapper: { serializedName: "isRecursive", type: { @@ -232,7 +244,10 @@ export const privateEndpointConnectionName: msRest.OperationURLParameter = { } }; export const referencePipelineRunId: msRest.OperationQueryParameter = { - parameterPath: ["options", "referencePipelineRunId"], + parameterPath: [ + "options", + "referencePipelineRunId" + ], mapper: { serializedName: "referencePipelineRunId", type: { @@ -266,7 +281,10 @@ export const runId: msRest.OperationURLParameter = { } }; export const startActivityName: msRest.OperationQueryParameter = { - parameterPath: ["options", "startActivityName"], + parameterPath: [ + "options", + "startActivityName" + ], mapper: { serializedName: "startActivityName", type: { @@ -275,7 +293,10 @@ export const startActivityName: msRest.OperationQueryParameter = { } }; export const startFromFailure: msRest.OperationQueryParameter = { - parameterPath: ["options", "startFromFailure"], + parameterPath: [ + "options", + "startFromFailure" + ], mapper: { serializedName: "startFromFailure", type: { diff --git a/sdk/datafactory/arm-datafactory/src/models/pipelinesMappers.ts b/sdk/datafactory/arm-datafactory/src/models/pipelinesMappers.ts index 7cebc9c51591..f9d9ba110227 100644 --- a/sdk/datafactory/arm-datafactory/src/models/pipelinesMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/pipelinesMappers.ts @@ -151,6 +151,9 @@ export { CouchbaseSource, CouchbaseTableDataset, CreateRunResponse, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -325,6 +328,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointResource, @@ -483,6 +487,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/privateEndPointConnectionsMappers.ts b/sdk/datafactory/arm-datafactory/src/models/privateEndPointConnectionsMappers.ts index 797eec0f7556..e8a72c593bff 100644 --- a/sdk/datafactory/arm-datafactory/src/models/privateEndPointConnectionsMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/privateEndPointConnectionsMappers.ts @@ -150,6 +150,9 @@ export { CouchbaseLinkedService, CouchbaseSource, CouchbaseTableDataset, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -324,6 +327,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointResource, @@ -482,6 +486,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/privateEndpointConnectionMappers.ts b/sdk/datafactory/arm-datafactory/src/models/privateEndpointConnectionMappers.ts index e6cd1fbefe1a..7b2d28de68cd 100644 --- a/sdk/datafactory/arm-datafactory/src/models/privateEndpointConnectionMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/privateEndpointConnectionMappers.ts @@ -150,6 +150,9 @@ export { CouchbaseLinkedService, CouchbaseSource, CouchbaseTableDataset, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -324,6 +327,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointResource, @@ -481,6 +485,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/privateLinkResourcesMappers.ts b/sdk/datafactory/arm-datafactory/src/models/privateLinkResourcesMappers.ts index 94e608b9f668..764f759ec143 100644 --- a/sdk/datafactory/arm-datafactory/src/models/privateLinkResourcesMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/privateLinkResourcesMappers.ts @@ -150,6 +150,9 @@ export { CouchbaseLinkedService, CouchbaseSource, CouchbaseTableDataset, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -324,6 +327,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointResource, @@ -482,6 +486,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/models/triggersMappers.ts b/sdk/datafactory/arm-datafactory/src/models/triggersMappers.ts index a95b28c7df0e..dc5cf7f36844 100644 --- a/sdk/datafactory/arm-datafactory/src/models/triggersMappers.ts +++ b/sdk/datafactory/arm-datafactory/src/models/triggersMappers.ts @@ -150,6 +150,9 @@ export { CouchbaseLinkedService, CouchbaseSource, CouchbaseTableDataset, + Credential, + CredentialReference, + CredentialResource, CustomActivity, CustomActivityReferenceObject, CustomDataset, @@ -324,6 +327,7 @@ export { MagentoLinkedService, MagentoObjectDataset, MagentoSource, + ManagedIdentityCredential, ManagedIntegrationRuntime, ManagedPrivateEndpoint, ManagedPrivateEndpointResource, @@ -481,6 +485,7 @@ export { ServiceNowLinkedService, ServiceNowObjectDataset, ServiceNowSource, + ServicePrincipalCredential, SetVariableActivity, SftpLocation, SftpReadSettings, diff --git a/sdk/datafactory/arm-datafactory/src/operations/privateEndPointConnections.ts b/sdk/datafactory/arm-datafactory/src/operations/privateEndPointConnections.ts index 6ecb22f7f398..751efc651879 100644 --- a/sdk/datafactory/arm-datafactory/src/operations/privateEndPointConnections.ts +++ b/sdk/datafactory/arm-datafactory/src/operations/privateEndPointConnections.ts @@ -32,41 +32,21 @@ export class PrivateEndPointConnections { * @param [options] The optional parameters * @returns Promise */ - listByFactory( - resourceGroupName: string, - factoryName: string, - options?: msRest.RequestOptionsBase - ): Promise; + listByFactory(resourceGroupName: string, factoryName: string, options?: msRest.RequestOptionsBase): Promise; /** * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param callback The callback */ - listByFactory( - resourceGroupName: string, - factoryName: string, - callback: msRest.ServiceCallback - ): void; + listByFactory(resourceGroupName: string, factoryName: string, callback: msRest.ServiceCallback): void; /** * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param options The optional parameters * @param callback The callback */ - listByFactory( - resourceGroupName: string, - factoryName: string, - options: msRest.RequestOptionsBase, - callback: msRest.ServiceCallback - ): void; - listByFactory( - resourceGroupName: string, - factoryName: string, - options?: - | msRest.RequestOptionsBase - | msRest.ServiceCallback, - callback?: msRest.ServiceCallback - ): Promise { + listByFactory(resourceGroupName: string, factoryName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; + listByFactory(resourceGroupName: string, factoryName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { resourceGroupName, @@ -74,8 +54,7 @@ export class PrivateEndPointConnections { options }, listByFactoryOperationSpec, - callback - ) as Promise; + callback) as Promise; } /** @@ -84,43 +63,26 @@ export class PrivateEndPointConnections { * @param [options] The optional parameters * @returns Promise */ - listByFactoryNext( - nextPageLink: string, - options?: msRest.RequestOptionsBase - ): Promise; + listByFactoryNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback */ - listByFactoryNext( - nextPageLink: string, - callback: msRest.ServiceCallback - ): void; + listByFactoryNext(nextPageLink: string, callback: msRest.ServiceCallback): void; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param options The optional parameters * @param callback The callback */ - listByFactoryNext( - nextPageLink: string, - options: msRest.RequestOptionsBase, - callback: msRest.ServiceCallback - ): void; - listByFactoryNext( - nextPageLink: string, - options?: - | msRest.RequestOptionsBase - | msRest.ServiceCallback, - callback?: msRest.ServiceCallback - ): Promise { + listByFactoryNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; + listByFactoryNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, options }, listByFactoryNextOperationSpec, - callback - ) as Promise; + callback) as Promise; } } @@ -128,11 +90,18 @@ export class PrivateEndPointConnections { const serializer = new msRest.Serializer(Mappers); const listByFactoryOperationSpec: msRest.OperationSpec = { httpMethod: "GET", - path: - "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/privateEndPointConnections", - urlParameters: [Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.factoryName], - queryParameters: [Parameters.apiVersion], - headerParameters: [Parameters.acceptLanguage], + path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/privateEndPointConnections", + urlParameters: [ + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.factoryName + ], + queryParameters: [ + Parameters.apiVersion + ], + headerParameters: [ + Parameters.acceptLanguage + ], responses: { 200: { bodyMapper: Mappers.PrivateEndpointConnectionListResponse @@ -148,9 +117,15 @@ const listByFactoryNextOperationSpec: msRest.OperationSpec = { httpMethod: "GET", baseUrl: "https://management.azure.com", path: "{nextLink}", - urlParameters: [Parameters.nextPageLink], - queryParameters: [Parameters.apiVersion], - headerParameters: [Parameters.acceptLanguage], + urlParameters: [ + Parameters.nextPageLink + ], + queryParameters: [ + Parameters.apiVersion + ], + headerParameters: [ + Parameters.acceptLanguage + ], responses: { 200: { bodyMapper: Mappers.PrivateEndpointConnectionListResponse diff --git a/sdk/datafactory/arm-datafactory/src/operations/privateEndpointConnection.ts b/sdk/datafactory/arm-datafactory/src/operations/privateEndpointConnection.ts index 6576ea9e71f6..65c5df5c6942 100644 --- a/sdk/datafactory/arm-datafactory/src/operations/privateEndpointConnection.ts +++ b/sdk/datafactory/arm-datafactory/src/operations/privateEndpointConnection.ts @@ -34,13 +34,7 @@ export class PrivateEndpointConnection { * @param [options] The optional parameters * @returns Promise */ - createOrUpdate( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - privateEndpointWrapper: Models.PrivateLinkConnectionApprovalRequestResource, - options?: Models.PrivateEndpointConnectionCreateOrUpdateOptionalParams - ): Promise; + createOrUpdate(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, privateEndpointWrapper: Models.PrivateLinkConnectionApprovalRequestResource, options?: Models.PrivateEndpointConnectionCreateOrUpdateOptionalParams): Promise; /** * @param resourceGroupName The resource group name. * @param factoryName The factory name. @@ -48,13 +42,7 @@ export class PrivateEndpointConnection { * @param privateEndpointWrapper * @param callback The callback */ - createOrUpdate( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - privateEndpointWrapper: Models.PrivateLinkConnectionApprovalRequestResource, - callback: msRest.ServiceCallback - ): void; + createOrUpdate(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, privateEndpointWrapper: Models.PrivateLinkConnectionApprovalRequestResource, callback: msRest.ServiceCallback): void; /** * @param resourceGroupName The resource group name. * @param factoryName The factory name. @@ -63,24 +51,8 @@ export class PrivateEndpointConnection { * @param options The optional parameters * @param callback The callback */ - createOrUpdate( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - privateEndpointWrapper: Models.PrivateLinkConnectionApprovalRequestResource, - options: Models.PrivateEndpointConnectionCreateOrUpdateOptionalParams, - callback: msRest.ServiceCallback - ): void; - createOrUpdate( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - privateEndpointWrapper: Models.PrivateLinkConnectionApprovalRequestResource, - options?: - | Models.PrivateEndpointConnectionCreateOrUpdateOptionalParams - | msRest.ServiceCallback, - callback?: msRest.ServiceCallback - ): Promise { + createOrUpdate(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, privateEndpointWrapper: Models.PrivateLinkConnectionApprovalRequestResource, options: Models.PrivateEndpointConnectionCreateOrUpdateOptionalParams, callback: msRest.ServiceCallback): void; + createOrUpdate(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, privateEndpointWrapper: Models.PrivateLinkConnectionApprovalRequestResource, options?: Models.PrivateEndpointConnectionCreateOrUpdateOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { resourceGroupName, @@ -90,8 +62,7 @@ export class PrivateEndpointConnection { options }, createOrUpdateOperationSpec, - callback - ) as Promise; + callback) as Promise; } /** @@ -102,24 +73,14 @@ export class PrivateEndpointConnection { * @param [options] The optional parameters * @returns Promise */ - get( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - options?: Models.PrivateEndpointConnectionGetOptionalParams - ): Promise; + get(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, options?: Models.PrivateEndpointConnectionGetOptionalParams): Promise; /** * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param privateEndpointConnectionName The private endpoint connection name. * @param callback The callback */ - get( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - callback: msRest.ServiceCallback - ): void; + get(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, callback: msRest.ServiceCallback): void; /** * @param resourceGroupName The resource group name. * @param factoryName The factory name. @@ -127,22 +88,8 @@ export class PrivateEndpointConnection { * @param options The optional parameters * @param callback The callback */ - get( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - options: Models.PrivateEndpointConnectionGetOptionalParams, - callback: msRest.ServiceCallback - ): void; - get( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - options?: - | Models.PrivateEndpointConnectionGetOptionalParams - | msRest.ServiceCallback, - callback?: msRest.ServiceCallback - ): Promise { + get(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, options: Models.PrivateEndpointConnectionGetOptionalParams, callback: msRest.ServiceCallback): void; + get(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, options?: Models.PrivateEndpointConnectionGetOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { resourceGroupName, @@ -151,8 +98,7 @@ export class PrivateEndpointConnection { options }, getOperationSpec, - callback - ) as Promise; + callback) as Promise; } /** @@ -163,24 +109,14 @@ export class PrivateEndpointConnection { * @param [options] The optional parameters * @returns Promise */ - deleteMethod( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - options?: msRest.RequestOptionsBase - ): Promise; + deleteMethod(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, options?: msRest.RequestOptionsBase): Promise; /** * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param privateEndpointConnectionName The private endpoint connection name. * @param callback The callback */ - deleteMethod( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - callback: msRest.ServiceCallback - ): void; + deleteMethod(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, callback: msRest.ServiceCallback): void; /** * @param resourceGroupName The resource group name. * @param factoryName The factory name. @@ -188,20 +124,8 @@ export class PrivateEndpointConnection { * @param options The optional parameters * @param callback The callback */ - deleteMethod( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - options: msRest.RequestOptionsBase, - callback: msRest.ServiceCallback - ): void; - deleteMethod( - resourceGroupName: string, - factoryName: string, - privateEndpointConnectionName: string, - options?: msRest.RequestOptionsBase | msRest.ServiceCallback, - callback?: msRest.ServiceCallback - ): Promise { + deleteMethod(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; + deleteMethod(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { resourceGroupName, @@ -210,8 +134,7 @@ export class PrivateEndpointConnection { options }, deleteMethodOperationSpec, - callback - ); + callback); } } @@ -219,16 +142,20 @@ export class PrivateEndpointConnection { const serializer = new msRest.Serializer(Mappers); const createOrUpdateOperationSpec: msRest.OperationSpec = { httpMethod: "PUT", - path: - "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/privateEndpointConnections/{privateEndpointConnectionName}", + path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/privateEndpointConnections/{privateEndpointConnectionName}", urlParameters: [ Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.factoryName, Parameters.privateEndpointConnectionName ], - queryParameters: [Parameters.apiVersion], - headerParameters: [Parameters.ifMatch, Parameters.acceptLanguage], + queryParameters: [ + Parameters.apiVersion + ], + headerParameters: [ + Parameters.ifMatch, + Parameters.acceptLanguage + ], requestBody: { parameterPath: "privateEndpointWrapper", mapper: { @@ -249,16 +176,20 @@ const createOrUpdateOperationSpec: msRest.OperationSpec = { const getOperationSpec: msRest.OperationSpec = { httpMethod: "GET", - path: - "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/privateEndpointConnections/{privateEndpointConnectionName}", + path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/privateEndpointConnections/{privateEndpointConnectionName}", urlParameters: [ Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.factoryName, Parameters.privateEndpointConnectionName ], - queryParameters: [Parameters.apiVersion], - headerParameters: [Parameters.ifNoneMatch, Parameters.acceptLanguage], + queryParameters: [ + Parameters.apiVersion + ], + headerParameters: [ + Parameters.ifNoneMatch, + Parameters.acceptLanguage + ], responses: { 200: { bodyMapper: Mappers.PrivateEndpointConnectionResource @@ -272,16 +203,19 @@ const getOperationSpec: msRest.OperationSpec = { const deleteMethodOperationSpec: msRest.OperationSpec = { httpMethod: "DELETE", - path: - "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/privateEndpointConnections/{privateEndpointConnectionName}", + path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/privateEndpointConnections/{privateEndpointConnectionName}", urlParameters: [ Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.factoryName, Parameters.privateEndpointConnectionName ], - queryParameters: [Parameters.apiVersion], - headerParameters: [Parameters.acceptLanguage], + queryParameters: [ + Parameters.apiVersion + ], + headerParameters: [ + Parameters.acceptLanguage + ], responses: { 200: {}, 204: {}, diff --git a/sdk/datafactory/arm-datafactory/src/operations/privateLinkResources.ts b/sdk/datafactory/arm-datafactory/src/operations/privateLinkResources.ts index 07992707d107..1d6c1abe8bc1 100644 --- a/sdk/datafactory/arm-datafactory/src/operations/privateLinkResources.ts +++ b/sdk/datafactory/arm-datafactory/src/operations/privateLinkResources.ts @@ -32,41 +32,21 @@ export class PrivateLinkResources { * @param [options] The optional parameters * @returns Promise */ - get( - resourceGroupName: string, - factoryName: string, - options?: msRest.RequestOptionsBase - ): Promise; + get(resourceGroupName: string, factoryName: string, options?: msRest.RequestOptionsBase): Promise; /** * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param callback The callback */ - get( - resourceGroupName: string, - factoryName: string, - callback: msRest.ServiceCallback - ): void; + get(resourceGroupName: string, factoryName: string, callback: msRest.ServiceCallback): void; /** * @param resourceGroupName The resource group name. * @param factoryName The factory name. * @param options The optional parameters * @param callback The callback */ - get( - resourceGroupName: string, - factoryName: string, - options: msRest.RequestOptionsBase, - callback: msRest.ServiceCallback - ): void; - get( - resourceGroupName: string, - factoryName: string, - options?: - | msRest.RequestOptionsBase - | msRest.ServiceCallback, - callback?: msRest.ServiceCallback - ): Promise { + get(resourceGroupName: string, factoryName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; + get(resourceGroupName: string, factoryName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { resourceGroupName, @@ -74,8 +54,7 @@ export class PrivateLinkResources { options }, getOperationSpec, - callback - ) as Promise; + callback) as Promise; } } @@ -83,11 +62,18 @@ export class PrivateLinkResources { const serializer = new msRest.Serializer(Mappers); const getOperationSpec: msRest.OperationSpec = { httpMethod: "GET", - path: - "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/privateLinkResources", - urlParameters: [Parameters.subscriptionId, Parameters.resourceGroupName, Parameters.factoryName], - queryParameters: [Parameters.apiVersion], - headerParameters: [Parameters.acceptLanguage], + path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/privateLinkResources", + urlParameters: [ + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.factoryName + ], + queryParameters: [ + Parameters.apiVersion + ], + headerParameters: [ + Parameters.acceptLanguage + ], responses: { 200: { bodyMapper: Mappers.PrivateLinkResourcesWrapper