@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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
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
|
+
|
|
3
12
|
## 10.4.0 (2022-04-20)
|
|
4
13
|
|
|
5
14
|
**Features**
|
package/dist/index.js
CHANGED
|
@@ -4323,6 +4323,27 @@ const PrivateLinkConnectionApprovalRequest = {
|
|
|
4323
4323
|
name: "Composite",
|
|
4324
4324
|
className: "PrivateLinkConnectionState"
|
|
4325
4325
|
}
|
|
4326
|
+
},
|
|
4327
|
+
privateEndpoint: {
|
|
4328
|
+
serializedName: "privateEndpoint",
|
|
4329
|
+
type: {
|
|
4330
|
+
name: "Composite",
|
|
4331
|
+
className: "PrivateEndpoint"
|
|
4332
|
+
}
|
|
4333
|
+
}
|
|
4334
|
+
}
|
|
4335
|
+
}
|
|
4336
|
+
};
|
|
4337
|
+
const PrivateEndpoint = {
|
|
4338
|
+
type: {
|
|
4339
|
+
name: "Composite",
|
|
4340
|
+
className: "PrivateEndpoint",
|
|
4341
|
+
modelProperties: {
|
|
4342
|
+
id: {
|
|
4343
|
+
serializedName: "id",
|
|
4344
|
+
type: {
|
|
4345
|
+
name: "String"
|
|
4346
|
+
}
|
|
4326
4347
|
}
|
|
4327
4348
|
}
|
|
4328
4349
|
}
|
|
@@ -17194,6 +17215,12 @@ const DataFlowSink = {
|
|
|
17194
17215
|
name: "Composite",
|
|
17195
17216
|
className: "LinkedServiceReference"
|
|
17196
17217
|
}
|
|
17218
|
+
}, rejectedDataLinkedService: {
|
|
17219
|
+
serializedName: "rejectedDataLinkedService",
|
|
17220
|
+
type: {
|
|
17221
|
+
name: "Composite",
|
|
17222
|
+
className: "LinkedServiceReference"
|
|
17223
|
+
}
|
|
17197
17224
|
} })
|
|
17198
17225
|
}
|
|
17199
17226
|
};
|
|
@@ -25257,6 +25284,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
25257
25284
|
ArmIdWrapper: ArmIdWrapper,
|
|
25258
25285
|
PrivateLinkConnectionState: PrivateLinkConnectionState,
|
|
25259
25286
|
PrivateLinkConnectionApprovalRequest: PrivateLinkConnectionApprovalRequest,
|
|
25287
|
+
PrivateEndpoint: PrivateEndpoint,
|
|
25260
25288
|
PrivateLinkResourcesWrapper: PrivateLinkResourcesWrapper,
|
|
25261
25289
|
PrivateLinkResourceProperties: PrivateLinkResourceProperties,
|
|
25262
25290
|
Expression: Expression,
|
|
@@ -31232,7 +31260,7 @@ class DataFactoryManagementClient extends coreClient__namespace.ServiceClient {
|
|
|
31232
31260
|
requestContentType: "application/json; charset=utf-8",
|
|
31233
31261
|
credential: credentials
|
|
31234
31262
|
};
|
|
31235
|
-
const packageDetails = `azsdk-js-arm-datafactory/10.
|
|
31263
|
+
const packageDetails = `azsdk-js-arm-datafactory/10.5.0`;
|
|
31236
31264
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
31237
31265
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
31238
31266
|
: `${packageDetails}`;
|