You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource. */
1240
+
/** The nested object which contains the information and credential which can be used to connect with related store or compute resource. */
1238
1241
export interface LinkedService {
1239
1242
/** Polymorphic discriminator, which specifies the different types this object can be */
export type SapOdpLinkedService = LinkedService & {
4926
+
/** Polymorphic discriminator, which specifies the different types this object can be */
4927
+
type: "SapOdp";
4928
+
/** Host name of the SAP instance where the table is located. Type: string (or Expression with resultType string). */
4929
+
server?: any;
4930
+
/** System number of the SAP system where the table is located. (Usually a two-digit decimal number represented as a string.) Type: string (or Expression with resultType string). */
4931
+
systemNumber?: any;
4932
+
/** Client ID of the client on the SAP system where the table is located. (Usually a three-digit decimal number represented as a string) Type: string (or Expression with resultType string). */
4933
+
clientId?: any;
4934
+
/** Language of the SAP system where the table is located. The default value is EN. Type: string (or Expression with resultType string). */
4935
+
language?: any;
4936
+
/** SystemID of the SAP system where the table is located. Type: string (or Expression with resultType string). */
4937
+
systemId?: any;
4938
+
/** Username to access the SAP server where the table is located. Type: string (or Expression with resultType string). */
4939
+
userName?: any;
4940
+
/** Password to access the SAP server where the table is located. */
4941
+
password?: SecretBaseUnion;
4942
+
/** The hostname of the SAP Message Server. Type: string (or Expression with resultType string). */
4943
+
messageServer?: any;
4944
+
/** The service name or port number of the Message Server. Type: string (or Expression with resultType string). */
4945
+
messageServerService?: any;
4946
+
/** SNC activation indicator to access the SAP server where the table is located. Must be either 0 (off) or 1 (on). Type: string (or Expression with resultType string). */
4947
+
sncMode?: any;
4948
+
/** Initiator's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string). */
4949
+
sncMyName?: any;
4950
+
/** Communication partner's SNC name to access the SAP server where the table is located. Type: string (or Expression with resultType string). */
4951
+
sncPartnerName?: any;
4952
+
/** External security product's library to access the SAP server where the table is located. Type: string (or Expression with resultType string). */
4953
+
sncLibraryPath?: any;
4954
+
/** SNC Quality of Protection. Allowed value include: 1, 2, 3, 8, 9. Type: string (or Expression with resultType string). */
/** The Logon Group for the SAP System. Type: string (or Expression with resultType string). */
4959
+
logonGroup?: any;
4960
+
/** The subscriber name. Type: string (or Expression with resultType string). */
4961
+
subscriberName?: any;
4962
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4963
+
encryptedCredential?: any;
4964
+
};
4965
+
4918
4966
/** Rest Service linked service. */
4919
4967
export type RestServiceLinkedService = LinkedService & {
4920
4968
/** Polymorphic discriminator, which specifies the different types this object can be */
export type AmazonS3LinkedService = LinkedService & {
4962
-
/** Polymorphic discriminator, which specifies the different types this object can be */
4963
-
type: "AmazonS3";
4964
-
/** The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string). */
4965
-
authenticationType?: any;
4966
-
/** The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string). */
4967
-
accessKeyId?: any;
4968
-
/** The secret access key of the Amazon S3 Identity and Access Management (IAM) user. */
4969
-
secretAccessKey?: SecretBaseUnion;
4970
-
/** This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string). */
4971
-
serviceUrl?: any;
4972
-
/** The session token for the S3 temporary security credential. */
4973
-
sessionToken?: SecretBaseUnion;
4974
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4975
-
encryptedCredential?: any;
4976
-
};
4977
-
4978
5008
/** Linked service for TeamDesk. */
4979
5009
export type TeamDeskLinkedService = LinkedService & {
4980
5010
/** Polymorphic discriminator, which specifies the different types this object can be */
export type AmazonS3LinkedService = LinkedService & {
5110
+
/** Polymorphic discriminator, which specifies the different types this object can be */
5111
+
type: "AmazonS3";
5112
+
/** The authentication type of S3. Allowed value: AccessKey (default) or TemporarySecurityCredentials. Type: string (or Expression with resultType string). */
5113
+
authenticationType?: any;
5114
+
/** The access key identifier of the Amazon S3 Identity and Access Management (IAM) user. Type: string (or Expression with resultType string). */
5115
+
accessKeyId?: any;
5116
+
/** The secret access key of the Amazon S3 Identity and Access Management (IAM) user. */
5117
+
secretAccessKey?: SecretBaseUnion;
5118
+
/** This value specifies the endpoint to access with the S3 Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string). */
5119
+
serviceUrl?: any;
5120
+
/** The session token for the S3 temporary security credential. */
5121
+
sessionToken?: SecretBaseUnion;
5122
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5123
+
encryptedCredential?: any;
5124
+
};
5125
+
5078
5126
/** Linked service for Amazon Redshift. */
5079
5127
export type AmazonRedshiftLinkedService = LinkedService & {
5080
5128
/** Polymorphic discriminator, which specifies the different types this object can be */
/** Polymorphic discriminator, which specifies the different types this object can be */
10098
+
type: "SapOdpSource";
10099
+
/** The extraction mode. Allowed value include: Full, Delta and Recovery. The default value is Full. Type: string (or Expression with resultType string). */
10100
+
extractionMode?: any;
10101
+
/** The subscriber process to manage the delta process. Type: string (or Expression with resultType string). */
10102
+
subscriberProcess?: any;
10103
+
/** Specifies the selection conditions from source data. Type: array of objects(selection) (or Expression with resultType array of objects). */
10104
+
selection?: any;
10105
+
/** Specifies the columns to be selected from source data. Type: array of objects(projection) (or Expression with resultType array of objects). */
10106
+
projection?: any;
10107
+
};
10108
+
10036
10109
/** A copy activity source for SAP Table source. */
10037
10110
export type SapTableSource = TabularSource & {
10038
10111
/** Polymorphic discriminator, which specifies the different types this object can be */
0 commit comments