diff --git a/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClient.ts b/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClient.ts index 7180eb938511..60f7da4874dc 100644 --- a/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClient.ts +++ b/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClient.ts @@ -13,6 +13,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; @@ -42,11 +43,7 @@ class DataFactoryManagementClient extends DataFactoryManagementClientContext { * @param subscriptionId The subscription identifier. * @param [options] The parameter options */ - constructor( - credentials: msRest.ServiceClientCredentials, - subscriptionId: string, - options?: Models.DataFactoryManagementClientOptions - ) { + constructor(credentials: msRest.ServiceClientCredentials, 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 223fd97b7691..291898cfdcbf 100644 --- a/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClientContext.ts +++ b/sdk/datafactory/arm-datafactory/src/dataFactoryManagementClientContext.ts @@ -25,43 +25,36 @@ export class DataFactoryManagementClientContext extends msRestAzure.AzureService * @param subscriptionId The subscription identifier. * @param [options] The parameter options */ - constructor( - credentials: msRest.ServiceClientCredentials, - subscriptionId: string, - options?: Models.DataFactoryManagementClientOptions - ) { + constructor(credentials: msRest.ServiceClientCredentials, 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) { options = {}; } - if (!options.userAgent) { + if(!options.userAgent) { const defaultUserAgent = msRestAzure.getDefaultUserAgentValue(); options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`; } 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"; this.credentials = credentials; this.subscriptionId = subscriptionId; - if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) { + 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/index.ts b/sdk/datafactory/arm-datafactory/src/models/index.ts index 6bdff5c1950b..448be9e82982 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 @@ -6654,11 +6445,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 @@ -10497,14 +10284,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. @@ -10599,13 +10379,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. @@ -13059,21 +12833,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. @@ -13763,9 +13523,14 @@ export interface ExcelDataset { */ location: DatasetLocationUnion; /** - * The sheet of excel file. Type: string (or Expression with resultType string). + * The sheet name of excel file. Type: string (or Expression with resultType string). */ - sheetName: any; + sheetName?: any; + /** + * The sheet index of excel file and default value is 0. Type: integer (or Expression with + * resultType integer) + */ + sheetIndex?: any; /** * The partial data of one sheet. Type: string (or Expression with resultType string). */ @@ -13993,10 +13758,7 @@ export interface RerunTumblingWindowTrigger { /** * Contains the possible cases for DependencyReference. */ -export type DependencyReferenceUnion = - | DependencyReference - | SelfDependencyTumblingWindowTriggerReference - | TriggerDependencyReferenceUnion; +export type DependencyReferenceUnion = DependencyReference | SelfDependencyTumblingWindowTriggerReference | TriggerDependencyReferenceUnion; /** * Referenced dependency. @@ -14040,9 +13802,7 @@ export interface TriggerReference { /** * Contains the possible cases for TriggerDependencyReference. */ -export type TriggerDependencyReferenceUnion = - | TriggerDependencyReference - | TumblingWindowTriggerDependencyReference; +export type TriggerDependencyReferenceUnion = TriggerDependencyReference | TumblingWindowTriggerDependencyReference; /** * Trigger referenced dependency. @@ -14165,12 +13925,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. @@ -14510,31 +14265,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. @@ -15099,11 +14830,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. @@ -15167,12 +14894,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. @@ -15295,21 +15017,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. @@ -16234,44 +15942,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. @@ -16339,10 +16010,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. @@ -17512,65 +17180,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. @@ -20940,15 +20550,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. */ @@ -21417,47 +21023,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. @@ -22163,10 +21729,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. @@ -22793,14 +22356,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. @@ -23005,13 +22561,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. @@ -23762,19 +23312,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. @@ -24646,10 +24184,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. @@ -24710,7 +24245,7 @@ export interface SelfHostedIntegrationRuntime { export interface EntityReference { /** * The type of this referenced entity. Possible values include: 'IntegrationRuntimeReference', - * 'LinkedServiceReference' + * 'LinkedServiceReference', 'CredentialReference' */ type?: IntegrationRuntimeEntityReferenceType; /** @@ -24736,12 +24271,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. @@ -24923,6 +24453,10 @@ export interface IntegrationRuntimeSsisProperties { * Package stores for the SSIS Integration Runtime. */ packageStores?: PackageStore[]; + /** + * The user-assigned managed identity reference. + */ + managedCredential?: EntityReference; /** * Describes unknown properties. The value of an unknown property can be of "any" type. */ @@ -25092,12 +24626,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. @@ -25651,8 +25180,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. */ @@ -25813,8 +25341,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. @@ -25836,8 +25363,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. @@ -25859,8 +25385,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. @@ -26043,8 +25568,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. */ @@ -26057,7 +25581,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. @@ -26065,7 +25589,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. @@ -26073,7 +25597,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. @@ -26082,17 +25606,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. @@ -26100,7 +25614,7 @@ export type IntegrationRuntimeState = * @readonly * @enum {string} */ -export type IntegrationRuntimeAutoUpdate = "On" | "Off"; +export type IntegrationRuntimeAutoUpdate = 'On' | 'Off'; /** * Defines values for ParameterType. @@ -26108,14 +25622,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. @@ -26123,7 +25630,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. @@ -26131,7 +25638,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. @@ -26139,7 +25646,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. @@ -26147,12 +25654,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. @@ -26162,19 +25664,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. @@ -26182,7 +25672,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. @@ -26191,16 +25681,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. @@ -26208,7 +25689,7 @@ export type RunQueryOrderByField = * @readonly * @enum {string} */ -export type RunQueryOrder = "ASC" | "DESC"; +export type RunQueryOrder = 'ASC' | 'DESC'; /** * Defines values for TriggerRunStatus. @@ -26216,7 +25697,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. @@ -26225,10 +25706,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. @@ -26236,7 +25714,7 @@ export type DataFlowDebugCommandType = * @readonly * @enum {string} */ -export type GoogleAdWordsAuthenticationType = "ServiceAuthentication" | "UserAuthentication"; +export type GoogleAdWordsAuthenticationType = 'ServiceAuthentication' | 'UserAuthentication'; /** * Defines values for SparkServerType. @@ -26244,7 +25722,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. @@ -26252,7 +25730,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. @@ -26261,11 +25739,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. @@ -26273,7 +25747,7 @@ export type SparkAuthenticationType = * @readonly * @enum {string} */ -export type ServiceNowAuthenticationType = "Basic" | "OAuth2"; +export type ServiceNowAuthenticationType = 'Basic' | 'OAuth2'; /** * Defines values for PrestoAuthenticationType. @@ -26281,7 +25755,7 @@ export type ServiceNowAuthenticationType = "Basic" | "OAuth2"; * @readonly * @enum {string} */ -export type PrestoAuthenticationType = "Anonymous" | "LDAP"; +export type PrestoAuthenticationType = 'Anonymous' | 'LDAP'; /** * Defines values for PhoenixAuthenticationType. @@ -26289,10 +25763,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. @@ -26300,7 +25771,7 @@ export type PhoenixAuthenticationType = * @readonly * @enum {string} */ -export type ImpalaAuthenticationType = "Anonymous" | "SASLUsername" | "UsernameAndPassword"; +export type ImpalaAuthenticationType = 'Anonymous' | 'SASLUsername' | 'UsernameAndPassword'; /** * Defines values for HiveServerType. @@ -26308,7 +25779,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. @@ -26316,7 +25787,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. @@ -26325,11 +25796,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. @@ -26337,7 +25804,7 @@ export type HiveAuthenticationType = * @readonly * @enum {string} */ -export type HBaseAuthenticationType = "Anonymous" | "Basic"; +export type HBaseAuthenticationType = 'Anonymous' | 'Basic'; /** * Defines values for GoogleBigQueryAuthenticationType. @@ -26345,7 +25812,7 @@ export type HBaseAuthenticationType = "Anonymous" | "Basic"; * @readonly * @enum {string} */ -export type GoogleBigQueryAuthenticationType = "ServiceAuthentication" | "UserAuthentication"; +export type GoogleBigQueryAuthenticationType = 'ServiceAuthentication' | 'UserAuthentication'; /** * Defines values for SapHanaAuthenticationType. @@ -26353,7 +25820,7 @@ export type GoogleBigQueryAuthenticationType = "ServiceAuthentication" | "UserAu * @readonly * @enum {string} */ -export type SapHanaAuthenticationType = "Basic" | "Windows"; +export type SapHanaAuthenticationType = 'Basic' | 'Windows'; /** * Defines values for SftpAuthenticationType. @@ -26361,7 +25828,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. @@ -26369,7 +25836,7 @@ export type SftpAuthenticationType = "Basic" | "SshPublicKey" | "MultiFactor"; * @readonly * @enum {string} */ -export type FtpAuthenticationType = "Basic" | "Anonymous"; +export type FtpAuthenticationType = 'Basic' | 'Anonymous'; /** * Defines values for HttpAuthenticationType. @@ -26377,12 +25844,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. @@ -26390,11 +25852,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. @@ -26402,7 +25860,7 @@ export type RestServiceAuthenticationType = * @readonly * @enum {string} */ -export type MongoDbAuthenticationType = "Basic" | "Anonymous"; +export type MongoDbAuthenticationType = 'Basic' | 'Anonymous'; /** * Defines values for ODataAuthenticationType. @@ -26411,12 +25869,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. @@ -26424,7 +25877,7 @@ export type ODataAuthenticationType = * @readonly * @enum {string} */ -export type ODataAadServicePrincipalCredentialType = "ServicePrincipalKey" | "ServicePrincipalCert"; +export type ODataAadServicePrincipalCredentialType = 'ServicePrincipalKey' | 'ServicePrincipalCert'; /** * Defines values for TeradataAuthenticationType. @@ -26432,7 +25885,7 @@ export type ODataAadServicePrincipalCredentialType = "ServicePrincipalKey" | "Se * @readonly * @enum {string} */ -export type TeradataAuthenticationType = "Basic" | "Windows"; +export type TeradataAuthenticationType = 'Basic' | 'Windows'; /** * Defines values for Db2AuthenticationType. @@ -26440,7 +25893,7 @@ export type TeradataAuthenticationType = "Basic" | "Windows"; * @readonly * @enum {string} */ -export type Db2AuthenticationType = "Basic"; +export type Db2AuthenticationType = 'Basic'; /** * Defines values for SybaseAuthenticationType. @@ -26448,7 +25901,7 @@ export type Db2AuthenticationType = "Basic"; * @readonly * @enum {string} */ -export type SybaseAuthenticationType = "Basic" | "Windows"; +export type SybaseAuthenticationType = 'Basic' | 'Windows'; /** * Defines values for DynamicsDeploymentType. @@ -26456,7 +25909,7 @@ export type SybaseAuthenticationType = "Basic" | "Windows"; * @readonly * @enum {string} */ -export type DynamicsDeploymentType = "Online" | "OnPremisesWithIfd"; +export type DynamicsDeploymentType = 'Online' | 'OnPremisesWithIfd'; /** * Defines values for DynamicsAuthenticationType. @@ -26464,7 +25917,7 @@ export type DynamicsDeploymentType = "Online" | "OnPremisesWithIfd"; * @readonly * @enum {string} */ -export type DynamicsAuthenticationType = "Office365" | "Ifd" | "AADServicePrincipal"; +export type DynamicsAuthenticationType = 'Office365' | 'Ifd' | 'AADServicePrincipal'; /** * Defines values for CosmosDbServicePrincipalCredentialType. @@ -26472,7 +25925,7 @@ export type DynamicsAuthenticationType = "Office365" | "Ifd" | "AADServicePrinci * @readonly * @enum {string} */ -export type CosmosDbServicePrincipalCredentialType = "ServicePrincipalKey" | "ServicePrincipalCert"; +export type CosmosDbServicePrincipalCredentialType = 'ServicePrincipalKey' | 'ServicePrincipalCert'; /** * Defines values for CosmosDbConnectionMode. @@ -26480,7 +25933,7 @@ export type CosmosDbServicePrincipalCredentialType = "ServicePrincipalKey" | "Se * @readonly * @enum {string} */ -export type CosmosDbConnectionMode = "Gateway" | "Direct"; +export type CosmosDbConnectionMode = 'Gateway' | 'Direct'; /** * Defines values for SqlAlwaysEncryptedAkvAuthType. @@ -26488,7 +25941,7 @@ export type CosmosDbConnectionMode = "Gateway" | "Direct"; * @readonly * @enum {string} */ -export type SqlAlwaysEncryptedAkvAuthType = "ServicePrincipal" | "ManagedIdentity"; +export type SqlAlwaysEncryptedAkvAuthType = 'ServicePrincipal' | 'ManagedIdentity'; /** * Defines values for OrcCompressionCodec. @@ -26496,7 +25949,7 @@ export type SqlAlwaysEncryptedAkvAuthType = "ServicePrincipal" | "ManagedIdentit * @readonly * @enum {string} */ -export type OrcCompressionCodec = "none" | "zlib" | "snappy" | "lzo"; +export type OrcCompressionCodec = 'none' | 'zlib' | 'snappy' | 'lzo'; /** * Defines values for AvroCompressionCodec. @@ -26504,7 +25957,7 @@ export type OrcCompressionCodec = "none" | "zlib" | "snappy" | "lzo"; * @readonly * @enum {string} */ -export type AvroCompressionCodec = "none" | "deflate" | "snappy" | "xz" | "bzip2"; +export type AvroCompressionCodec = 'none' | 'deflate' | 'snappy' | 'xz' | 'bzip2'; /** * Defines values for TumblingWindowFrequency. @@ -26512,7 +25965,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. @@ -26520,7 +25973,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. @@ -26529,14 +25982,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. @@ -26545,14 +25991,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. @@ -26560,14 +25999,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. @@ -26575,14 +26007,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. @@ -26590,7 +26015,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. @@ -26598,7 +26023,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. @@ -26607,17 +26032,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. @@ -26625,14 +26040,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. @@ -26640,7 +26048,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. @@ -26648,7 +26056,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. @@ -26656,7 +26064,7 @@ export type HDInsightActivityDebugInfoOption = "None" | "Always" | "Failure"; * @readonly * @enum {string} */ -export type SalesforceSinkWriteBehavior = "Insert" | "Upsert"; +export type SalesforceSinkWriteBehavior = 'Insert' | 'Upsert'; /** * Defines values for DynamicsSinkWriteBehavior. @@ -26664,7 +26072,7 @@ export type SalesforceSinkWriteBehavior = "Insert" | "Upsert"; * @readonly * @enum {string} */ -export type DynamicsSinkWriteBehavior = "Upsert"; +export type DynamicsSinkWriteBehavior = 'Upsert'; /** * Defines values for AzureSearchIndexWriteBehaviorType. @@ -26672,7 +26080,7 @@ export type DynamicsSinkWriteBehavior = "Upsert"; * @readonly * @enum {string} */ -export type AzureSearchIndexWriteBehaviorType = "Merge" | "Upload"; +export type AzureSearchIndexWriteBehaviorType = 'Merge' | 'Upload'; /** * Defines values for PolybaseSettingsRejectType. @@ -26680,7 +26088,7 @@ export type AzureSearchIndexWriteBehaviorType = "Merge" | "Upload"; * @readonly * @enum {string} */ -export type PolybaseSettingsRejectType = "value" | "percentage"; +export type PolybaseSettingsRejectType = 'value' | 'percentage'; /** * Defines values for JsonWriteFilePattern. @@ -26688,7 +26096,7 @@ export type PolybaseSettingsRejectType = "value" | "percentage"; * @readonly * @enum {string} */ -export type JsonWriteFilePattern = "setOfObjects" | "arrayOfObjects"; +export type JsonWriteFilePattern = 'setOfObjects' | 'arrayOfObjects'; /** * Defines values for SapCloudForCustomerSinkWriteBehavior. @@ -26696,7 +26104,7 @@ export type JsonWriteFilePattern = "setOfObjects" | "arrayOfObjects"; * @readonly * @enum {string} */ -export type SapCloudForCustomerSinkWriteBehavior = "Insert" | "Update"; +export type SapCloudForCustomerSinkWriteBehavior = 'Insert' | 'Update'; /** * Defines values for WebHookActivityMethod. @@ -26704,7 +26112,7 @@ export type SapCloudForCustomerSinkWriteBehavior = "Insert" | "Update"; * @readonly * @enum {string} */ -export type WebHookActivityMethod = "POST"; +export type WebHookActivityMethod = 'POST'; /** * Defines values for IntegrationRuntimeType. @@ -26712,7 +26120,7 @@ export type WebHookActivityMethod = "POST"; * @readonly * @enum {string} */ -export type IntegrationRuntimeType = "Managed" | "SelfHosted"; +export type IntegrationRuntimeType = 'Managed' | 'SelfHosted'; /** * Defines values for SelfHostedIntegrationRuntimeNodeStatus. @@ -26721,14 +26129,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. @@ -26736,7 +26137,7 @@ export type SelfHostedIntegrationRuntimeNodeStatus = * @readonly * @enum {string} */ -export type IntegrationRuntimeUpdateResult = "None" | "Succeed" | "Fail"; +export type IntegrationRuntimeUpdateResult = 'None' | 'Succeed' | 'Fail'; /** * Defines values for IntegrationRuntimeInternalChannelEncryptionMode. @@ -26744,10 +26145,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. @@ -26755,21 +26153,16 @@ 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' + * Possible values include: 'IntegrationRuntimeReference', 'LinkedServiceReference', + * 'CredentialReference' * @readonly * @enum {string} */ -export type IntegrationRuntimeEntityReferenceType = - | "IntegrationRuntimeReference" - | "LinkedServiceReference"; +export type IntegrationRuntimeEntityReferenceType = 'IntegrationRuntimeReference' | 'LinkedServiceReference' | 'CredentialReference'; /** * Defines values for IntegrationRuntimeSsisCatalogPricingTier. @@ -26777,11 +26170,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. @@ -26789,7 +26178,7 @@ export type IntegrationRuntimeSsisCatalogPricingTier = * @readonly * @enum {string} */ -export type IntegrationRuntimeLicenseType = "BasePrice" | "LicenseIncluded"; +export type IntegrationRuntimeLicenseType = 'BasePrice' | 'LicenseIncluded'; /** * Defines values for IntegrationRuntimeEdition. @@ -26797,7 +26186,7 @@ export type IntegrationRuntimeLicenseType = "BasePrice" | "LicenseIncluded"; * @readonly * @enum {string} */ -export type IntegrationRuntimeEdition = "Standard" | "Enterprise"; +export type IntegrationRuntimeEdition = 'Standard' | 'Enterprise'; /** * Defines values for DataFlowComputeType. @@ -26805,7 +26194,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. @@ -26813,7 +26202,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. @@ -26821,7 +26210,7 @@ export type SsisObjectMetadataType = "Folder" | "Project" | "Package" | "Environ * @readonly * @enum {string} */ -export type IntegrationRuntimeAuthKeyName = "authKey1" | "authKey2"; +export type IntegrationRuntimeAuthKeyName = 'authKey1' | 'authKey2'; /** * Defines values for CopyBehaviorType. @@ -26829,7 +26218,7 @@ export type IntegrationRuntimeAuthKeyName = "authKey1" | "authKey2"; * @readonly * @enum {string} */ -export type CopyBehaviorType = "PreserveHierarchy" | "FlattenHierarchy" | "MergeFiles"; +export type CopyBehaviorType = 'PreserveHierarchy' | 'FlattenHierarchy' | 'MergeFiles'; /** * Defines values for SqlPartitionOption. @@ -26837,7 +26226,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. @@ -26845,7 +26234,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. @@ -26854,13 +26243,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. @@ -26868,7 +26251,7 @@ export type SapTablePartitionOption = * @readonly * @enum {string} */ -export type OraclePartitionOption = "None" | "PhysicalPartitionsOfTable" | "DynamicRange"; +export type OraclePartitionOption = 'None' | 'PhysicalPartitionsOfTable' | 'DynamicRange'; /** * Defines values for TeradataPartitionOption. @@ -26876,7 +26259,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. @@ -26884,7 +26267,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. @@ -26894,16 +26277,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; + }; }; /** @@ -26914,16 +26297,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; + }; }; /** @@ -26934,16 +26317,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; + }; }; /** @@ -26954,16 +26337,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; + }; }; /** @@ -26974,16 +26357,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; + }; }; /** @@ -26994,16 +26377,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; + }; }; /** @@ -27014,16 +26397,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; + }; }; /** @@ -27034,16 +26417,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; + }; }; /** @@ -27054,16 +26437,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; + }; }; /** @@ -27074,16 +26457,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; + }; }; /** @@ -27094,16 +26477,16 @@ 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; + + /** + * The response body as parsed JSON or XML + */ + parsedBody: FactoryListResponse; + }; }; /** @@ -27114,16 +26497,16 @@ 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; + }; }; /** @@ -27134,16 +26517,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; + }; }; /** @@ -27154,16 +26537,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; + }; }; /** @@ -27174,16 +26557,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; + }; }; /** @@ -27194,16 +26577,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; + }; }; /** @@ -27214,16 +26597,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; + }; }; /** @@ -27234,16 +26617,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; + }; }; /** @@ -27254,16 +26637,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; + }; }; /** @@ -27274,16 +26657,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; + }; }; /** @@ -27294,16 +26677,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; + }; }; /** @@ -27314,16 +26697,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; + }; }; /** @@ -27334,16 +26717,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; + }; }; /** @@ -27354,16 +26737,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; + }; }; /** @@ -27374,16 +26757,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; + }; }; /** @@ -27394,16 +26777,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; + }; }; /** @@ -27414,16 +26797,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; + }; }; /** @@ -27434,16 +26817,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; + }; }; /** @@ -27454,16 +26837,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; + }; }; /** @@ -27474,16 +26857,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; + }; }; /** @@ -27494,16 +26877,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; + }; }; /** @@ -27514,16 +26897,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; + }; }; /** @@ -27534,16 +26917,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; + }; }; /** @@ -27554,16 +26937,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; + }; }; /** @@ -27574,16 +26957,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; + }; }; /** @@ -27594,16 +26977,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; + }; }; /** @@ -27614,16 +26997,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; + }; }; /** @@ -27634,16 +27017,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; + }; }; /** @@ -27654,16 +27037,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; + }; }; /** @@ -27674,16 +27057,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; + }; }; /** @@ -27694,16 +27077,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; + }; }; /** @@ -27714,16 +27097,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; + }; }; /** @@ -27734,16 +27117,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; + }; }; /** @@ -27754,16 +27137,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; + }; }; /** @@ -27774,16 +27157,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; + }; }; /** @@ -27794,16 +27177,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; + }; }; /** @@ -27814,16 +27197,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; + }; }; /** @@ -27834,16 +27217,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; + }; }; /** @@ -27854,16 +27237,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; + }; }; /** @@ -27874,16 +27257,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; + }; }; /** @@ -27894,16 +27277,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; + }; }; /** @@ -27914,16 +27297,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; + }; }; /** @@ -27934,16 +27317,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; + }; }; /** @@ -27954,16 +27337,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; + }; }; /** @@ -27974,16 +27357,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; + }; }; /** @@ -27994,16 +27377,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; + }; }; /** @@ -28014,16 +27397,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; + }; }; /** @@ -28034,16 +27417,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; + }; }; /** @@ -28054,16 +27437,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; + }; }; /** @@ -28074,16 +27457,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; + }; }; /** @@ -28094,16 +27477,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; + }; }; /** @@ -28114,16 +27497,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; + }; }; /** @@ -28134,16 +27517,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; + }; }; /** @@ -28154,16 +27537,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; + }; }; /** @@ -28174,27 +27557,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. */ @@ -28210,7 +27592,7 @@ export type DataFlowDebugSessionCreateResponse = CreateDataFlowDebugSessionRespo */ parsedBody: CreateDataFlowDebugSessionResponse; }; - }; +}; /** * Contains response data for the queryByFactory operation. @@ -28220,16 +27602,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; + }; }; /** @@ -28240,27 +27622,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. */ @@ -28276,7 +27657,7 @@ export type DataFlowDebugSessionExecuteCommandResponse = DataFlowDebugCommandRes */ parsedBody: DataFlowDebugCommandResponse; }; - }; +}; /** * Contains response data for the queryByFactoryNext operation. @@ -28286,16 +27667,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; + }; }; /** @@ -28306,16 +27687,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; + }; }; /** @@ -28326,16 +27707,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; + }; }; /** @@ -28346,16 +27727,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; + }; }; /** @@ -28366,16 +27747,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; + }; }; /** @@ -28386,16 +27767,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; + }; }; /** @@ -28406,16 +27787,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; + }; }; /** @@ -28426,16 +27807,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; + }; }; /** @@ -28446,16 +27827,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; + }; }; /** @@ -28466,16 +27847,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; + }; }; /** @@ -28486,16 +27867,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; + }; }; /** @@ -28506,16 +27887,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; + }; }; /** @@ -28526,16 +27907,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; + }; }; /** @@ -28546,14 +27927,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/mappers.ts b/sdk/datafactory/arm-datafactory/src/models/mappers.ts index 07c935f435d9..18a845621c6f 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" } @@ -1703,7 +1703,7 @@ export const PipelineReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "PipelineReference", + defaultValue: 'PipelineReference', type: { name: "String" } @@ -1791,7 +1791,7 @@ export const DatasetReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "DatasetReference", + defaultValue: 'DatasetReference', type: { name: "String" } @@ -3411,7 +3411,7 @@ export const DataFlowReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "DataFlowReference", + defaultValue: 'DataFlowReference', type: { name: "String" } @@ -3615,7 +3615,7 @@ export const ManagedVirtualNetworkReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "ManagedVirtualNetworkReference", + defaultValue: 'ManagedVirtualNetworkReference', type: { name: "String" } @@ -13320,12 +13320,17 @@ export const ExcelDataset: msRest.CompositeMapper = { } }, sheetName: { - required: true, serializedName: "typeProperties.sheetName", type: { name: "Object" } }, + sheetIndex: { + serializedName: "typeProperties.sheetIndex", + type: { + name: "Object" + } + }, range: { serializedName: "typeProperties.range", type: { @@ -13636,7 +13641,7 @@ export const TriggerReference: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "TriggerReference", + defaultValue: 'TriggerReference', type: { name: "String" } @@ -19799,7 +19804,7 @@ export const SSISLogLocation: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "type", - defaultValue: "File", + defaultValue: 'File', type: { name: "String" } @@ -20957,7 +20962,7 @@ export const CommonDataServiceForAppsSink: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "writeBehavior", - defaultValue: "Upsert", + defaultValue: 'Upsert', type: { name: "String" } @@ -20992,7 +20997,7 @@ export const DynamicsCrmSink: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "writeBehavior", - defaultValue: "Upsert", + defaultValue: 'Upsert', type: { name: "String" } @@ -21027,7 +21032,7 @@ export const DynamicsSink: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "writeBehavior", - defaultValue: "Upsert", + defaultValue: 'Upsert', type: { name: "String" } @@ -22705,7 +22710,7 @@ export const WebHookActivity: msRest.CompositeMapper = { required: true, isConstant: true, serializedName: "typeProperties.method", - defaultValue: "POST", + defaultValue: 'POST', type: { name: "String" } @@ -24190,6 +24195,13 @@ export const IntegrationRuntimeSsisProperties: msRest.CompositeMapper = { } } } + }, + managedCredential: { + serializedName: "managedCredential", + type: { + name: "Composite", + className: "EntityReference" + } } }, additionalProperties: { @@ -25556,485 +25568,486 @@ 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, + '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/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