Skip to content

Commit 87e8fdf

Browse files
authored
datafactory-track2-release (Azure#21780)
1 parent 8b09329 commit 87e8fdf

File tree

7 files changed

+59
-4
lines changed

7 files changed

+59
-4
lines changed

sdk/datafactory/arm-datafactory/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Release History
22

3+
## 10.5.0 (2022-05-09)
4+
5+
**Features**
6+
7+
- Added Interface PrivateEndpoint
8+
- Interface PrivateLinkConnectionApprovalRequest has a new optional parameter privateEndpoint
9+
- Type Alias DataFlowSink has a new parameter rejectedDataLinkedService
10+
11+
312
## 10.4.0 (2022-04-20)
413

514
**Features**
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"commit": "8a9bd9c5b65e5c3e5a8536f3c5b2b15bf9920b5d",
2+
"commit": "ee15422a60409285806e1673e191fe69333a7743",
33
"readme": "specification/datafactory/resource-manager/readme.md",
44
"autorest_command": "autorest --version=3.7.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\work\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\datafactory\\resource-manager\\readme.md --use=@autorest/typescript@6.0.0-alpha.19.20220408.1",
55
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
6-
"release_tool": "@azure-tools/js-sdk-release-tools@2.2.6",
6+
"release_tool": "@azure-tools/js-sdk-release-tools@2.3.0",
77
"use": "@autorest/typescript@6.0.0-alpha.19.20220408.1"
88
}

sdk/datafactory/arm-datafactory/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"sdk-type": "mgmt",
44
"author": "Microsoft Corporation",
55
"description": "A generated SDK for DataFactoryManagementClient.",
6-
"version": "10.4.0",
6+
"version": "10.5.0",
77
"engines": {
88
"node": ">=12.0.0"
99
},

sdk/datafactory/arm-datafactory/review/arm-datafactory.api.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1848,6 +1848,7 @@ export type DataFlowsGetResponse = DataFlowResource;
18481848
// @public
18491849
export type DataFlowSink = Transformation & {
18501850
schemaLinkedService?: LinkedServiceReference;
1851+
rejectedDataLinkedService?: LinkedServiceReference;
18511852
};
18521853

18531854
// @public
@@ -6330,6 +6331,11 @@ export type PrestoSource = TabularSource & {
63306331
query?: Record<string, unknown>;
63316332
};
63326333

6334+
// @public
6335+
export interface PrivateEndpoint {
6336+
id?: string;
6337+
}
6338+
63336339
// @public
63346340
export interface PrivateEndpointConnection {
63356341
createOrUpdate(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, privateEndpointWrapper: PrivateLinkConnectionApprovalRequestResource, options?: PrivateEndpointConnectionCreateOrUpdateOptionalParams): Promise<PrivateEndpointConnectionCreateOrUpdateResponse>;
@@ -6389,6 +6395,7 @@ export type PrivateEndPointConnectionsListByFactoryResponse = PrivateEndpointCon
63896395

63906396
// @public
63916397
export interface PrivateLinkConnectionApprovalRequest {
6398+
privateEndpoint?: PrivateEndpoint;
63926399
privateLinkServiceConnectionState?: PrivateLinkConnectionState;
63936400
}
63946401

sdk/datafactory/arm-datafactory/src/dataFactoryManagementClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export class DataFactoryManagementClient extends coreClient.ServiceClient {
8787
credential: credentials
8888
};
8989

90-
const packageDetails = `azsdk-js-arm-datafactory/10.4.0`;
90+
const packageDetails = `azsdk-js-arm-datafactory/10.5.0`;
9191
const userAgentPrefix =
9292
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
9393
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`

sdk/datafactory/arm-datafactory/src/models/index.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2261,6 +2261,14 @@ export interface PrivateLinkConnectionState {
22612261
export interface PrivateLinkConnectionApprovalRequest {
22622262
/** The state of a private link connection */
22632263
privateLinkServiceConnectionState?: PrivateLinkConnectionState;
2264+
/** The resource of private endpoint. */
2265+
privateEndpoint?: PrivateEndpoint;
2266+
}
2267+
2268+
/** Private endpoint which a connection belongs to. */
2269+
export interface PrivateEndpoint {
2270+
/** The resource Id for private endpoint */
2271+
id?: string;
22642272
}
22652273

22662274
/** Wrapper for a collection of private link resources */
@@ -7418,6 +7426,8 @@ export type DataFlowSource = Transformation & {
74187426
export type DataFlowSink = Transformation & {
74197427
/** Schema linked service reference. */
74207428
schemaLinkedService?: LinkedServiceReference;
7429+
/** Rejected data linked service reference. */
7430+
rejectedDataLinkedService?: LinkedServiceReference;
74217431
};
74227432

74237433
/** The location of azure blob dataset. */

sdk/datafactory/arm-datafactory/src/models/mappers.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3641,6 +3641,28 @@ export const PrivateLinkConnectionApprovalRequest: coreClient.CompositeMapper =
36413641
name: "Composite",
36423642
className: "PrivateLinkConnectionState"
36433643
}
3644+
},
3645+
privateEndpoint: {
3646+
serializedName: "privateEndpoint",
3647+
type: {
3648+
name: "Composite",
3649+
className: "PrivateEndpoint"
3650+
}
3651+
}
3652+
}
3653+
}
3654+
};
3655+
3656+
export const PrivateEndpoint: coreClient.CompositeMapper = {
3657+
type: {
3658+
name: "Composite",
3659+
className: "PrivateEndpoint",
3660+
modelProperties: {
3661+
id: {
3662+
serializedName: "id",
3663+
type: {
3664+
name: "String"
3665+
}
36443666
}
36453667
}
36463668
}
@@ -18472,6 +18494,13 @@ export const DataFlowSink: coreClient.CompositeMapper = {
1847218494
name: "Composite",
1847318495
className: "LinkedServiceReference"
1847418496
}
18497+
},
18498+
rejectedDataLinkedService: {
18499+
serializedName: "rejectedDataLinkedService",
18500+
type: {
18501+
name: "Composite",
18502+
className: "LinkedServiceReference"
18503+
}
1847518504
}
1847618505
}
1847718506
}

0 commit comments

Comments
 (0)