@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.
- package/CHANGELOG.md +9 -0
- package/dist/index.js +29 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +1 -1
- package/dist-esm/src/models/index.d.ts +9 -0
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +1 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +27 -0
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/package.json +3 -3
- package/review/arm-datafactory.api.md +7 -0
- package/src/dataFactoryManagementClient.ts +1 -1
- package/src/models/index.ts +10 -0
- package/src/models/mappers.ts +29 -0
- package/types/arm-datafactory.d.ts +10 -0
- package/types/tsdoc-metadata.json +1 -1
|
@@ -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.
|
|
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 & {
|