@azure/arm-datafactory 10.4.0 → 10.5.0

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.
@@ -31,7 +31,7 @@ export class DataFactoryManagementClient extends coreClient.ServiceClient {
31
31
  requestContentType: "application/json; charset=utf-8",
32
32
  credential: credentials
33
33
  };
34
- const packageDetails = `azsdk-js-arm-datafactory/10.4.0`;
34
+ const packageDetails = `azsdk-js-arm-datafactory/10.5.0`;
35
35
  const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
36
36
  ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
37
37
  : `${packageDetails}`;
@@ -1419,6 +1419,13 @@ export interface PrivateLinkConnectionState {
1419
1419
  export interface PrivateLinkConnectionApprovalRequest {
1420
1420
  /** The state of a private link connection */
1421
1421
  privateLinkServiceConnectionState?: PrivateLinkConnectionState;
1422
+ /** The resource of private endpoint. */
1423
+ privateEndpoint?: PrivateEndpoint;
1424
+ }
1425
+ /** Private endpoint which a connection belongs to. */
1426
+ export interface PrivateEndpoint {
1427
+ /** The resource Id for private endpoint */
1428
+ id?: string;
1422
1429
  }
1423
1430
  /** Wrapper for a collection of private link resources */
1424
1431
  export interface PrivateLinkResourcesWrapper {
@@ -6022,6 +6029,8 @@ export declare type DataFlowSource = Transformation & {
6022
6029
  export declare type DataFlowSink = Transformation & {
6023
6030
  /** Schema linked service reference. */
6024
6031
  schemaLinkedService?: LinkedServiceReference;
6032
+ /** Rejected data linked service reference. */
6033
+ rejectedDataLinkedService?: LinkedServiceReference;
6025
6034
  };
6026
6035
  /** The location of azure blob dataset. */
6027
6036
  export declare type AzureBlobStorageLocation = DatasetLocation & {