@azure/arm-datafactory 10.4.0-alpha.20220420.4 → 10.5.1-alpha.20220516.2
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 +19 -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 +1 -1
- 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/package.json
CHANGED
|
@@ -1848,6 +1848,7 @@ export type DataFlowsGetResponse = DataFlowResource;
|
|
|
1848
1848
|
// @public
|
|
1849
1849
|
export type DataFlowSink = Transformation & {
|
|
1850
1850
|
schemaLinkedService?: LinkedServiceReference;
|
|
1851
|
+
rejectedDataLinkedService?: LinkedServiceReference;
|
|
1851
1852
|
};
|
|
1852
1853
|
|
|
1853
1854
|
// @public
|
|
@@ -6330,6 +6331,11 @@ export type PrestoSource = TabularSource & {
|
|
|
6330
6331
|
query?: Record<string, unknown>;
|
|
6331
6332
|
};
|
|
6332
6333
|
|
|
6334
|
+
// @public
|
|
6335
|
+
export interface PrivateEndpoint {
|
|
6336
|
+
id?: string;
|
|
6337
|
+
}
|
|
6338
|
+
|
|
6333
6339
|
// @public
|
|
6334
6340
|
export interface PrivateEndpointConnection {
|
|
6335
6341
|
createOrUpdate(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, privateEndpointWrapper: PrivateLinkConnectionApprovalRequestResource, options?: PrivateEndpointConnectionCreateOrUpdateOptionalParams): Promise<PrivateEndpointConnectionCreateOrUpdateResponse>;
|
|
@@ -6389,6 +6395,7 @@ export type PrivateEndPointConnectionsListByFactoryResponse = PrivateEndpointCon
|
|
|
6389
6395
|
|
|
6390
6396
|
// @public
|
|
6391
6397
|
export interface PrivateLinkConnectionApprovalRequest {
|
|
6398
|
+
privateEndpoint?: PrivateEndpoint;
|
|
6392
6399
|
privateLinkServiceConnectionState?: PrivateLinkConnectionState;
|
|
6393
6400
|
}
|
|
6394
6401
|
|
|
@@ -87,7 +87,7 @@ export class DataFactoryManagementClient extends coreClient.ServiceClient {
|
|
|
87
87
|
credential: credentials
|
|
88
88
|
};
|
|
89
89
|
|
|
90
|
-
const packageDetails = `azsdk-js-arm-datafactory/10.
|
|
90
|
+
const packageDetails = `azsdk-js-arm-datafactory/10.5.1`;
|
|
91
91
|
const userAgentPrefix =
|
|
92
92
|
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
93
93
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
package/src/models/index.ts
CHANGED
|
@@ -2261,6 +2261,14 @@ export interface PrivateLinkConnectionState {
|
|
|
2261
2261
|
export interface PrivateLinkConnectionApprovalRequest {
|
|
2262
2262
|
/** The state of a private link connection */
|
|
2263
2263
|
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;
|
|
2264
2272
|
}
|
|
2265
2273
|
|
|
2266
2274
|
/** Wrapper for a collection of private link resources */
|
|
@@ -7418,6 +7426,8 @@ export type DataFlowSource = Transformation & {
|
|
|
7418
7426
|
export type DataFlowSink = Transformation & {
|
|
7419
7427
|
/** Schema linked service reference. */
|
|
7420
7428
|
schemaLinkedService?: LinkedServiceReference;
|
|
7429
|
+
/** Rejected data linked service reference. */
|
|
7430
|
+
rejectedDataLinkedService?: LinkedServiceReference;
|
|
7421
7431
|
};
|
|
7422
7432
|
|
|
7423
7433
|
/** The location of azure blob dataset. */
|
package/src/models/mappers.ts
CHANGED
|
@@ -3641,6 +3641,28 @@ export const PrivateLinkConnectionApprovalRequest: coreClient.CompositeMapper =
|
|
|
3641
3641
|
name: "Composite",
|
|
3642
3642
|
className: "PrivateLinkConnectionState"
|
|
3643
3643
|
}
|
|
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
|
+
}
|
|
3644
3666
|
}
|
|
3645
3667
|
}
|
|
3646
3668
|
}
|
|
@@ -18472,6 +18494,13 @@ export const DataFlowSink: coreClient.CompositeMapper = {
|
|
|
18472
18494
|
name: "Composite",
|
|
18473
18495
|
className: "LinkedServiceReference"
|
|
18474
18496
|
}
|
|
18497
|
+
},
|
|
18498
|
+
rejectedDataLinkedService: {
|
|
18499
|
+
serializedName: "rejectedDataLinkedService",
|
|
18500
|
+
type: {
|
|
18501
|
+
name: "Composite",
|
|
18502
|
+
className: "LinkedServiceReference"
|
|
18503
|
+
}
|
|
18475
18504
|
}
|
|
18476
18505
|
}
|
|
18477
18506
|
}
|
|
@@ -2925,6 +2925,8 @@ export declare type DataFlowsGetResponse = DataFlowResource;
|
|
|
2925
2925
|
export declare type DataFlowSink = Transformation & {
|
|
2926
2926
|
/** Schema linked service reference. */
|
|
2927
2927
|
schemaLinkedService?: LinkedServiceReference;
|
|
2928
|
+
/** Rejected data linked service reference. */
|
|
2929
|
+
rejectedDataLinkedService?: LinkedServiceReference;
|
|
2928
2930
|
};
|
|
2929
2931
|
|
|
2930
2932
|
/** Optional parameters. */
|
|
@@ -9376,6 +9378,12 @@ export declare type PrestoSource = TabularSource & {
|
|
|
9376
9378
|
query?: Record<string, unknown>;
|
|
9377
9379
|
};
|
|
9378
9380
|
|
|
9381
|
+
/** Private endpoint which a connection belongs to. */
|
|
9382
|
+
export declare interface PrivateEndpoint {
|
|
9383
|
+
/** The resource Id for private endpoint */
|
|
9384
|
+
id?: string;
|
|
9385
|
+
}
|
|
9386
|
+
|
|
9379
9387
|
/** Interface representing a PrivateEndpointConnection. */
|
|
9380
9388
|
export declare interface PrivateEndpointConnection {
|
|
9381
9389
|
/**
|
|
@@ -9470,6 +9478,8 @@ export declare type PrivateEndPointConnectionsListByFactoryResponse = PrivateEnd
|
|
|
9470
9478
|
export declare interface PrivateLinkConnectionApprovalRequest {
|
|
9471
9479
|
/** The state of a private link connection */
|
|
9472
9480
|
privateLinkServiceConnectionState?: PrivateLinkConnectionState;
|
|
9481
|
+
/** The resource of private endpoint. */
|
|
9482
|
+
privateEndpoint?: PrivateEndpoint;
|
|
9473
9483
|
}
|
|
9474
9484
|
|
|
9475
9485
|
/** Private Endpoint Connection Approval ARM resource. */
|