@azure/synapse-artifacts 1.0.0-alpha.20220401.1 → 1.0.0-alpha.20220413.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -6
- package/dist/index.js +12198 -11032
- package/dist/index.js.map +1 -1
- package/dist-esm/src/artifactsClient.js +4 -2
- package/dist-esm/src/artifactsClient.js.map +1 -1
- package/dist-esm/src/models/index.js +5 -5
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.js +680 -180
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.js +46 -9
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/bigDataPools.js +2 -2
- package/dist-esm/src/operations/bigDataPools.js.map +1 -1
- package/dist-esm/src/operations/dataFlowDebugSession.js +18 -14
- package/dist-esm/src/operations/dataFlowDebugSession.js.map +1 -1
- package/dist-esm/src/operations/dataFlowOperations.js +21 -15
- package/dist-esm/src/operations/dataFlowOperations.js.map +1 -1
- package/dist-esm/src/operations/datasetOperations.js +21 -15
- package/dist-esm/src/operations/datasetOperations.js.map +1 -1
- package/dist-esm/src/operations/index.js +1 -0
- package/dist-esm/src/operations/index.js.map +1 -1
- package/dist-esm/src/operations/integrationRuntimes.js +2 -2
- package/dist-esm/src/operations/integrationRuntimes.js.map +1 -1
- package/dist-esm/src/operations/kqlScriptOperations.js +13 -7
- package/dist-esm/src/operations/kqlScriptOperations.js.map +1 -1
- package/dist-esm/src/operations/kqlScripts.js +2 -2
- package/dist-esm/src/operations/kqlScripts.js.map +1 -1
- package/dist-esm/src/operations/library.js +25 -19
- package/dist-esm/src/operations/library.js.map +1 -1
- package/dist-esm/src/operations/linkConnectionOperations.js +534 -0
- package/dist-esm/src/operations/linkConnectionOperations.js.map +1 -0
- package/dist-esm/src/operations/linkedServiceOperations.js +21 -15
- package/dist-esm/src/operations/linkedServiceOperations.js.map +1 -1
- package/dist-esm/src/operations/metastore.js +4 -4
- package/dist-esm/src/operations/metastore.js.map +1 -1
- package/dist-esm/src/operations/notebookOperationResult.js +1 -1
- package/dist-esm/src/operations/notebookOperationResult.js.map +1 -1
- package/dist-esm/src/operations/notebookOperations.js +25 -19
- package/dist-esm/src/operations/notebookOperations.js.map +1 -1
- package/dist-esm/src/operations/pipelineOperations.js +23 -17
- package/dist-esm/src/operations/pipelineOperations.js.map +1 -1
- package/dist-esm/src/operations/pipelineRunOperations.js +8 -8
- package/dist-esm/src/operations/pipelineRunOperations.js.map +1 -1
- package/dist-esm/src/operations/sparkConfigurationOperations.js +15 -9
- package/dist-esm/src/operations/sparkConfigurationOperations.js.map +1 -1
- package/dist-esm/src/operations/sparkJobDefinitionOperations.js +31 -21
- package/dist-esm/src/operations/sparkJobDefinitionOperations.js.map +1 -1
- package/dist-esm/src/operations/sqlPools.js +2 -2
- package/dist-esm/src/operations/sqlPools.js.map +1 -1
- package/dist-esm/src/operations/sqlScriptOperations.js +21 -15
- package/dist-esm/src/operations/sqlScriptOperations.js.map +1 -1
- package/dist-esm/src/operations/triggerOperations.js +38 -26
- package/dist-esm/src/operations/triggerOperations.js.map +1 -1
- package/dist-esm/src/operations/triggerRunOperations.js +6 -6
- package/dist-esm/src/operations/triggerRunOperations.js.map +1 -1
- package/dist-esm/src/operations/workspaceGitRepoManagement.js +1 -1
- package/dist-esm/src/operations/workspaceGitRepoManagement.js.map +1 -1
- package/dist-esm/src/operations/workspaceOperations.js +1 -1
- package/dist-esm/src/operations/workspaceOperations.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/index.js +1 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/linkConnectionOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/linkConnectionOperations.js.map +1 -0
- package/package.json +1 -1
- package/types/synapse-artifacts.d.ts +319 -16
|
@@ -431,6 +431,7 @@ export declare class ArtifactsClient extends coreClient.ServiceClient {
|
|
|
431
431
|
* @param options The parameter options
|
|
432
432
|
*/
|
|
433
433
|
constructor(credentials: coreAuth.TokenCredential, endpoint: string, options?: ArtifactsClientOptionalParams);
|
|
434
|
+
linkConnectionOperations: LinkConnectionOperations;
|
|
434
435
|
kqlScripts: KqlScripts;
|
|
435
436
|
kqlScriptOperations: KqlScriptOperations;
|
|
436
437
|
metastore: Metastore;
|
|
@@ -1916,18 +1917,6 @@ export declare interface CloudError {
|
|
|
1916
1917
|
details?: CloudError[];
|
|
1917
1918
|
}
|
|
1918
1919
|
|
|
1919
|
-
/** The object that defines the structure of an Azure Synapse error response. */
|
|
1920
|
-
export declare interface CloudErrorAutoGenerated {
|
|
1921
|
-
/** Error code. */
|
|
1922
|
-
code: string;
|
|
1923
|
-
/** Error message. */
|
|
1924
|
-
message: string;
|
|
1925
|
-
/** Property name/path in request associated with error. */
|
|
1926
|
-
target?: string;
|
|
1927
|
-
/** Array with additional error details. */
|
|
1928
|
-
details?: CloudErrorAutoGenerated[];
|
|
1929
|
-
}
|
|
1930
|
-
|
|
1931
1920
|
/** The Common Data Service for Apps entity dataset. */
|
|
1932
1921
|
export declare type CommonDataServiceForAppsEntityDataset = Dataset & {
|
|
1933
1922
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -3638,6 +3627,11 @@ export declare type DynamicsSource = CopySource & {
|
|
|
3638
3627
|
additionalColumns?: any;
|
|
3639
3628
|
};
|
|
3640
3629
|
|
|
3630
|
+
export declare interface EditTablesRequest {
|
|
3631
|
+
/** Edit link tables request */
|
|
3632
|
+
linkTables?: LinkTableRequest[];
|
|
3633
|
+
}
|
|
3634
|
+
|
|
3641
3635
|
/** Eloqua server linked service. */
|
|
3642
3636
|
export declare type EloquaLinkedService = LinkedService & {
|
|
3643
3637
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -6688,6 +6682,242 @@ export declare interface LibraryResourceProperties {
|
|
|
6688
6682
|
readonly creatorId?: string;
|
|
6689
6683
|
}
|
|
6690
6684
|
|
|
6685
|
+
export declare interface LinkConnection {
|
|
6686
|
+
/** Properties of link connection's source database */
|
|
6687
|
+
sourceDatabase?: LinkConnectionSourceDatabase;
|
|
6688
|
+
/** Properties of link connection's target database */
|
|
6689
|
+
targetDatabase?: LinkConnectionTargetDatabase;
|
|
6690
|
+
/** Properties of link connection's landing zone */
|
|
6691
|
+
landingZone?: LinkConnectionLandingZone;
|
|
6692
|
+
/** Properties of link connection's compute */
|
|
6693
|
+
compute?: LinkConnectionCompute;
|
|
6694
|
+
}
|
|
6695
|
+
|
|
6696
|
+
export declare interface LinkConnectionCompute {
|
|
6697
|
+
/** Link connection's compute core count */
|
|
6698
|
+
coreCount?: number;
|
|
6699
|
+
/** Link connection's compute type */
|
|
6700
|
+
computeType?: string;
|
|
6701
|
+
}
|
|
6702
|
+
|
|
6703
|
+
/** Optional parameters. */
|
|
6704
|
+
export declare interface LinkConnectionCreateOrUpdateLinkConnectionOptionalParams extends coreClient.OperationOptions {
|
|
6705
|
+
}
|
|
6706
|
+
|
|
6707
|
+
/** Contains response data for the createOrUpdateLinkConnection operation. */
|
|
6708
|
+
export declare type LinkConnectionCreateOrUpdateLinkConnectionResponse = LinkConnectionResource;
|
|
6709
|
+
|
|
6710
|
+
/** Optional parameters. */
|
|
6711
|
+
export declare interface LinkConnectionDeleteLinkConnectionOptionalParams extends coreClient.OperationOptions {
|
|
6712
|
+
}
|
|
6713
|
+
|
|
6714
|
+
export declare interface LinkConnectionDetailedStatus {
|
|
6715
|
+
/** Link connection id */
|
|
6716
|
+
id?: string;
|
|
6717
|
+
/** Link connection name */
|
|
6718
|
+
name?: string;
|
|
6719
|
+
/** Is link connection applying changes */
|
|
6720
|
+
isApplyingChanges?: boolean;
|
|
6721
|
+
/** Is link connection partially failed */
|
|
6722
|
+
isPartiallyFailed?: boolean;
|
|
6723
|
+
/** Link connection start time */
|
|
6724
|
+
startTime?: any;
|
|
6725
|
+
/** Link connection stop time */
|
|
6726
|
+
stopTime?: any;
|
|
6727
|
+
/** Link connection status */
|
|
6728
|
+
status?: string;
|
|
6729
|
+
/** Link connection's corresponding continuous run id */
|
|
6730
|
+
continuousRunId?: string;
|
|
6731
|
+
/** Link connection error */
|
|
6732
|
+
error?: any;
|
|
6733
|
+
}
|
|
6734
|
+
|
|
6735
|
+
/** Optional parameters. */
|
|
6736
|
+
export declare interface LinkConnectionEditTablesOptionalParams extends coreClient.OperationOptions {
|
|
6737
|
+
}
|
|
6738
|
+
|
|
6739
|
+
/** Optional parameters. */
|
|
6740
|
+
export declare interface LinkConnectionGetDetailedStatusOptionalParams extends coreClient.OperationOptions {
|
|
6741
|
+
}
|
|
6742
|
+
|
|
6743
|
+
/** Contains response data for the getDetailedStatus operation. */
|
|
6744
|
+
export declare type LinkConnectionGetDetailedStatusResponse = LinkConnectionDetailedStatus;
|
|
6745
|
+
|
|
6746
|
+
/** Optional parameters. */
|
|
6747
|
+
export declare interface LinkConnectionGetLinkConnectionOptionalParams extends coreClient.OperationOptions {
|
|
6748
|
+
}
|
|
6749
|
+
|
|
6750
|
+
/** Contains response data for the getLinkConnection operation. */
|
|
6751
|
+
export declare type LinkConnectionGetLinkConnectionResponse = LinkConnectionResource;
|
|
6752
|
+
|
|
6753
|
+
export declare interface LinkConnectionLandingZone {
|
|
6754
|
+
/** Linked service reference */
|
|
6755
|
+
linkedService?: LinkedServiceReference;
|
|
6756
|
+
/** Landing zone's file system name */
|
|
6757
|
+
fileSystem?: string;
|
|
6758
|
+
/** Landing zone's folder path name */
|
|
6759
|
+
folderPath?: string;
|
|
6760
|
+
/** Landing zone's sas token */
|
|
6761
|
+
sasToken?: SecureString;
|
|
6762
|
+
}
|
|
6763
|
+
|
|
6764
|
+
/** Optional parameters. */
|
|
6765
|
+
export declare interface LinkConnectionListLinkConnectionsByWorkspaceNextOptionalParams extends coreClient.OperationOptions {
|
|
6766
|
+
}
|
|
6767
|
+
|
|
6768
|
+
/** Contains response data for the listLinkConnectionsByWorkspaceNext operation. */
|
|
6769
|
+
export declare type LinkConnectionListLinkConnectionsByWorkspaceNextResponse = LinkConnectionListResponse;
|
|
6770
|
+
|
|
6771
|
+
/** Optional parameters. */
|
|
6772
|
+
export declare interface LinkConnectionListLinkConnectionsByWorkspaceOptionalParams extends coreClient.OperationOptions {
|
|
6773
|
+
}
|
|
6774
|
+
|
|
6775
|
+
/** Contains response data for the listLinkConnectionsByWorkspace operation. */
|
|
6776
|
+
export declare type LinkConnectionListLinkConnectionsByWorkspaceResponse = LinkConnectionListResponse;
|
|
6777
|
+
|
|
6778
|
+
/** Optional parameters. */
|
|
6779
|
+
export declare interface LinkConnectionListLinkTablesOptionalParams extends coreClient.OperationOptions {
|
|
6780
|
+
}
|
|
6781
|
+
|
|
6782
|
+
/** Contains response data for the listLinkTables operation. */
|
|
6783
|
+
export declare type LinkConnectionListLinkTablesResponse = LinkTableListResponse;
|
|
6784
|
+
|
|
6785
|
+
export declare interface LinkConnectionListResponse {
|
|
6786
|
+
/** List link connection value */
|
|
6787
|
+
value: LinkConnectionResource[];
|
|
6788
|
+
/** List link connections next link */
|
|
6789
|
+
nextLink?: string;
|
|
6790
|
+
}
|
|
6791
|
+
|
|
6792
|
+
/** Interface representing a LinkConnectionOperations. */
|
|
6793
|
+
export declare interface LinkConnectionOperations {
|
|
6794
|
+
/**
|
|
6795
|
+
* List link connections
|
|
6796
|
+
* @param options The options parameters.
|
|
6797
|
+
*/
|
|
6798
|
+
listLinkConnectionsByWorkspace(options?: LinkConnectionListLinkConnectionsByWorkspaceOptionalParams): PagedAsyncIterableIterator<LinkConnectionResource>;
|
|
6799
|
+
/**
|
|
6800
|
+
* Creates or updates a link connection
|
|
6801
|
+
* @param linkConnectionName The link connection name
|
|
6802
|
+
* @param linkConnection Link connection resource definition
|
|
6803
|
+
* @param options The options parameters.
|
|
6804
|
+
*/
|
|
6805
|
+
createOrUpdateLinkConnection(linkConnectionName: string, linkConnection: LinkConnectionResource, options?: LinkConnectionCreateOrUpdateLinkConnectionOptionalParams): Promise<LinkConnectionCreateOrUpdateLinkConnectionResponse>;
|
|
6806
|
+
/**
|
|
6807
|
+
* Get a link connection
|
|
6808
|
+
* @param linkConnectionName The link connection name
|
|
6809
|
+
* @param options The options parameters.
|
|
6810
|
+
*/
|
|
6811
|
+
getLinkConnection(linkConnectionName: string, options?: LinkConnectionGetLinkConnectionOptionalParams): Promise<LinkConnectionGetLinkConnectionResponse>;
|
|
6812
|
+
/**
|
|
6813
|
+
* Delete a link connection
|
|
6814
|
+
* @param linkConnectionName The link connection name
|
|
6815
|
+
* @param options The options parameters.
|
|
6816
|
+
*/
|
|
6817
|
+
deleteLinkConnection(linkConnectionName: string, options?: LinkConnectionDeleteLinkConnectionOptionalParams): Promise<void>;
|
|
6818
|
+
/**
|
|
6819
|
+
* Edit tables for a link connection
|
|
6820
|
+
* @param linkConnectionName The link connection name
|
|
6821
|
+
* @param editTablesRequest Edit tables request
|
|
6822
|
+
* @param options The options parameters.
|
|
6823
|
+
*/
|
|
6824
|
+
editTables(linkConnectionName: string, editTablesRequest: EditTablesRequest, options?: LinkConnectionEditTablesOptionalParams): Promise<void>;
|
|
6825
|
+
/**
|
|
6826
|
+
* Start a link connection
|
|
6827
|
+
* @param linkConnectionName The link connection name
|
|
6828
|
+
* @param options The options parameters.
|
|
6829
|
+
*/
|
|
6830
|
+
start(linkConnectionName: string, options?: LinkConnectionStartOptionalParams): Promise<void>;
|
|
6831
|
+
/**
|
|
6832
|
+
* Stop a link connection
|
|
6833
|
+
* @param linkConnectionName The link connection name
|
|
6834
|
+
* @param options The options parameters.
|
|
6835
|
+
*/
|
|
6836
|
+
stop(linkConnectionName: string, options?: LinkConnectionStopOptionalParams): Promise<void>;
|
|
6837
|
+
/**
|
|
6838
|
+
* Get the detailed status of a link connection
|
|
6839
|
+
* @param linkConnectionName The link connection name
|
|
6840
|
+
* @param options The options parameters.
|
|
6841
|
+
*/
|
|
6842
|
+
getDetailedStatus(linkConnectionName: string, options?: LinkConnectionGetDetailedStatusOptionalParams): Promise<LinkConnectionGetDetailedStatusResponse>;
|
|
6843
|
+
/**
|
|
6844
|
+
* List the link tables of a link connection
|
|
6845
|
+
* @param linkConnectionName The link connection name
|
|
6846
|
+
* @param options The options parameters.
|
|
6847
|
+
*/
|
|
6848
|
+
listLinkTables(linkConnectionName: string, options?: LinkConnectionListLinkTablesOptionalParams): Promise<LinkConnectionListLinkTablesResponse>;
|
|
6849
|
+
/**
|
|
6850
|
+
* Query the link table status of a link connection
|
|
6851
|
+
* @param linkConnectionName The link connection name
|
|
6852
|
+
* @param queryTableStatusRequest Query table status request
|
|
6853
|
+
* @param options The options parameters.
|
|
6854
|
+
*/
|
|
6855
|
+
queryTableStatus(linkConnectionName: string, queryTableStatusRequest: QueryTableStatusRequest, options?: LinkConnectionQueryTableStatusOptionalParams): Promise<LinkConnectionQueryTableStatusResponse>;
|
|
6856
|
+
/**
|
|
6857
|
+
* Update landing zone credential of a link connection
|
|
6858
|
+
* @param linkConnectionName The link connection name
|
|
6859
|
+
* @param updateLandingZoneCredentialRequest update landing zone credential request
|
|
6860
|
+
* @param options The options parameters.
|
|
6861
|
+
*/
|
|
6862
|
+
updateLandingZoneCredential(linkConnectionName: string, updateLandingZoneCredentialRequest: UpdateLandingZoneCredential, options?: LinkConnectionUpdateLandingZoneCredentialOptionalParams): Promise<void>;
|
|
6863
|
+
}
|
|
6864
|
+
|
|
6865
|
+
export declare interface LinkConnectionQueryTableStatus {
|
|
6866
|
+
/** Link tables' status */
|
|
6867
|
+
value?: LinkTableStatus[];
|
|
6868
|
+
/** Continuation token to query table status */
|
|
6869
|
+
continuationToken?: any;
|
|
6870
|
+
}
|
|
6871
|
+
|
|
6872
|
+
/** Optional parameters. */
|
|
6873
|
+
export declare interface LinkConnectionQueryTableStatusOptionalParams extends coreClient.OperationOptions {
|
|
6874
|
+
}
|
|
6875
|
+
|
|
6876
|
+
/** Contains response data for the queryTableStatus operation. */
|
|
6877
|
+
export declare type LinkConnectionQueryTableStatusResponse = LinkConnectionQueryTableStatus;
|
|
6878
|
+
|
|
6879
|
+
export declare interface LinkConnectionResource {
|
|
6880
|
+
/** Link connection id */
|
|
6881
|
+
id?: string;
|
|
6882
|
+
/** Link connection name */
|
|
6883
|
+
name?: string;
|
|
6884
|
+
/** Link connection type */
|
|
6885
|
+
type?: string;
|
|
6886
|
+
/** Properties of link connection */
|
|
6887
|
+
properties: LinkConnection;
|
|
6888
|
+
}
|
|
6889
|
+
|
|
6890
|
+
export declare interface LinkConnectionSourceDatabase {
|
|
6891
|
+
/** Linked service reference */
|
|
6892
|
+
linkedService?: LinkedServiceReference;
|
|
6893
|
+
/** Source database type properties */
|
|
6894
|
+
typeProperties?: LinkConnectionSourceDatabaseTypeProperties;
|
|
6895
|
+
}
|
|
6896
|
+
|
|
6897
|
+
export declare interface LinkConnectionSourceDatabaseTypeProperties {
|
|
6898
|
+
/** Link connection source database server's resource id */
|
|
6899
|
+
resourceId?: string;
|
|
6900
|
+
/** Link connection source database server's principal id */
|
|
6901
|
+
principalId?: string;
|
|
6902
|
+
}
|
|
6903
|
+
|
|
6904
|
+
/** Optional parameters. */
|
|
6905
|
+
export declare interface LinkConnectionStartOptionalParams extends coreClient.OperationOptions {
|
|
6906
|
+
}
|
|
6907
|
+
|
|
6908
|
+
/** Optional parameters. */
|
|
6909
|
+
export declare interface LinkConnectionStopOptionalParams extends coreClient.OperationOptions {
|
|
6910
|
+
}
|
|
6911
|
+
|
|
6912
|
+
export declare interface LinkConnectionTargetDatabase {
|
|
6913
|
+
/** Linked service reference */
|
|
6914
|
+
linkedService?: LinkedServiceReference;
|
|
6915
|
+
}
|
|
6916
|
+
|
|
6917
|
+
/** Optional parameters. */
|
|
6918
|
+
export declare interface LinkConnectionUpdateLandingZoneCredentialOptionalParams extends coreClient.OperationOptions {
|
|
6919
|
+
}
|
|
6920
|
+
|
|
6691
6921
|
/** The key authorization type integration runtime. */
|
|
6692
6922
|
export declare type LinkedIntegrationRuntimeKeyAuthorization = LinkedIntegrationRuntimeType & {
|
|
6693
6923
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -6871,6 +7101,69 @@ export declare type LinkedServiceResource = SubResource & {
|
|
|
6871
7101
|
|
|
6872
7102
|
export declare type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | OdbcLinkedService | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapOpenHubLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | AmazonS3LinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | AzureMariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService;
|
|
6873
7103
|
|
|
7104
|
+
export declare interface LinkTableListResponse {
|
|
7105
|
+
/** List link table value */
|
|
7106
|
+
value?: LinkTableResource[];
|
|
7107
|
+
}
|
|
7108
|
+
|
|
7109
|
+
export declare interface LinkTableRequest {
|
|
7110
|
+
/** Link table id */
|
|
7111
|
+
id?: string;
|
|
7112
|
+
/** Source table properties for link table request */
|
|
7113
|
+
source?: LinkTableRequestSource;
|
|
7114
|
+
/** Target table properties for link table request */
|
|
7115
|
+
target?: LinkTableRequestTarget;
|
|
7116
|
+
/** Link table operation type */
|
|
7117
|
+
operationType?: string;
|
|
7118
|
+
}
|
|
7119
|
+
|
|
7120
|
+
export declare interface LinkTableRequestSource {
|
|
7121
|
+
/** Source table table name */
|
|
7122
|
+
tableName?: string;
|
|
7123
|
+
/** Source table schema name */
|
|
7124
|
+
schemaName?: string;
|
|
7125
|
+
}
|
|
7126
|
+
|
|
7127
|
+
export declare interface LinkTableRequestTarget {
|
|
7128
|
+
/** Target table table name */
|
|
7129
|
+
tableName?: string;
|
|
7130
|
+
/** Target table schema name */
|
|
7131
|
+
schemaName?: string;
|
|
7132
|
+
/** Target table distribution options for link table request */
|
|
7133
|
+
distributionOptions?: LinkTableRequestTargetDistributionOptions;
|
|
7134
|
+
}
|
|
7135
|
+
|
|
7136
|
+
export declare interface LinkTableRequestTargetDistributionOptions {
|
|
7137
|
+
/** Target table distribution type */
|
|
7138
|
+
type?: string;
|
|
7139
|
+
/** Target table distribution column */
|
|
7140
|
+
distributionColumn?: string;
|
|
7141
|
+
}
|
|
7142
|
+
|
|
7143
|
+
export declare interface LinkTableResource {
|
|
7144
|
+
/** Link table id */
|
|
7145
|
+
id?: string;
|
|
7146
|
+
/** Link table name */
|
|
7147
|
+
name?: string;
|
|
7148
|
+
/** Source table properties for link table request */
|
|
7149
|
+
source?: LinkTableRequestSource;
|
|
7150
|
+
/** Target table properties for link table request */
|
|
7151
|
+
target?: LinkTableRequestTarget;
|
|
7152
|
+
}
|
|
7153
|
+
|
|
7154
|
+
export declare interface LinkTableStatus {
|
|
7155
|
+
/** Link table id */
|
|
7156
|
+
id?: string;
|
|
7157
|
+
/** Link table status */
|
|
7158
|
+
status?: string;
|
|
7159
|
+
/** Link table error message */
|
|
7160
|
+
errorMessage?: string;
|
|
7161
|
+
/** Link table start time */
|
|
7162
|
+
startTime?: any;
|
|
7163
|
+
/** Link table stop time */
|
|
7164
|
+
stopTime?: any;
|
|
7165
|
+
}
|
|
7166
|
+
|
|
6874
7167
|
/**
|
|
6875
7168
|
* Defines values for LivyStates. \
|
|
6876
7169
|
* {@link KnownLivyStates} can be used interchangeably with LivyStates,
|
|
@@ -7959,7 +8252,7 @@ export declare interface OperationResult {
|
|
|
7959
8252
|
/** Property name/path in request associated with error. */
|
|
7960
8253
|
target?: string;
|
|
7961
8254
|
/** Array with additional error details. */
|
|
7962
|
-
details?:
|
|
8255
|
+
details?: CloudError[];
|
|
7963
8256
|
}
|
|
7964
8257
|
|
|
7965
8258
|
/** Oracle database. */
|
|
@@ -8835,6 +9128,13 @@ export declare interface QueryDataFlowDebugSessionsResponse {
|
|
|
8835
9128
|
nextLink?: string;
|
|
8836
9129
|
}
|
|
8837
9130
|
|
|
9131
|
+
export declare interface QueryTableStatusRequest {
|
|
9132
|
+
/** Max segment count to query table status */
|
|
9133
|
+
maxSegmentCount?: number;
|
|
9134
|
+
/** Continuation token to query table status */
|
|
9135
|
+
continuationToken?: any;
|
|
9136
|
+
}
|
|
9137
|
+
|
|
8838
9138
|
/** Linked service for Quickbase. */
|
|
8839
9139
|
export declare type QuickbaseLinkedService = LinkedService & {
|
|
8840
9140
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -11324,9 +11624,7 @@ export declare type SqlServerStoredProcedureActivity = ExecutionActivity & {
|
|
|
11324
11624
|
/** Stored procedure name. Type: string (or Expression with resultType string). */
|
|
11325
11625
|
storedProcedureName: any;
|
|
11326
11626
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
11327
|
-
storedProcedureParameters?:
|
|
11328
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
11329
|
-
};
|
|
11627
|
+
storedProcedureParameters?: any;
|
|
11330
11628
|
};
|
|
11331
11629
|
|
|
11332
11630
|
/** The on-premises SQL Server dataset. */
|
|
@@ -12426,6 +12724,11 @@ export declare type UntilActivity = ControlActivity & {
|
|
|
12426
12724
|
activities: ActivityUnion[];
|
|
12427
12725
|
};
|
|
12428
12726
|
|
|
12727
|
+
export declare interface UpdateLandingZoneCredential {
|
|
12728
|
+
/** Landing zone's sas token */
|
|
12729
|
+
sasToken?: SecureString;
|
|
12730
|
+
}
|
|
12731
|
+
|
|
12429
12732
|
/** User property. */
|
|
12430
12733
|
export declare interface UserProperty {
|
|
12431
12734
|
/** User property name. */
|