@azure/arm-datafactory 10.6.0-alpha.20220608.1 → 10.7.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 +503 -0
- package/dist/index.js +563 -52
- 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.d.ts.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +2 -5
- package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +1431 -1008
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +353 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +8 -2
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +204 -46
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/package.json +5 -6
- package/review/arm-datafactory.api.md +2344 -2643
- package/src/dataFactoryManagementClient.ts +2 -5
- package/src/models/index.ts +1450 -1004
- package/src/models/mappers.ts +246 -55
- package/types/arm-datafactory.d.ts +1421 -993
package/dist/index.js
CHANGED
|
@@ -38,760 +38,1113 @@ var coreRestPipeline__namespace = /*#__PURE__*/_interopNamespace(coreRestPipelin
|
|
|
38
38
|
/** Known values of {@link FactoryIdentityType} that the service accepts. */
|
|
39
39
|
exports.KnownFactoryIdentityType = void 0;
|
|
40
40
|
(function (KnownFactoryIdentityType) {
|
|
41
|
+
/** SystemAssigned */
|
|
41
42
|
KnownFactoryIdentityType["SystemAssigned"] = "SystemAssigned";
|
|
43
|
+
/** UserAssigned */
|
|
42
44
|
KnownFactoryIdentityType["UserAssigned"] = "UserAssigned";
|
|
45
|
+
/** SystemAssignedUserAssigned */
|
|
43
46
|
KnownFactoryIdentityType["SystemAssignedUserAssigned"] = "SystemAssigned,UserAssigned";
|
|
44
47
|
})(exports.KnownFactoryIdentityType || (exports.KnownFactoryIdentityType = {}));
|
|
45
48
|
/** Known values of {@link GlobalParameterType} that the service accepts. */
|
|
46
49
|
exports.KnownGlobalParameterType = void 0;
|
|
47
50
|
(function (KnownGlobalParameterType) {
|
|
51
|
+
/** Object */
|
|
48
52
|
KnownGlobalParameterType["Object"] = "Object";
|
|
53
|
+
/** String */
|
|
49
54
|
KnownGlobalParameterType["String"] = "String";
|
|
55
|
+
/** Int */
|
|
50
56
|
KnownGlobalParameterType["Int"] = "Int";
|
|
57
|
+
/** Float */
|
|
51
58
|
KnownGlobalParameterType["Float"] = "Float";
|
|
59
|
+
/** Bool */
|
|
52
60
|
KnownGlobalParameterType["Bool"] = "Bool";
|
|
61
|
+
/** Array */
|
|
53
62
|
KnownGlobalParameterType["Array"] = "Array";
|
|
54
63
|
})(exports.KnownGlobalParameterType || (exports.KnownGlobalParameterType = {}));
|
|
55
64
|
/** Known values of {@link PublicNetworkAccess} that the service accepts. */
|
|
56
65
|
exports.KnownPublicNetworkAccess = void 0;
|
|
57
66
|
(function (KnownPublicNetworkAccess) {
|
|
67
|
+
/** Enabled */
|
|
58
68
|
KnownPublicNetworkAccess["Enabled"] = "Enabled";
|
|
69
|
+
/** Disabled */
|
|
59
70
|
KnownPublicNetworkAccess["Disabled"] = "Disabled";
|
|
60
71
|
})(exports.KnownPublicNetworkAccess || (exports.KnownPublicNetworkAccess = {}));
|
|
61
72
|
/** Known values of {@link IntegrationRuntimeType} that the service accepts. */
|
|
62
73
|
exports.KnownIntegrationRuntimeType = void 0;
|
|
63
74
|
(function (KnownIntegrationRuntimeType) {
|
|
75
|
+
/** Managed */
|
|
64
76
|
KnownIntegrationRuntimeType["Managed"] = "Managed";
|
|
77
|
+
/** SelfHosted */
|
|
65
78
|
KnownIntegrationRuntimeType["SelfHosted"] = "SelfHosted";
|
|
66
79
|
})(exports.KnownIntegrationRuntimeType || (exports.KnownIntegrationRuntimeType = {}));
|
|
67
80
|
/** Known values of {@link IntegrationRuntimeAutoUpdate} that the service accepts. */
|
|
68
81
|
exports.KnownIntegrationRuntimeAutoUpdate = void 0;
|
|
69
82
|
(function (KnownIntegrationRuntimeAutoUpdate) {
|
|
83
|
+
/** On */
|
|
70
84
|
KnownIntegrationRuntimeAutoUpdate["On"] = "On";
|
|
85
|
+
/** Off */
|
|
71
86
|
KnownIntegrationRuntimeAutoUpdate["Off"] = "Off";
|
|
72
87
|
})(exports.KnownIntegrationRuntimeAutoUpdate || (exports.KnownIntegrationRuntimeAutoUpdate = {}));
|
|
73
88
|
/** Known values of {@link IntegrationRuntimeState} that the service accepts. */
|
|
74
89
|
exports.KnownIntegrationRuntimeState = void 0;
|
|
75
90
|
(function (KnownIntegrationRuntimeState) {
|
|
91
|
+
/** Initial */
|
|
76
92
|
KnownIntegrationRuntimeState["Initial"] = "Initial";
|
|
93
|
+
/** Stopped */
|
|
77
94
|
KnownIntegrationRuntimeState["Stopped"] = "Stopped";
|
|
95
|
+
/** Started */
|
|
78
96
|
KnownIntegrationRuntimeState["Started"] = "Started";
|
|
97
|
+
/** Starting */
|
|
79
98
|
KnownIntegrationRuntimeState["Starting"] = "Starting";
|
|
99
|
+
/** Stopping */
|
|
80
100
|
KnownIntegrationRuntimeState["Stopping"] = "Stopping";
|
|
101
|
+
/** NeedRegistration */
|
|
81
102
|
KnownIntegrationRuntimeState["NeedRegistration"] = "NeedRegistration";
|
|
103
|
+
/** Online */
|
|
82
104
|
KnownIntegrationRuntimeState["Online"] = "Online";
|
|
105
|
+
/** Limited */
|
|
83
106
|
KnownIntegrationRuntimeState["Limited"] = "Limited";
|
|
107
|
+
/** Offline */
|
|
84
108
|
KnownIntegrationRuntimeState["Offline"] = "Offline";
|
|
109
|
+
/** AccessDenied */
|
|
85
110
|
KnownIntegrationRuntimeState["AccessDenied"] = "AccessDenied";
|
|
86
111
|
})(exports.KnownIntegrationRuntimeState || (exports.KnownIntegrationRuntimeState = {}));
|
|
87
112
|
/** Known values of {@link IntegrationRuntimeAuthKeyName} that the service accepts. */
|
|
88
113
|
exports.KnownIntegrationRuntimeAuthKeyName = void 0;
|
|
89
114
|
(function (KnownIntegrationRuntimeAuthKeyName) {
|
|
115
|
+
/** AuthKey1 */
|
|
90
116
|
KnownIntegrationRuntimeAuthKeyName["AuthKey1"] = "authKey1";
|
|
117
|
+
/** AuthKey2 */
|
|
91
118
|
KnownIntegrationRuntimeAuthKeyName["AuthKey2"] = "authKey2";
|
|
92
119
|
})(exports.KnownIntegrationRuntimeAuthKeyName || (exports.KnownIntegrationRuntimeAuthKeyName = {}));
|
|
93
120
|
/** Known values of {@link SsisObjectMetadataType} that the service accepts. */
|
|
94
121
|
exports.KnownSsisObjectMetadataType = void 0;
|
|
95
122
|
(function (KnownSsisObjectMetadataType) {
|
|
123
|
+
/** Folder */
|
|
96
124
|
KnownSsisObjectMetadataType["Folder"] = "Folder";
|
|
125
|
+
/** Project */
|
|
97
126
|
KnownSsisObjectMetadataType["Project"] = "Project";
|
|
127
|
+
/** Package */
|
|
98
128
|
KnownSsisObjectMetadataType["Package"] = "Package";
|
|
129
|
+
/** Environment */
|
|
99
130
|
KnownSsisObjectMetadataType["Environment"] = "Environment";
|
|
100
131
|
})(exports.KnownSsisObjectMetadataType || (exports.KnownSsisObjectMetadataType = {}));
|
|
101
132
|
/** Known values of {@link SelfHostedIntegrationRuntimeNodeStatus} that the service accepts. */
|
|
102
133
|
exports.KnownSelfHostedIntegrationRuntimeNodeStatus = void 0;
|
|
103
134
|
(function (KnownSelfHostedIntegrationRuntimeNodeStatus) {
|
|
135
|
+
/** NeedRegistration */
|
|
104
136
|
KnownSelfHostedIntegrationRuntimeNodeStatus["NeedRegistration"] = "NeedRegistration";
|
|
137
|
+
/** Online */
|
|
105
138
|
KnownSelfHostedIntegrationRuntimeNodeStatus["Online"] = "Online";
|
|
139
|
+
/** Limited */
|
|
106
140
|
KnownSelfHostedIntegrationRuntimeNodeStatus["Limited"] = "Limited";
|
|
141
|
+
/** Offline */
|
|
107
142
|
KnownSelfHostedIntegrationRuntimeNodeStatus["Offline"] = "Offline";
|
|
143
|
+
/** Upgrading */
|
|
108
144
|
KnownSelfHostedIntegrationRuntimeNodeStatus["Upgrading"] = "Upgrading";
|
|
145
|
+
/** Initializing */
|
|
109
146
|
KnownSelfHostedIntegrationRuntimeNodeStatus["Initializing"] = "Initializing";
|
|
147
|
+
/** InitializeFailed */
|
|
110
148
|
KnownSelfHostedIntegrationRuntimeNodeStatus["InitializeFailed"] = "InitializeFailed";
|
|
111
149
|
})(exports.KnownSelfHostedIntegrationRuntimeNodeStatus || (exports.KnownSelfHostedIntegrationRuntimeNodeStatus = {}));
|
|
112
150
|
/** Known values of {@link IntegrationRuntimeUpdateResult} that the service accepts. */
|
|
113
151
|
exports.KnownIntegrationRuntimeUpdateResult = void 0;
|
|
114
152
|
(function (KnownIntegrationRuntimeUpdateResult) {
|
|
153
|
+
/** None */
|
|
115
154
|
KnownIntegrationRuntimeUpdateResult["None"] = "None";
|
|
155
|
+
/** Succeed */
|
|
116
156
|
KnownIntegrationRuntimeUpdateResult["Succeed"] = "Succeed";
|
|
157
|
+
/** Fail */
|
|
117
158
|
KnownIntegrationRuntimeUpdateResult["Fail"] = "Fail";
|
|
118
159
|
})(exports.KnownIntegrationRuntimeUpdateResult || (exports.KnownIntegrationRuntimeUpdateResult = {}));
|
|
119
160
|
/** Known values of {@link ParameterType} that the service accepts. */
|
|
120
161
|
exports.KnownParameterType = void 0;
|
|
121
162
|
(function (KnownParameterType) {
|
|
163
|
+
/** Object */
|
|
122
164
|
KnownParameterType["Object"] = "Object";
|
|
165
|
+
/** String */
|
|
123
166
|
KnownParameterType["String"] = "String";
|
|
167
|
+
/** Int */
|
|
124
168
|
KnownParameterType["Int"] = "Int";
|
|
169
|
+
/** Float */
|
|
125
170
|
KnownParameterType["Float"] = "Float";
|
|
171
|
+
/** Bool */
|
|
126
172
|
KnownParameterType["Bool"] = "Bool";
|
|
173
|
+
/** Array */
|
|
127
174
|
KnownParameterType["Array"] = "Array";
|
|
175
|
+
/** SecureString */
|
|
128
176
|
KnownParameterType["SecureString"] = "SecureString";
|
|
129
177
|
})(exports.KnownParameterType || (exports.KnownParameterType = {}));
|
|
178
|
+
/** Known values of {@link Type} that the service accepts. */
|
|
179
|
+
exports.KnownType = void 0;
|
|
180
|
+
(function (KnownType) {
|
|
181
|
+
/** LinkedServiceReference */
|
|
182
|
+
KnownType["LinkedServiceReference"] = "LinkedServiceReference";
|
|
183
|
+
})(exports.KnownType || (exports.KnownType = {}));
|
|
130
184
|
/** Known values of {@link DependencyCondition} that the service accepts. */
|
|
131
185
|
exports.KnownDependencyCondition = void 0;
|
|
132
186
|
(function (KnownDependencyCondition) {
|
|
187
|
+
/** Succeeded */
|
|
133
188
|
KnownDependencyCondition["Succeeded"] = "Succeeded";
|
|
189
|
+
/** Failed */
|
|
134
190
|
KnownDependencyCondition["Failed"] = "Failed";
|
|
191
|
+
/** Skipped */
|
|
135
192
|
KnownDependencyCondition["Skipped"] = "Skipped";
|
|
193
|
+
/** Completed */
|
|
136
194
|
KnownDependencyCondition["Completed"] = "Completed";
|
|
137
195
|
})(exports.KnownDependencyCondition || (exports.KnownDependencyCondition = {}));
|
|
138
196
|
/** Known values of {@link VariableType} that the service accepts. */
|
|
139
197
|
exports.KnownVariableType = void 0;
|
|
140
198
|
(function (KnownVariableType) {
|
|
199
|
+
/** String */
|
|
141
200
|
KnownVariableType["String"] = "String";
|
|
201
|
+
/** Bool */
|
|
142
202
|
KnownVariableType["Bool"] = "Bool";
|
|
203
|
+
/** Array */
|
|
143
204
|
KnownVariableType["Array"] = "Array";
|
|
144
205
|
})(exports.KnownVariableType || (exports.KnownVariableType = {}));
|
|
145
206
|
/** Known values of {@link RunQueryFilterOperand} that the service accepts. */
|
|
146
207
|
exports.KnownRunQueryFilterOperand = void 0;
|
|
147
208
|
(function (KnownRunQueryFilterOperand) {
|
|
209
|
+
/** PipelineName */
|
|
148
210
|
KnownRunQueryFilterOperand["PipelineName"] = "PipelineName";
|
|
211
|
+
/** Status */
|
|
149
212
|
KnownRunQueryFilterOperand["Status"] = "Status";
|
|
213
|
+
/** RunStart */
|
|
150
214
|
KnownRunQueryFilterOperand["RunStart"] = "RunStart";
|
|
215
|
+
/** RunEnd */
|
|
151
216
|
KnownRunQueryFilterOperand["RunEnd"] = "RunEnd";
|
|
217
|
+
/** ActivityName */
|
|
152
218
|
KnownRunQueryFilterOperand["ActivityName"] = "ActivityName";
|
|
219
|
+
/** ActivityRunStart */
|
|
153
220
|
KnownRunQueryFilterOperand["ActivityRunStart"] = "ActivityRunStart";
|
|
221
|
+
/** ActivityRunEnd */
|
|
154
222
|
KnownRunQueryFilterOperand["ActivityRunEnd"] = "ActivityRunEnd";
|
|
223
|
+
/** ActivityType */
|
|
155
224
|
KnownRunQueryFilterOperand["ActivityType"] = "ActivityType";
|
|
225
|
+
/** TriggerName */
|
|
156
226
|
KnownRunQueryFilterOperand["TriggerName"] = "TriggerName";
|
|
227
|
+
/** TriggerRunTimestamp */
|
|
157
228
|
KnownRunQueryFilterOperand["TriggerRunTimestamp"] = "TriggerRunTimestamp";
|
|
229
|
+
/** RunGroupId */
|
|
158
230
|
KnownRunQueryFilterOperand["RunGroupId"] = "RunGroupId";
|
|
231
|
+
/** LatestOnly */
|
|
159
232
|
KnownRunQueryFilterOperand["LatestOnly"] = "LatestOnly";
|
|
160
233
|
})(exports.KnownRunQueryFilterOperand || (exports.KnownRunQueryFilterOperand = {}));
|
|
161
234
|
/** Known values of {@link RunQueryFilterOperator} that the service accepts. */
|
|
162
235
|
exports.KnownRunQueryFilterOperator = void 0;
|
|
163
236
|
(function (KnownRunQueryFilterOperator) {
|
|
237
|
+
/** Equals */
|
|
164
238
|
KnownRunQueryFilterOperator["Equals"] = "Equals";
|
|
239
|
+
/** NotEquals */
|
|
165
240
|
KnownRunQueryFilterOperator["NotEquals"] = "NotEquals";
|
|
241
|
+
/** In */
|
|
166
242
|
KnownRunQueryFilterOperator["In"] = "In";
|
|
243
|
+
/** NotIn */
|
|
167
244
|
KnownRunQueryFilterOperator["NotIn"] = "NotIn";
|
|
168
245
|
})(exports.KnownRunQueryFilterOperator || (exports.KnownRunQueryFilterOperator = {}));
|
|
169
246
|
/** Known values of {@link RunQueryOrderByField} that the service accepts. */
|
|
170
247
|
exports.KnownRunQueryOrderByField = void 0;
|
|
171
248
|
(function (KnownRunQueryOrderByField) {
|
|
249
|
+
/** RunStart */
|
|
172
250
|
KnownRunQueryOrderByField["RunStart"] = "RunStart";
|
|
251
|
+
/** RunEnd */
|
|
173
252
|
KnownRunQueryOrderByField["RunEnd"] = "RunEnd";
|
|
253
|
+
/** PipelineName */
|
|
174
254
|
KnownRunQueryOrderByField["PipelineName"] = "PipelineName";
|
|
255
|
+
/** Status */
|
|
175
256
|
KnownRunQueryOrderByField["Status"] = "Status";
|
|
257
|
+
/** ActivityName */
|
|
176
258
|
KnownRunQueryOrderByField["ActivityName"] = "ActivityName";
|
|
259
|
+
/** ActivityRunStart */
|
|
177
260
|
KnownRunQueryOrderByField["ActivityRunStart"] = "ActivityRunStart";
|
|
261
|
+
/** ActivityRunEnd */
|
|
178
262
|
KnownRunQueryOrderByField["ActivityRunEnd"] = "ActivityRunEnd";
|
|
263
|
+
/** TriggerName */
|
|
179
264
|
KnownRunQueryOrderByField["TriggerName"] = "TriggerName";
|
|
265
|
+
/** TriggerRunTimestamp */
|
|
180
266
|
KnownRunQueryOrderByField["TriggerRunTimestamp"] = "TriggerRunTimestamp";
|
|
181
267
|
})(exports.KnownRunQueryOrderByField || (exports.KnownRunQueryOrderByField = {}));
|
|
182
268
|
/** Known values of {@link RunQueryOrder} that the service accepts. */
|
|
183
269
|
exports.KnownRunQueryOrder = void 0;
|
|
184
270
|
(function (KnownRunQueryOrder) {
|
|
271
|
+
/** ASC */
|
|
185
272
|
KnownRunQueryOrder["ASC"] = "ASC";
|
|
273
|
+
/** Desc */
|
|
186
274
|
KnownRunQueryOrder["Desc"] = "DESC";
|
|
187
275
|
})(exports.KnownRunQueryOrder || (exports.KnownRunQueryOrder = {}));
|
|
188
276
|
/** Known values of {@link TriggerRuntimeState} that the service accepts. */
|
|
189
277
|
exports.KnownTriggerRuntimeState = void 0;
|
|
190
278
|
(function (KnownTriggerRuntimeState) {
|
|
279
|
+
/** Started */
|
|
191
280
|
KnownTriggerRuntimeState["Started"] = "Started";
|
|
281
|
+
/** Stopped */
|
|
192
282
|
KnownTriggerRuntimeState["Stopped"] = "Stopped";
|
|
283
|
+
/** Disabled */
|
|
193
284
|
KnownTriggerRuntimeState["Disabled"] = "Disabled";
|
|
194
285
|
})(exports.KnownTriggerRuntimeState || (exports.KnownTriggerRuntimeState = {}));
|
|
195
286
|
/** Known values of {@link EventSubscriptionStatus} that the service accepts. */
|
|
196
287
|
exports.KnownEventSubscriptionStatus = void 0;
|
|
197
288
|
(function (KnownEventSubscriptionStatus) {
|
|
289
|
+
/** Enabled */
|
|
198
290
|
KnownEventSubscriptionStatus["Enabled"] = "Enabled";
|
|
291
|
+
/** Provisioning */
|
|
199
292
|
KnownEventSubscriptionStatus["Provisioning"] = "Provisioning";
|
|
293
|
+
/** Deprovisioning */
|
|
200
294
|
KnownEventSubscriptionStatus["Deprovisioning"] = "Deprovisioning";
|
|
295
|
+
/** Disabled */
|
|
201
296
|
KnownEventSubscriptionStatus["Disabled"] = "Disabled";
|
|
297
|
+
/** Unknown */
|
|
202
298
|
KnownEventSubscriptionStatus["Unknown"] = "Unknown";
|
|
203
299
|
})(exports.KnownEventSubscriptionStatus || (exports.KnownEventSubscriptionStatus = {}));
|
|
204
300
|
/** Known values of {@link TriggerRunStatus} that the service accepts. */
|
|
205
301
|
exports.KnownTriggerRunStatus = void 0;
|
|
206
302
|
(function (KnownTriggerRunStatus) {
|
|
303
|
+
/** Succeeded */
|
|
207
304
|
KnownTriggerRunStatus["Succeeded"] = "Succeeded";
|
|
305
|
+
/** Failed */
|
|
208
306
|
KnownTriggerRunStatus["Failed"] = "Failed";
|
|
307
|
+
/** Inprogress */
|
|
209
308
|
KnownTriggerRunStatus["Inprogress"] = "Inprogress";
|
|
210
309
|
})(exports.KnownTriggerRunStatus || (exports.KnownTriggerRunStatus = {}));
|
|
211
310
|
/** Known values of {@link DataFlowDebugCommandType} that the service accepts. */
|
|
212
311
|
exports.KnownDataFlowDebugCommandType = void 0;
|
|
213
312
|
(function (KnownDataFlowDebugCommandType) {
|
|
313
|
+
/** ExecutePreviewQuery */
|
|
214
314
|
KnownDataFlowDebugCommandType["ExecutePreviewQuery"] = "executePreviewQuery";
|
|
315
|
+
/** ExecuteStatisticsQuery */
|
|
215
316
|
KnownDataFlowDebugCommandType["ExecuteStatisticsQuery"] = "executeStatisticsQuery";
|
|
317
|
+
/** ExecuteExpressionQuery */
|
|
216
318
|
KnownDataFlowDebugCommandType["ExecuteExpressionQuery"] = "executeExpressionQuery";
|
|
217
319
|
})(exports.KnownDataFlowDebugCommandType || (exports.KnownDataFlowDebugCommandType = {}));
|
|
218
320
|
/** Known values of {@link DataFlowReferenceType} that the service accepts. */
|
|
219
321
|
exports.KnownDataFlowReferenceType = void 0;
|
|
220
322
|
(function (KnownDataFlowReferenceType) {
|
|
323
|
+
/** DataFlowReference */
|
|
221
324
|
KnownDataFlowReferenceType["DataFlowReference"] = "DataFlowReference";
|
|
222
325
|
})(exports.KnownDataFlowReferenceType || (exports.KnownDataFlowReferenceType = {}));
|
|
223
326
|
/** Known values of {@link ManagedVirtualNetworkReferenceType} that the service accepts. */
|
|
224
327
|
exports.KnownManagedVirtualNetworkReferenceType = void 0;
|
|
225
328
|
(function (KnownManagedVirtualNetworkReferenceType) {
|
|
329
|
+
/** ManagedVirtualNetworkReference */
|
|
226
330
|
KnownManagedVirtualNetworkReferenceType["ManagedVirtualNetworkReference"] = "ManagedVirtualNetworkReference";
|
|
227
331
|
})(exports.KnownManagedVirtualNetworkReferenceType || (exports.KnownManagedVirtualNetworkReferenceType = {}));
|
|
228
332
|
/** Known values of {@link CredentialReferenceType} that the service accepts. */
|
|
229
333
|
exports.KnownCredentialReferenceType = void 0;
|
|
230
334
|
(function (KnownCredentialReferenceType) {
|
|
335
|
+
/** CredentialReference */
|
|
231
336
|
KnownCredentialReferenceType["CredentialReference"] = "CredentialReference";
|
|
232
337
|
})(exports.KnownCredentialReferenceType || (exports.KnownCredentialReferenceType = {}));
|
|
233
338
|
/** Known values of {@link DataFlowComputeType} that the service accepts. */
|
|
234
339
|
exports.KnownDataFlowComputeType = void 0;
|
|
235
340
|
(function (KnownDataFlowComputeType) {
|
|
341
|
+
/** General */
|
|
236
342
|
KnownDataFlowComputeType["General"] = "General";
|
|
343
|
+
/** MemoryOptimized */
|
|
237
344
|
KnownDataFlowComputeType["MemoryOptimized"] = "MemoryOptimized";
|
|
345
|
+
/** ComputeOptimized */
|
|
238
346
|
KnownDataFlowComputeType["ComputeOptimized"] = "ComputeOptimized";
|
|
239
347
|
})(exports.KnownDataFlowComputeType || (exports.KnownDataFlowComputeType = {}));
|
|
240
348
|
/** Known values of {@link IntegrationRuntimeSsisCatalogPricingTier} that the service accepts. */
|
|
241
349
|
exports.KnownIntegrationRuntimeSsisCatalogPricingTier = void 0;
|
|
242
350
|
(function (KnownIntegrationRuntimeSsisCatalogPricingTier) {
|
|
351
|
+
/** Basic */
|
|
243
352
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Basic"] = "Basic";
|
|
353
|
+
/** Standard */
|
|
244
354
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Standard"] = "Standard";
|
|
355
|
+
/** Premium */
|
|
245
356
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Premium"] = "Premium";
|
|
357
|
+
/** PremiumRS */
|
|
246
358
|
KnownIntegrationRuntimeSsisCatalogPricingTier["PremiumRS"] = "PremiumRS";
|
|
247
359
|
})(exports.KnownIntegrationRuntimeSsisCatalogPricingTier || (exports.KnownIntegrationRuntimeSsisCatalogPricingTier = {}));
|
|
248
360
|
/** Known values of {@link IntegrationRuntimeLicenseType} that the service accepts. */
|
|
249
361
|
exports.KnownIntegrationRuntimeLicenseType = void 0;
|
|
250
362
|
(function (KnownIntegrationRuntimeLicenseType) {
|
|
363
|
+
/** BasePrice */
|
|
251
364
|
KnownIntegrationRuntimeLicenseType["BasePrice"] = "BasePrice";
|
|
365
|
+
/** LicenseIncluded */
|
|
252
366
|
KnownIntegrationRuntimeLicenseType["LicenseIncluded"] = "LicenseIncluded";
|
|
253
367
|
})(exports.KnownIntegrationRuntimeLicenseType || (exports.KnownIntegrationRuntimeLicenseType = {}));
|
|
254
368
|
/** Known values of {@link IntegrationRuntimeEntityReferenceType} that the service accepts. */
|
|
255
369
|
exports.KnownIntegrationRuntimeEntityReferenceType = void 0;
|
|
256
370
|
(function (KnownIntegrationRuntimeEntityReferenceType) {
|
|
371
|
+
/** IntegrationRuntimeReference */
|
|
257
372
|
KnownIntegrationRuntimeEntityReferenceType["IntegrationRuntimeReference"] = "IntegrationRuntimeReference";
|
|
373
|
+
/** LinkedServiceReference */
|
|
258
374
|
KnownIntegrationRuntimeEntityReferenceType["LinkedServiceReference"] = "LinkedServiceReference";
|
|
259
375
|
})(exports.KnownIntegrationRuntimeEntityReferenceType || (exports.KnownIntegrationRuntimeEntityReferenceType = {}));
|
|
260
376
|
/** Known values of {@link IntegrationRuntimeEdition} that the service accepts. */
|
|
261
377
|
exports.KnownIntegrationRuntimeEdition = void 0;
|
|
262
378
|
(function (KnownIntegrationRuntimeEdition) {
|
|
379
|
+
/** Standard */
|
|
263
380
|
KnownIntegrationRuntimeEdition["Standard"] = "Standard";
|
|
381
|
+
/** Enterprise */
|
|
264
382
|
KnownIntegrationRuntimeEdition["Enterprise"] = "Enterprise";
|
|
265
383
|
})(exports.KnownIntegrationRuntimeEdition || (exports.KnownIntegrationRuntimeEdition = {}));
|
|
266
384
|
/** Known values of {@link ManagedIntegrationRuntimeNodeStatus} that the service accepts. */
|
|
267
385
|
exports.KnownManagedIntegrationRuntimeNodeStatus = void 0;
|
|
268
386
|
(function (KnownManagedIntegrationRuntimeNodeStatus) {
|
|
387
|
+
/** Starting */
|
|
269
388
|
KnownManagedIntegrationRuntimeNodeStatus["Starting"] = "Starting";
|
|
389
|
+
/** Available */
|
|
270
390
|
KnownManagedIntegrationRuntimeNodeStatus["Available"] = "Available";
|
|
391
|
+
/** Recycling */
|
|
271
392
|
KnownManagedIntegrationRuntimeNodeStatus["Recycling"] = "Recycling";
|
|
393
|
+
/** Unavailable */
|
|
272
394
|
KnownManagedIntegrationRuntimeNodeStatus["Unavailable"] = "Unavailable";
|
|
273
395
|
})(exports.KnownManagedIntegrationRuntimeNodeStatus || (exports.KnownManagedIntegrationRuntimeNodeStatus = {}));
|
|
274
396
|
/** Known values of {@link IntegrationRuntimeInternalChannelEncryptionMode} that the service accepts. */
|
|
275
397
|
exports.KnownIntegrationRuntimeInternalChannelEncryptionMode = void 0;
|
|
276
398
|
(function (KnownIntegrationRuntimeInternalChannelEncryptionMode) {
|
|
399
|
+
/** NotSet */
|
|
277
400
|
KnownIntegrationRuntimeInternalChannelEncryptionMode["NotSet"] = "NotSet";
|
|
401
|
+
/** SslEncrypted */
|
|
278
402
|
KnownIntegrationRuntimeInternalChannelEncryptionMode["SslEncrypted"] = "SslEncrypted";
|
|
403
|
+
/** NotEncrypted */
|
|
279
404
|
KnownIntegrationRuntimeInternalChannelEncryptionMode["NotEncrypted"] = "NotEncrypted";
|
|
280
405
|
})(exports.KnownIntegrationRuntimeInternalChannelEncryptionMode || (exports.KnownIntegrationRuntimeInternalChannelEncryptionMode = {}));
|
|
281
406
|
/** Known values of {@link SqlAlwaysEncryptedAkvAuthType} that the service accepts. */
|
|
282
407
|
exports.KnownSqlAlwaysEncryptedAkvAuthType = void 0;
|
|
283
408
|
(function (KnownSqlAlwaysEncryptedAkvAuthType) {
|
|
409
|
+
/** ServicePrincipal */
|
|
284
410
|
KnownSqlAlwaysEncryptedAkvAuthType["ServicePrincipal"] = "ServicePrincipal";
|
|
411
|
+
/** ManagedIdentity */
|
|
285
412
|
KnownSqlAlwaysEncryptedAkvAuthType["ManagedIdentity"] = "ManagedIdentity";
|
|
413
|
+
/** UserAssignedManagedIdentity */
|
|
286
414
|
KnownSqlAlwaysEncryptedAkvAuthType["UserAssignedManagedIdentity"] = "UserAssignedManagedIdentity";
|
|
287
415
|
})(exports.KnownSqlAlwaysEncryptedAkvAuthType || (exports.KnownSqlAlwaysEncryptedAkvAuthType = {}));
|
|
288
416
|
/** Known values of {@link CosmosDbServicePrincipalCredentialType} that the service accepts. */
|
|
289
417
|
exports.KnownCosmosDbServicePrincipalCredentialType = void 0;
|
|
290
418
|
(function (KnownCosmosDbServicePrincipalCredentialType) {
|
|
419
|
+
/** ServicePrincipalKey */
|
|
291
420
|
KnownCosmosDbServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
421
|
+
/** ServicePrincipalCert */
|
|
292
422
|
KnownCosmosDbServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
293
423
|
})(exports.KnownCosmosDbServicePrincipalCredentialType || (exports.KnownCosmosDbServicePrincipalCredentialType = {}));
|
|
294
424
|
/** Known values of {@link CosmosDbConnectionMode} that the service accepts. */
|
|
295
425
|
exports.KnownCosmosDbConnectionMode = void 0;
|
|
296
426
|
(function (KnownCosmosDbConnectionMode) {
|
|
427
|
+
/** Gateway */
|
|
297
428
|
KnownCosmosDbConnectionMode["Gateway"] = "Gateway";
|
|
429
|
+
/** Direct */
|
|
298
430
|
KnownCosmosDbConnectionMode["Direct"] = "Direct";
|
|
299
431
|
})(exports.KnownCosmosDbConnectionMode || (exports.KnownCosmosDbConnectionMode = {}));
|
|
300
432
|
/** Known values of {@link SybaseAuthenticationType} that the service accepts. */
|
|
301
433
|
exports.KnownSybaseAuthenticationType = void 0;
|
|
302
434
|
(function (KnownSybaseAuthenticationType) {
|
|
435
|
+
/** Basic */
|
|
303
436
|
KnownSybaseAuthenticationType["Basic"] = "Basic";
|
|
437
|
+
/** Windows */
|
|
304
438
|
KnownSybaseAuthenticationType["Windows"] = "Windows";
|
|
305
439
|
})(exports.KnownSybaseAuthenticationType || (exports.KnownSybaseAuthenticationType = {}));
|
|
306
440
|
/** Known values of {@link Db2AuthenticationType} that the service accepts. */
|
|
307
441
|
exports.KnownDb2AuthenticationType = void 0;
|
|
308
442
|
(function (KnownDb2AuthenticationType) {
|
|
443
|
+
/** Basic */
|
|
309
444
|
KnownDb2AuthenticationType["Basic"] = "Basic";
|
|
310
445
|
})(exports.KnownDb2AuthenticationType || (exports.KnownDb2AuthenticationType = {}));
|
|
311
446
|
/** Known values of {@link TeradataAuthenticationType} that the service accepts. */
|
|
312
447
|
exports.KnownTeradataAuthenticationType = void 0;
|
|
313
448
|
(function (KnownTeradataAuthenticationType) {
|
|
449
|
+
/** Basic */
|
|
314
450
|
KnownTeradataAuthenticationType["Basic"] = "Basic";
|
|
451
|
+
/** Windows */
|
|
315
452
|
KnownTeradataAuthenticationType["Windows"] = "Windows";
|
|
316
453
|
})(exports.KnownTeradataAuthenticationType || (exports.KnownTeradataAuthenticationType = {}));
|
|
317
454
|
/** Known values of {@link ODataAuthenticationType} that the service accepts. */
|
|
318
455
|
exports.KnownODataAuthenticationType = void 0;
|
|
319
456
|
(function (KnownODataAuthenticationType) {
|
|
457
|
+
/** Basic */
|
|
320
458
|
KnownODataAuthenticationType["Basic"] = "Basic";
|
|
459
|
+
/** Anonymous */
|
|
321
460
|
KnownODataAuthenticationType["Anonymous"] = "Anonymous";
|
|
461
|
+
/** Windows */
|
|
322
462
|
KnownODataAuthenticationType["Windows"] = "Windows";
|
|
463
|
+
/** AadServicePrincipal */
|
|
323
464
|
KnownODataAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
|
|
465
|
+
/** ManagedServiceIdentity */
|
|
324
466
|
KnownODataAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
|
|
325
467
|
})(exports.KnownODataAuthenticationType || (exports.KnownODataAuthenticationType = {}));
|
|
326
468
|
/** Known values of {@link ODataAadServicePrincipalCredentialType} that the service accepts. */
|
|
327
469
|
exports.KnownODataAadServicePrincipalCredentialType = void 0;
|
|
328
470
|
(function (KnownODataAadServicePrincipalCredentialType) {
|
|
471
|
+
/** ServicePrincipalKey */
|
|
329
472
|
KnownODataAadServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
473
|
+
/** ServicePrincipalCert */
|
|
330
474
|
KnownODataAadServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
331
475
|
})(exports.KnownODataAadServicePrincipalCredentialType || (exports.KnownODataAadServicePrincipalCredentialType = {}));
|
|
332
476
|
/** Known values of {@link WebAuthenticationType} that the service accepts. */
|
|
333
477
|
exports.KnownWebAuthenticationType = void 0;
|
|
334
478
|
(function (KnownWebAuthenticationType) {
|
|
479
|
+
/** Basic */
|
|
335
480
|
KnownWebAuthenticationType["Basic"] = "Basic";
|
|
481
|
+
/** Anonymous */
|
|
336
482
|
KnownWebAuthenticationType["Anonymous"] = "Anonymous";
|
|
483
|
+
/** ClientCertificate */
|
|
337
484
|
KnownWebAuthenticationType["ClientCertificate"] = "ClientCertificate";
|
|
338
485
|
})(exports.KnownWebAuthenticationType || (exports.KnownWebAuthenticationType = {}));
|
|
339
486
|
/** Known values of {@link MongoDbAuthenticationType} that the service accepts. */
|
|
340
487
|
exports.KnownMongoDbAuthenticationType = void 0;
|
|
341
488
|
(function (KnownMongoDbAuthenticationType) {
|
|
489
|
+
/** Basic */
|
|
342
490
|
KnownMongoDbAuthenticationType["Basic"] = "Basic";
|
|
491
|
+
/** Anonymous */
|
|
343
492
|
KnownMongoDbAuthenticationType["Anonymous"] = "Anonymous";
|
|
344
493
|
})(exports.KnownMongoDbAuthenticationType || (exports.KnownMongoDbAuthenticationType = {}));
|
|
345
494
|
/** Known values of {@link RestServiceAuthenticationType} that the service accepts. */
|
|
346
495
|
exports.KnownRestServiceAuthenticationType = void 0;
|
|
347
496
|
(function (KnownRestServiceAuthenticationType) {
|
|
497
|
+
/** Anonymous */
|
|
348
498
|
KnownRestServiceAuthenticationType["Anonymous"] = "Anonymous";
|
|
499
|
+
/** Basic */
|
|
349
500
|
KnownRestServiceAuthenticationType["Basic"] = "Basic";
|
|
501
|
+
/** AadServicePrincipal */
|
|
350
502
|
KnownRestServiceAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
|
|
503
|
+
/** ManagedServiceIdentity */
|
|
351
504
|
KnownRestServiceAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
|
|
505
|
+
/** OAuth2ClientCredential */
|
|
352
506
|
KnownRestServiceAuthenticationType["OAuth2ClientCredential"] = "OAuth2ClientCredential";
|
|
353
507
|
})(exports.KnownRestServiceAuthenticationType || (exports.KnownRestServiceAuthenticationType = {}));
|
|
354
508
|
/** Known values of {@link TeamDeskAuthenticationType} that the service accepts. */
|
|
355
509
|
exports.KnownTeamDeskAuthenticationType = void 0;
|
|
356
510
|
(function (KnownTeamDeskAuthenticationType) {
|
|
511
|
+
/** Basic */
|
|
357
512
|
KnownTeamDeskAuthenticationType["Basic"] = "Basic";
|
|
513
|
+
/** Token */
|
|
358
514
|
KnownTeamDeskAuthenticationType["Token"] = "Token";
|
|
359
515
|
})(exports.KnownTeamDeskAuthenticationType || (exports.KnownTeamDeskAuthenticationType = {}));
|
|
360
516
|
/** Known values of {@link ZendeskAuthenticationType} that the service accepts. */
|
|
361
517
|
exports.KnownZendeskAuthenticationType = void 0;
|
|
362
518
|
(function (KnownZendeskAuthenticationType) {
|
|
519
|
+
/** Basic */
|
|
363
520
|
KnownZendeskAuthenticationType["Basic"] = "Basic";
|
|
521
|
+
/** Token */
|
|
364
522
|
KnownZendeskAuthenticationType["Token"] = "Token";
|
|
365
523
|
})(exports.KnownZendeskAuthenticationType || (exports.KnownZendeskAuthenticationType = {}));
|
|
366
524
|
/** Known values of {@link HttpAuthenticationType} that the service accepts. */
|
|
367
525
|
exports.KnownHttpAuthenticationType = void 0;
|
|
368
526
|
(function (KnownHttpAuthenticationType) {
|
|
527
|
+
/** Basic */
|
|
369
528
|
KnownHttpAuthenticationType["Basic"] = "Basic";
|
|
529
|
+
/** Anonymous */
|
|
370
530
|
KnownHttpAuthenticationType["Anonymous"] = "Anonymous";
|
|
531
|
+
/** Digest */
|
|
371
532
|
KnownHttpAuthenticationType["Digest"] = "Digest";
|
|
533
|
+
/** Windows */
|
|
372
534
|
KnownHttpAuthenticationType["Windows"] = "Windows";
|
|
535
|
+
/** ClientCertificate */
|
|
373
536
|
KnownHttpAuthenticationType["ClientCertificate"] = "ClientCertificate";
|
|
374
537
|
})(exports.KnownHttpAuthenticationType || (exports.KnownHttpAuthenticationType = {}));
|
|
375
538
|
/** Known values of {@link FtpAuthenticationType} that the service accepts. */
|
|
376
539
|
exports.KnownFtpAuthenticationType = void 0;
|
|
377
540
|
(function (KnownFtpAuthenticationType) {
|
|
541
|
+
/** Basic */
|
|
378
542
|
KnownFtpAuthenticationType["Basic"] = "Basic";
|
|
543
|
+
/** Anonymous */
|
|
379
544
|
KnownFtpAuthenticationType["Anonymous"] = "Anonymous";
|
|
380
545
|
})(exports.KnownFtpAuthenticationType || (exports.KnownFtpAuthenticationType = {}));
|
|
381
546
|
/** Known values of {@link SftpAuthenticationType} that the service accepts. */
|
|
382
547
|
exports.KnownSftpAuthenticationType = void 0;
|
|
383
548
|
(function (KnownSftpAuthenticationType) {
|
|
549
|
+
/** Basic */
|
|
384
550
|
KnownSftpAuthenticationType["Basic"] = "Basic";
|
|
551
|
+
/** SshPublicKey */
|
|
385
552
|
KnownSftpAuthenticationType["SshPublicKey"] = "SshPublicKey";
|
|
553
|
+
/** MultiFactor */
|
|
386
554
|
KnownSftpAuthenticationType["MultiFactor"] = "MultiFactor";
|
|
387
555
|
})(exports.KnownSftpAuthenticationType || (exports.KnownSftpAuthenticationType = {}));
|
|
388
556
|
/** Known values of {@link SapHanaAuthenticationType} that the service accepts. */
|
|
389
557
|
exports.KnownSapHanaAuthenticationType = void 0;
|
|
390
558
|
(function (KnownSapHanaAuthenticationType) {
|
|
559
|
+
/** Basic */
|
|
391
560
|
KnownSapHanaAuthenticationType["Basic"] = "Basic";
|
|
561
|
+
/** Windows */
|
|
392
562
|
KnownSapHanaAuthenticationType["Windows"] = "Windows";
|
|
393
563
|
})(exports.KnownSapHanaAuthenticationType || (exports.KnownSapHanaAuthenticationType = {}));
|
|
394
564
|
/** Known values of {@link GoogleBigQueryAuthenticationType} that the service accepts. */
|
|
395
565
|
exports.KnownGoogleBigQueryAuthenticationType = void 0;
|
|
396
566
|
(function (KnownGoogleBigQueryAuthenticationType) {
|
|
567
|
+
/** ServiceAuthentication */
|
|
397
568
|
KnownGoogleBigQueryAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
|
|
569
|
+
/** UserAuthentication */
|
|
398
570
|
KnownGoogleBigQueryAuthenticationType["UserAuthentication"] = "UserAuthentication";
|
|
399
571
|
})(exports.KnownGoogleBigQueryAuthenticationType || (exports.KnownGoogleBigQueryAuthenticationType = {}));
|
|
400
572
|
/** Known values of {@link HBaseAuthenticationType} that the service accepts. */
|
|
401
573
|
exports.KnownHBaseAuthenticationType = void 0;
|
|
402
574
|
(function (KnownHBaseAuthenticationType) {
|
|
575
|
+
/** Anonymous */
|
|
403
576
|
KnownHBaseAuthenticationType["Anonymous"] = "Anonymous";
|
|
577
|
+
/** Basic */
|
|
404
578
|
KnownHBaseAuthenticationType["Basic"] = "Basic";
|
|
405
579
|
})(exports.KnownHBaseAuthenticationType || (exports.KnownHBaseAuthenticationType = {}));
|
|
406
580
|
/** Known values of {@link HiveServerType} that the service accepts. */
|
|
407
581
|
exports.KnownHiveServerType = void 0;
|
|
408
582
|
(function (KnownHiveServerType) {
|
|
583
|
+
/** HiveServer1 */
|
|
409
584
|
KnownHiveServerType["HiveServer1"] = "HiveServer1";
|
|
585
|
+
/** HiveServer2 */
|
|
410
586
|
KnownHiveServerType["HiveServer2"] = "HiveServer2";
|
|
587
|
+
/** HiveThriftServer */
|
|
411
588
|
KnownHiveServerType["HiveThriftServer"] = "HiveThriftServer";
|
|
412
589
|
})(exports.KnownHiveServerType || (exports.KnownHiveServerType = {}));
|
|
413
590
|
/** Known values of {@link HiveThriftTransportProtocol} that the service accepts. */
|
|
414
591
|
exports.KnownHiveThriftTransportProtocol = void 0;
|
|
415
592
|
(function (KnownHiveThriftTransportProtocol) {
|
|
593
|
+
/** Binary */
|
|
416
594
|
KnownHiveThriftTransportProtocol["Binary"] = "Binary";
|
|
595
|
+
/** Sasl */
|
|
417
596
|
KnownHiveThriftTransportProtocol["Sasl"] = "SASL";
|
|
597
|
+
/** Http */
|
|
418
598
|
KnownHiveThriftTransportProtocol["Http"] = "HTTP ";
|
|
419
599
|
})(exports.KnownHiveThriftTransportProtocol || (exports.KnownHiveThriftTransportProtocol = {}));
|
|
420
600
|
/** Known values of {@link HiveAuthenticationType} that the service accepts. */
|
|
421
601
|
exports.KnownHiveAuthenticationType = void 0;
|
|
422
602
|
(function (KnownHiveAuthenticationType) {
|
|
603
|
+
/** Anonymous */
|
|
423
604
|
KnownHiveAuthenticationType["Anonymous"] = "Anonymous";
|
|
605
|
+
/** Username */
|
|
424
606
|
KnownHiveAuthenticationType["Username"] = "Username";
|
|
607
|
+
/** UsernameAndPassword */
|
|
425
608
|
KnownHiveAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
609
|
+
/** WindowsAzureHDInsightService */
|
|
426
610
|
KnownHiveAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
427
611
|
})(exports.KnownHiveAuthenticationType || (exports.KnownHiveAuthenticationType = {}));
|
|
428
612
|
/** Known values of {@link ImpalaAuthenticationType} that the service accepts. */
|
|
429
613
|
exports.KnownImpalaAuthenticationType = void 0;
|
|
430
614
|
(function (KnownImpalaAuthenticationType) {
|
|
615
|
+
/** Anonymous */
|
|
431
616
|
KnownImpalaAuthenticationType["Anonymous"] = "Anonymous";
|
|
617
|
+
/** SaslUsername */
|
|
432
618
|
KnownImpalaAuthenticationType["SaslUsername"] = "SASLUsername";
|
|
619
|
+
/** UsernameAndPassword */
|
|
433
620
|
KnownImpalaAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
434
621
|
})(exports.KnownImpalaAuthenticationType || (exports.KnownImpalaAuthenticationType = {}));
|
|
435
622
|
/** Known values of {@link PhoenixAuthenticationType} that the service accepts. */
|
|
436
623
|
exports.KnownPhoenixAuthenticationType = void 0;
|
|
437
624
|
(function (KnownPhoenixAuthenticationType) {
|
|
625
|
+
/** Anonymous */
|
|
438
626
|
KnownPhoenixAuthenticationType["Anonymous"] = "Anonymous";
|
|
627
|
+
/** UsernameAndPassword */
|
|
439
628
|
KnownPhoenixAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
629
|
+
/** WindowsAzureHDInsightService */
|
|
440
630
|
KnownPhoenixAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
441
631
|
})(exports.KnownPhoenixAuthenticationType || (exports.KnownPhoenixAuthenticationType = {}));
|
|
442
632
|
/** Known values of {@link PrestoAuthenticationType} that the service accepts. */
|
|
443
633
|
exports.KnownPrestoAuthenticationType = void 0;
|
|
444
634
|
(function (KnownPrestoAuthenticationType) {
|
|
635
|
+
/** Anonymous */
|
|
445
636
|
KnownPrestoAuthenticationType["Anonymous"] = "Anonymous";
|
|
637
|
+
/** Ldap */
|
|
446
638
|
KnownPrestoAuthenticationType["Ldap"] = "LDAP";
|
|
447
639
|
})(exports.KnownPrestoAuthenticationType || (exports.KnownPrestoAuthenticationType = {}));
|
|
448
640
|
/** Known values of {@link ServiceNowAuthenticationType} that the service accepts. */
|
|
449
641
|
exports.KnownServiceNowAuthenticationType = void 0;
|
|
450
642
|
(function (KnownServiceNowAuthenticationType) {
|
|
643
|
+
/** Basic */
|
|
451
644
|
KnownServiceNowAuthenticationType["Basic"] = "Basic";
|
|
645
|
+
/** OAuth2 */
|
|
452
646
|
KnownServiceNowAuthenticationType["OAuth2"] = "OAuth2";
|
|
453
647
|
})(exports.KnownServiceNowAuthenticationType || (exports.KnownServiceNowAuthenticationType = {}));
|
|
454
648
|
/** Known values of {@link SparkServerType} that the service accepts. */
|
|
455
649
|
exports.KnownSparkServerType = void 0;
|
|
456
650
|
(function (KnownSparkServerType) {
|
|
651
|
+
/** SharkServer */
|
|
457
652
|
KnownSparkServerType["SharkServer"] = "SharkServer";
|
|
653
|
+
/** SharkServer2 */
|
|
458
654
|
KnownSparkServerType["SharkServer2"] = "SharkServer2";
|
|
655
|
+
/** SparkThriftServer */
|
|
459
656
|
KnownSparkServerType["SparkThriftServer"] = "SparkThriftServer";
|
|
460
657
|
})(exports.KnownSparkServerType || (exports.KnownSparkServerType = {}));
|
|
461
658
|
/** Known values of {@link SparkThriftTransportProtocol} that the service accepts. */
|
|
462
659
|
exports.KnownSparkThriftTransportProtocol = void 0;
|
|
463
660
|
(function (KnownSparkThriftTransportProtocol) {
|
|
661
|
+
/** Binary */
|
|
464
662
|
KnownSparkThriftTransportProtocol["Binary"] = "Binary";
|
|
663
|
+
/** Sasl */
|
|
465
664
|
KnownSparkThriftTransportProtocol["Sasl"] = "SASL";
|
|
665
|
+
/** Http */
|
|
466
666
|
KnownSparkThriftTransportProtocol["Http"] = "HTTP ";
|
|
467
667
|
})(exports.KnownSparkThriftTransportProtocol || (exports.KnownSparkThriftTransportProtocol = {}));
|
|
468
668
|
/** Known values of {@link SparkAuthenticationType} that the service accepts. */
|
|
469
669
|
exports.KnownSparkAuthenticationType = void 0;
|
|
470
670
|
(function (KnownSparkAuthenticationType) {
|
|
671
|
+
/** Anonymous */
|
|
471
672
|
KnownSparkAuthenticationType["Anonymous"] = "Anonymous";
|
|
673
|
+
/** Username */
|
|
472
674
|
KnownSparkAuthenticationType["Username"] = "Username";
|
|
675
|
+
/** UsernameAndPassword */
|
|
473
676
|
KnownSparkAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
677
|
+
/** WindowsAzureHDInsightService */
|
|
474
678
|
KnownSparkAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
475
679
|
})(exports.KnownSparkAuthenticationType || (exports.KnownSparkAuthenticationType = {}));
|
|
476
680
|
/** Known values of {@link GoogleAdWordsAuthenticationType} that the service accepts. */
|
|
477
681
|
exports.KnownGoogleAdWordsAuthenticationType = void 0;
|
|
478
682
|
(function (KnownGoogleAdWordsAuthenticationType) {
|
|
683
|
+
/** ServiceAuthentication */
|
|
479
684
|
KnownGoogleAdWordsAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
|
|
685
|
+
/** UserAuthentication */
|
|
480
686
|
KnownGoogleAdWordsAuthenticationType["UserAuthentication"] = "UserAuthentication";
|
|
481
687
|
})(exports.KnownGoogleAdWordsAuthenticationType || (exports.KnownGoogleAdWordsAuthenticationType = {}));
|
|
482
688
|
/** Known values of {@link SalesforceSourceReadBehavior} that the service accepts. */
|
|
483
689
|
exports.KnownSalesforceSourceReadBehavior = void 0;
|
|
484
690
|
(function (KnownSalesforceSourceReadBehavior) {
|
|
691
|
+
/** Query */
|
|
485
692
|
KnownSalesforceSourceReadBehavior["Query"] = "Query";
|
|
693
|
+
/** QueryAll */
|
|
486
694
|
KnownSalesforceSourceReadBehavior["QueryAll"] = "QueryAll";
|
|
487
695
|
})(exports.KnownSalesforceSourceReadBehavior || (exports.KnownSalesforceSourceReadBehavior = {}));
|
|
488
696
|
/** Known values of {@link StoredProcedureParameterType} that the service accepts. */
|
|
489
697
|
exports.KnownStoredProcedureParameterType = void 0;
|
|
490
698
|
(function (KnownStoredProcedureParameterType) {
|
|
699
|
+
/** String */
|
|
491
700
|
KnownStoredProcedureParameterType["String"] = "String";
|
|
701
|
+
/** Int */
|
|
492
702
|
KnownStoredProcedureParameterType["Int"] = "Int";
|
|
703
|
+
/** Int64 */
|
|
493
704
|
KnownStoredProcedureParameterType["Int64"] = "Int64";
|
|
705
|
+
/** Decimal */
|
|
494
706
|
KnownStoredProcedureParameterType["Decimal"] = "Decimal";
|
|
707
|
+
/** Guid */
|
|
495
708
|
KnownStoredProcedureParameterType["Guid"] = "Guid";
|
|
709
|
+
/** Boolean */
|
|
496
710
|
KnownStoredProcedureParameterType["Boolean"] = "Boolean";
|
|
711
|
+
/** Date */
|
|
497
712
|
KnownStoredProcedureParameterType["Date"] = "Date";
|
|
498
713
|
})(exports.KnownStoredProcedureParameterType || (exports.KnownStoredProcedureParameterType = {}));
|
|
499
714
|
/** Known values of {@link CassandraSourceReadConsistencyLevels} that the service accepts. */
|
|
500
715
|
exports.KnownCassandraSourceReadConsistencyLevels = void 0;
|
|
501
716
|
(function (KnownCassandraSourceReadConsistencyLevels) {
|
|
717
|
+
/** ALL */
|
|
502
718
|
KnownCassandraSourceReadConsistencyLevels["ALL"] = "ALL";
|
|
719
|
+
/** EachQuorum */
|
|
503
720
|
KnownCassandraSourceReadConsistencyLevels["EachQuorum"] = "EACH_QUORUM";
|
|
721
|
+
/** Quorum */
|
|
504
722
|
KnownCassandraSourceReadConsistencyLevels["Quorum"] = "QUORUM";
|
|
723
|
+
/** LocalQuorum */
|
|
505
724
|
KnownCassandraSourceReadConsistencyLevels["LocalQuorum"] = "LOCAL_QUORUM";
|
|
725
|
+
/** ONE */
|
|
506
726
|
KnownCassandraSourceReadConsistencyLevels["ONE"] = "ONE";
|
|
727
|
+
/** TWO */
|
|
507
728
|
KnownCassandraSourceReadConsistencyLevels["TWO"] = "TWO";
|
|
729
|
+
/** Three */
|
|
508
730
|
KnownCassandraSourceReadConsistencyLevels["Three"] = "THREE";
|
|
731
|
+
/** LocalONE */
|
|
509
732
|
KnownCassandraSourceReadConsistencyLevels["LocalONE"] = "LOCAL_ONE";
|
|
733
|
+
/** Serial */
|
|
510
734
|
KnownCassandraSourceReadConsistencyLevels["Serial"] = "SERIAL";
|
|
735
|
+
/** LocalSerial */
|
|
511
736
|
KnownCassandraSourceReadConsistencyLevels["LocalSerial"] = "LOCAL_SERIAL";
|
|
512
737
|
})(exports.KnownCassandraSourceReadConsistencyLevels || (exports.KnownCassandraSourceReadConsistencyLevels = {}));
|
|
513
738
|
/** Known values of {@link SapCloudForCustomerSinkWriteBehavior} that the service accepts. */
|
|
514
739
|
exports.KnownSapCloudForCustomerSinkWriteBehavior = void 0;
|
|
515
740
|
(function (KnownSapCloudForCustomerSinkWriteBehavior) {
|
|
741
|
+
/** Insert */
|
|
516
742
|
KnownSapCloudForCustomerSinkWriteBehavior["Insert"] = "Insert";
|
|
743
|
+
/** Update */
|
|
517
744
|
KnownSapCloudForCustomerSinkWriteBehavior["Update"] = "Update";
|
|
518
745
|
})(exports.KnownSapCloudForCustomerSinkWriteBehavior || (exports.KnownSapCloudForCustomerSinkWriteBehavior = {}));
|
|
519
746
|
/** Known values of {@link PolybaseSettingsRejectType} that the service accepts. */
|
|
520
747
|
exports.KnownPolybaseSettingsRejectType = void 0;
|
|
521
748
|
(function (KnownPolybaseSettingsRejectType) {
|
|
749
|
+
/** Value */
|
|
522
750
|
KnownPolybaseSettingsRejectType["Value"] = "value";
|
|
751
|
+
/** Percentage */
|
|
523
752
|
KnownPolybaseSettingsRejectType["Percentage"] = "percentage";
|
|
524
753
|
})(exports.KnownPolybaseSettingsRejectType || (exports.KnownPolybaseSettingsRejectType = {}));
|
|
525
754
|
/** Known values of {@link AzureSearchIndexWriteBehaviorType} that the service accepts. */
|
|
526
755
|
exports.KnownAzureSearchIndexWriteBehaviorType = void 0;
|
|
527
756
|
(function (KnownAzureSearchIndexWriteBehaviorType) {
|
|
757
|
+
/** Merge */
|
|
528
758
|
KnownAzureSearchIndexWriteBehaviorType["Merge"] = "Merge";
|
|
759
|
+
/** Upload */
|
|
529
760
|
KnownAzureSearchIndexWriteBehaviorType["Upload"] = "Upload";
|
|
530
761
|
})(exports.KnownAzureSearchIndexWriteBehaviorType || (exports.KnownAzureSearchIndexWriteBehaviorType = {}));
|
|
531
762
|
/** Known values of {@link DynamicsSinkWriteBehavior} that the service accepts. */
|
|
532
763
|
exports.KnownDynamicsSinkWriteBehavior = void 0;
|
|
533
764
|
(function (KnownDynamicsSinkWriteBehavior) {
|
|
765
|
+
/** Upsert */
|
|
534
766
|
KnownDynamicsSinkWriteBehavior["Upsert"] = "Upsert";
|
|
535
767
|
})(exports.KnownDynamicsSinkWriteBehavior || (exports.KnownDynamicsSinkWriteBehavior = {}));
|
|
536
768
|
/** Known values of {@link SalesforceSinkWriteBehavior} that the service accepts. */
|
|
537
769
|
exports.KnownSalesforceSinkWriteBehavior = void 0;
|
|
538
770
|
(function (KnownSalesforceSinkWriteBehavior) {
|
|
771
|
+
/** Insert */
|
|
539
772
|
KnownSalesforceSinkWriteBehavior["Insert"] = "Insert";
|
|
773
|
+
/** Upsert */
|
|
540
774
|
KnownSalesforceSinkWriteBehavior["Upsert"] = "Upsert";
|
|
541
775
|
})(exports.KnownSalesforceSinkWriteBehavior || (exports.KnownSalesforceSinkWriteBehavior = {}));
|
|
542
776
|
/** Known values of {@link HDInsightActivityDebugInfoOption} that the service accepts. */
|
|
543
777
|
exports.KnownHDInsightActivityDebugInfoOption = void 0;
|
|
544
778
|
(function (KnownHDInsightActivityDebugInfoOption) {
|
|
779
|
+
/** None */
|
|
545
780
|
KnownHDInsightActivityDebugInfoOption["None"] = "None";
|
|
781
|
+
/** Always */
|
|
546
782
|
KnownHDInsightActivityDebugInfoOption["Always"] = "Always";
|
|
783
|
+
/** Failure */
|
|
547
784
|
KnownHDInsightActivityDebugInfoOption["Failure"] = "Failure";
|
|
548
785
|
})(exports.KnownHDInsightActivityDebugInfoOption || (exports.KnownHDInsightActivityDebugInfoOption = {}));
|
|
549
786
|
/** Known values of {@link SsisPackageLocationType} that the service accepts. */
|
|
550
787
|
exports.KnownSsisPackageLocationType = void 0;
|
|
551
788
|
(function (KnownSsisPackageLocationType) {
|
|
789
|
+
/** Ssisdb */
|
|
552
790
|
KnownSsisPackageLocationType["Ssisdb"] = "SSISDB";
|
|
791
|
+
/** File */
|
|
553
792
|
KnownSsisPackageLocationType["File"] = "File";
|
|
793
|
+
/** InlinePackage */
|
|
554
794
|
KnownSsisPackageLocationType["InlinePackage"] = "InlinePackage";
|
|
795
|
+
/** PackageStore */
|
|
555
796
|
KnownSsisPackageLocationType["PackageStore"] = "PackageStore";
|
|
556
797
|
})(exports.KnownSsisPackageLocationType || (exports.KnownSsisPackageLocationType = {}));
|
|
557
798
|
/** Known values of {@link SsisLogLocationType} that the service accepts. */
|
|
558
799
|
exports.KnownSsisLogLocationType = void 0;
|
|
559
800
|
(function (KnownSsisLogLocationType) {
|
|
801
|
+
/** File */
|
|
560
802
|
KnownSsisLogLocationType["File"] = "File";
|
|
561
803
|
})(exports.KnownSsisLogLocationType || (exports.KnownSsisLogLocationType = {}));
|
|
562
804
|
/** Known values of {@link WebActivityMethod} that the service accepts. */
|
|
563
805
|
exports.KnownWebActivityMethod = void 0;
|
|
564
806
|
(function (KnownWebActivityMethod) {
|
|
807
|
+
/** GET */
|
|
565
808
|
KnownWebActivityMethod["GET"] = "GET";
|
|
809
|
+
/** Post */
|
|
566
810
|
KnownWebActivityMethod["Post"] = "POST";
|
|
811
|
+
/** PUT */
|
|
567
812
|
KnownWebActivityMethod["PUT"] = "PUT";
|
|
813
|
+
/** Delete */
|
|
568
814
|
KnownWebActivityMethod["Delete"] = "DELETE";
|
|
569
815
|
})(exports.KnownWebActivityMethod || (exports.KnownWebActivityMethod = {}));
|
|
570
816
|
/** Known values of {@link AzureFunctionActivityMethod} that the service accepts. */
|
|
571
817
|
exports.KnownAzureFunctionActivityMethod = void 0;
|
|
572
818
|
(function (KnownAzureFunctionActivityMethod) {
|
|
819
|
+
/** GET */
|
|
573
820
|
KnownAzureFunctionActivityMethod["GET"] = "GET";
|
|
821
|
+
/** Post */
|
|
574
822
|
KnownAzureFunctionActivityMethod["Post"] = "POST";
|
|
823
|
+
/** PUT */
|
|
575
824
|
KnownAzureFunctionActivityMethod["PUT"] = "PUT";
|
|
825
|
+
/** Delete */
|
|
576
826
|
KnownAzureFunctionActivityMethod["Delete"] = "DELETE";
|
|
827
|
+
/** Options */
|
|
577
828
|
KnownAzureFunctionActivityMethod["Options"] = "OPTIONS";
|
|
829
|
+
/** Head */
|
|
578
830
|
KnownAzureFunctionActivityMethod["Head"] = "HEAD";
|
|
831
|
+
/** Trace */
|
|
579
832
|
KnownAzureFunctionActivityMethod["Trace"] = "TRACE";
|
|
580
833
|
})(exports.KnownAzureFunctionActivityMethod || (exports.KnownAzureFunctionActivityMethod = {}));
|
|
581
834
|
/** Known values of {@link WebHookActivityMethod} that the service accepts. */
|
|
582
835
|
exports.KnownWebHookActivityMethod = void 0;
|
|
583
836
|
(function (KnownWebHookActivityMethod) {
|
|
837
|
+
/** Post */
|
|
584
838
|
KnownWebHookActivityMethod["Post"] = "POST";
|
|
585
839
|
})(exports.KnownWebHookActivityMethod || (exports.KnownWebHookActivityMethod = {}));
|
|
586
840
|
/** Known values of {@link ScriptType} that the service accepts. */
|
|
587
841
|
exports.KnownScriptType = void 0;
|
|
588
842
|
(function (KnownScriptType) {
|
|
843
|
+
/** Query */
|
|
589
844
|
KnownScriptType["Query"] = "Query";
|
|
845
|
+
/** NonQuery */
|
|
590
846
|
KnownScriptType["NonQuery"] = "NonQuery";
|
|
591
847
|
})(exports.KnownScriptType || (exports.KnownScriptType = {}));
|
|
592
848
|
/** Known values of {@link ScriptActivityParameterType} that the service accepts. */
|
|
593
849
|
exports.KnownScriptActivityParameterType = void 0;
|
|
594
850
|
(function (KnownScriptActivityParameterType) {
|
|
851
|
+
/** Boolean */
|
|
595
852
|
KnownScriptActivityParameterType["Boolean"] = "Boolean";
|
|
853
|
+
/** DateTime */
|
|
596
854
|
KnownScriptActivityParameterType["DateTime"] = "DateTime";
|
|
855
|
+
/** DateTimeOffset */
|
|
597
856
|
KnownScriptActivityParameterType["DateTimeOffset"] = "DateTimeOffset";
|
|
857
|
+
/** Decimal */
|
|
598
858
|
KnownScriptActivityParameterType["Decimal"] = "Decimal";
|
|
859
|
+
/** Double */
|
|
599
860
|
KnownScriptActivityParameterType["Double"] = "Double";
|
|
861
|
+
/** Guid */
|
|
600
862
|
KnownScriptActivityParameterType["Guid"] = "Guid";
|
|
863
|
+
/** Int16 */
|
|
601
864
|
KnownScriptActivityParameterType["Int16"] = "Int16";
|
|
865
|
+
/** Int32 */
|
|
602
866
|
KnownScriptActivityParameterType["Int32"] = "Int32";
|
|
867
|
+
/** Int64 */
|
|
603
868
|
KnownScriptActivityParameterType["Int64"] = "Int64";
|
|
869
|
+
/** Single */
|
|
604
870
|
KnownScriptActivityParameterType["Single"] = "Single";
|
|
871
|
+
/** String */
|
|
605
872
|
KnownScriptActivityParameterType["String"] = "String";
|
|
873
|
+
/** Timespan */
|
|
606
874
|
KnownScriptActivityParameterType["Timespan"] = "Timespan";
|
|
607
875
|
})(exports.KnownScriptActivityParameterType || (exports.KnownScriptActivityParameterType = {}));
|
|
608
876
|
/** Known values of {@link ScriptActivityParameterDirection} that the service accepts. */
|
|
609
877
|
exports.KnownScriptActivityParameterDirection = void 0;
|
|
610
878
|
(function (KnownScriptActivityParameterDirection) {
|
|
879
|
+
/** Input */
|
|
611
880
|
KnownScriptActivityParameterDirection["Input"] = "Input";
|
|
881
|
+
/** Output */
|
|
612
882
|
KnownScriptActivityParameterDirection["Output"] = "Output";
|
|
883
|
+
/** InputOutput */
|
|
613
884
|
KnownScriptActivityParameterDirection["InputOutput"] = "InputOutput";
|
|
614
885
|
})(exports.KnownScriptActivityParameterDirection || (exports.KnownScriptActivityParameterDirection = {}));
|
|
615
886
|
/** Known values of {@link ScriptActivityLogDestination} that the service accepts. */
|
|
616
887
|
exports.KnownScriptActivityLogDestination = void 0;
|
|
617
888
|
(function (KnownScriptActivityLogDestination) {
|
|
889
|
+
/** ActivityOutput */
|
|
618
890
|
KnownScriptActivityLogDestination["ActivityOutput"] = "ActivityOutput";
|
|
891
|
+
/** ExternalStore */
|
|
619
892
|
KnownScriptActivityLogDestination["ExternalStore"] = "ExternalStore";
|
|
620
893
|
})(exports.KnownScriptActivityLogDestination || (exports.KnownScriptActivityLogDestination = {}));
|
|
621
894
|
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
622
895
|
exports.KnownRecurrenceFrequency = void 0;
|
|
623
896
|
(function (KnownRecurrenceFrequency) {
|
|
897
|
+
/** NotSpecified */
|
|
624
898
|
KnownRecurrenceFrequency["NotSpecified"] = "NotSpecified";
|
|
899
|
+
/** Minute */
|
|
625
900
|
KnownRecurrenceFrequency["Minute"] = "Minute";
|
|
901
|
+
/** Hour */
|
|
626
902
|
KnownRecurrenceFrequency["Hour"] = "Hour";
|
|
903
|
+
/** Day */
|
|
627
904
|
KnownRecurrenceFrequency["Day"] = "Day";
|
|
905
|
+
/** Week */
|
|
628
906
|
KnownRecurrenceFrequency["Week"] = "Week";
|
|
907
|
+
/** Month */
|
|
629
908
|
KnownRecurrenceFrequency["Month"] = "Month";
|
|
909
|
+
/** Year */
|
|
630
910
|
KnownRecurrenceFrequency["Year"] = "Year";
|
|
631
911
|
})(exports.KnownRecurrenceFrequency || (exports.KnownRecurrenceFrequency = {}));
|
|
632
912
|
/** Known values of {@link BlobEventTypes} that the service accepts. */
|
|
633
913
|
exports.KnownBlobEventTypes = void 0;
|
|
634
914
|
(function (KnownBlobEventTypes) {
|
|
915
|
+
/** MicrosoftStorageBlobCreated */
|
|
635
916
|
KnownBlobEventTypes["MicrosoftStorageBlobCreated"] = "Microsoft.Storage.BlobCreated";
|
|
917
|
+
/** MicrosoftStorageBlobDeleted */
|
|
636
918
|
KnownBlobEventTypes["MicrosoftStorageBlobDeleted"] = "Microsoft.Storage.BlobDeleted";
|
|
637
919
|
})(exports.KnownBlobEventTypes || (exports.KnownBlobEventTypes = {}));
|
|
638
920
|
/** Known values of {@link TumblingWindowFrequency} that the service accepts. */
|
|
639
921
|
exports.KnownTumblingWindowFrequency = void 0;
|
|
640
922
|
(function (KnownTumblingWindowFrequency) {
|
|
923
|
+
/** Minute */
|
|
641
924
|
KnownTumblingWindowFrequency["Minute"] = "Minute";
|
|
925
|
+
/** Hour */
|
|
642
926
|
KnownTumblingWindowFrequency["Hour"] = "Hour";
|
|
927
|
+
/** Month */
|
|
643
928
|
KnownTumblingWindowFrequency["Month"] = "Month";
|
|
644
929
|
})(exports.KnownTumblingWindowFrequency || (exports.KnownTumblingWindowFrequency = {}));
|
|
645
930
|
/** Known values of {@link TriggerReferenceType} that the service accepts. */
|
|
646
931
|
exports.KnownTriggerReferenceType = void 0;
|
|
647
932
|
(function (KnownTriggerReferenceType) {
|
|
933
|
+
/** TriggerReference */
|
|
648
934
|
KnownTriggerReferenceType["TriggerReference"] = "TriggerReference";
|
|
649
935
|
})(exports.KnownTriggerReferenceType || (exports.KnownTriggerReferenceType = {}));
|
|
650
936
|
/** Known values of {@link JsonFormatFilePattern} that the service accepts. */
|
|
651
937
|
exports.KnownJsonFormatFilePattern = void 0;
|
|
652
938
|
(function (KnownJsonFormatFilePattern) {
|
|
939
|
+
/** SetOfObjects */
|
|
653
940
|
KnownJsonFormatFilePattern["SetOfObjects"] = "setOfObjects";
|
|
941
|
+
/** ArrayOfObjects */
|
|
654
942
|
KnownJsonFormatFilePattern["ArrayOfObjects"] = "arrayOfObjects";
|
|
655
943
|
})(exports.KnownJsonFormatFilePattern || (exports.KnownJsonFormatFilePattern = {}));
|
|
656
944
|
/** Known values of {@link DatasetCompressionLevel} that the service accepts. */
|
|
657
945
|
exports.KnownDatasetCompressionLevel = void 0;
|
|
658
946
|
(function (KnownDatasetCompressionLevel) {
|
|
947
|
+
/** Optimal */
|
|
659
948
|
KnownDatasetCompressionLevel["Optimal"] = "Optimal";
|
|
949
|
+
/** Fastest */
|
|
660
950
|
KnownDatasetCompressionLevel["Fastest"] = "Fastest";
|
|
661
951
|
})(exports.KnownDatasetCompressionLevel || (exports.KnownDatasetCompressionLevel = {}));
|
|
662
952
|
/** Known values of {@link AvroCompressionCodec} that the service accepts. */
|
|
663
953
|
exports.KnownAvroCompressionCodec = void 0;
|
|
664
954
|
(function (KnownAvroCompressionCodec) {
|
|
955
|
+
/** None */
|
|
665
956
|
KnownAvroCompressionCodec["None"] = "none";
|
|
957
|
+
/** Deflate */
|
|
666
958
|
KnownAvroCompressionCodec["Deflate"] = "deflate";
|
|
959
|
+
/** Snappy */
|
|
667
960
|
KnownAvroCompressionCodec["Snappy"] = "snappy";
|
|
961
|
+
/** Xz */
|
|
668
962
|
KnownAvroCompressionCodec["Xz"] = "xz";
|
|
963
|
+
/** Bzip2 */
|
|
669
964
|
KnownAvroCompressionCodec["Bzip2"] = "bzip2";
|
|
670
965
|
})(exports.KnownAvroCompressionCodec || (exports.KnownAvroCompressionCodec = {}));
|
|
671
966
|
/** Known values of {@link CompressionCodec} that the service accepts. */
|
|
672
967
|
exports.KnownCompressionCodec = void 0;
|
|
673
968
|
(function (KnownCompressionCodec) {
|
|
969
|
+
/** None */
|
|
674
970
|
KnownCompressionCodec["None"] = "none";
|
|
971
|
+
/** Lzo */
|
|
675
972
|
KnownCompressionCodec["Lzo"] = "lzo";
|
|
973
|
+
/** Bzip2 */
|
|
676
974
|
KnownCompressionCodec["Bzip2"] = "bzip2";
|
|
975
|
+
/** Gzip */
|
|
677
976
|
KnownCompressionCodec["Gzip"] = "gzip";
|
|
977
|
+
/** Deflate */
|
|
678
978
|
KnownCompressionCodec["Deflate"] = "deflate";
|
|
979
|
+
/** ZipDeflate */
|
|
679
980
|
KnownCompressionCodec["ZipDeflate"] = "zipDeflate";
|
|
981
|
+
/** Snappy */
|
|
680
982
|
KnownCompressionCodec["Snappy"] = "snappy";
|
|
983
|
+
/** Lz4 */
|
|
681
984
|
KnownCompressionCodec["Lz4"] = "lz4";
|
|
985
|
+
/** Tar */
|
|
682
986
|
KnownCompressionCodec["Tar"] = "tar";
|
|
987
|
+
/** TarGZip */
|
|
683
988
|
KnownCompressionCodec["TarGZip"] = "tarGZip";
|
|
684
989
|
})(exports.KnownCompressionCodec || (exports.KnownCompressionCodec = {}));
|
|
685
990
|
/** Known values of {@link OrcCompressionCodec} that the service accepts. */
|
|
686
991
|
exports.KnownOrcCompressionCodec = void 0;
|
|
687
992
|
(function (KnownOrcCompressionCodec) {
|
|
993
|
+
/** None */
|
|
688
994
|
KnownOrcCompressionCodec["None"] = "none";
|
|
995
|
+
/** Zlib */
|
|
689
996
|
KnownOrcCompressionCodec["Zlib"] = "zlib";
|
|
997
|
+
/** Snappy */
|
|
690
998
|
KnownOrcCompressionCodec["Snappy"] = "snappy";
|
|
999
|
+
/** Lzo */
|
|
691
1000
|
KnownOrcCompressionCodec["Lzo"] = "lzo";
|
|
692
1001
|
})(exports.KnownOrcCompressionCodec || (exports.KnownOrcCompressionCodec = {}));
|
|
693
1002
|
/** Known values of {@link DynamicsDeploymentType} that the service accepts. */
|
|
694
1003
|
exports.KnownDynamicsDeploymentType = void 0;
|
|
695
1004
|
(function (KnownDynamicsDeploymentType) {
|
|
1005
|
+
/** Online */
|
|
696
1006
|
KnownDynamicsDeploymentType["Online"] = "Online";
|
|
1007
|
+
/** OnPremisesWithIfd */
|
|
697
1008
|
KnownDynamicsDeploymentType["OnPremisesWithIfd"] = "OnPremisesWithIfd";
|
|
698
1009
|
})(exports.KnownDynamicsDeploymentType || (exports.KnownDynamicsDeploymentType = {}));
|
|
699
1010
|
/** Known values of {@link DynamicsAuthenticationType} that the service accepts. */
|
|
700
1011
|
exports.KnownDynamicsAuthenticationType = void 0;
|
|
701
1012
|
(function (KnownDynamicsAuthenticationType) {
|
|
1013
|
+
/** Office365 */
|
|
702
1014
|
KnownDynamicsAuthenticationType["Office365"] = "Office365";
|
|
1015
|
+
/** Ifd */
|
|
703
1016
|
KnownDynamicsAuthenticationType["Ifd"] = "Ifd";
|
|
1017
|
+
/** AADServicePrincipal */
|
|
704
1018
|
KnownDynamicsAuthenticationType["AADServicePrincipal"] = "AADServicePrincipal";
|
|
705
1019
|
})(exports.KnownDynamicsAuthenticationType || (exports.KnownDynamicsAuthenticationType = {}));
|
|
706
1020
|
/** Known values of {@link ServicePrincipalCredentialType} that the service accepts. */
|
|
707
1021
|
exports.KnownServicePrincipalCredentialType = void 0;
|
|
708
1022
|
(function (KnownServicePrincipalCredentialType) {
|
|
1023
|
+
/** ServicePrincipalKey */
|
|
709
1024
|
KnownServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
1025
|
+
/** ServicePrincipalCert */
|
|
710
1026
|
KnownServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
711
1027
|
})(exports.KnownServicePrincipalCredentialType || (exports.KnownServicePrincipalCredentialType = {}));
|
|
712
1028
|
/** Known values of {@link HdiNodeTypes} that the service accepts. */
|
|
713
1029
|
exports.KnownHdiNodeTypes = void 0;
|
|
714
1030
|
(function (KnownHdiNodeTypes) {
|
|
1031
|
+
/** Headnode */
|
|
715
1032
|
KnownHdiNodeTypes["Headnode"] = "Headnode";
|
|
1033
|
+
/** Workernode */
|
|
716
1034
|
KnownHdiNodeTypes["Workernode"] = "Workernode";
|
|
1035
|
+
/** Zookeeper */
|
|
717
1036
|
KnownHdiNodeTypes["Zookeeper"] = "Zookeeper";
|
|
718
1037
|
})(exports.KnownHdiNodeTypes || (exports.KnownHdiNodeTypes = {}));
|
|
719
1038
|
/** Known values of {@link JsonWriteFilePattern} that the service accepts. */
|
|
720
1039
|
exports.KnownJsonWriteFilePattern = void 0;
|
|
721
1040
|
(function (KnownJsonWriteFilePattern) {
|
|
1041
|
+
/** SetOfObjects */
|
|
722
1042
|
KnownJsonWriteFilePattern["SetOfObjects"] = "setOfObjects";
|
|
1043
|
+
/** ArrayOfObjects */
|
|
723
1044
|
KnownJsonWriteFilePattern["ArrayOfObjects"] = "arrayOfObjects";
|
|
724
1045
|
})(exports.KnownJsonWriteFilePattern || (exports.KnownJsonWriteFilePattern = {}));
|
|
725
1046
|
/** Known values of {@link AmazonRdsForOraclePartitionOption} that the service accepts. */
|
|
726
1047
|
exports.KnownAmazonRdsForOraclePartitionOption = void 0;
|
|
727
1048
|
(function (KnownAmazonRdsForOraclePartitionOption) {
|
|
1049
|
+
/** None */
|
|
728
1050
|
KnownAmazonRdsForOraclePartitionOption["None"] = "None";
|
|
1051
|
+
/** PhysicalPartitionsOfTable */
|
|
729
1052
|
KnownAmazonRdsForOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
1053
|
+
/** DynamicRange */
|
|
730
1054
|
KnownAmazonRdsForOraclePartitionOption["DynamicRange"] = "DynamicRange";
|
|
731
1055
|
})(exports.KnownAmazonRdsForOraclePartitionOption || (exports.KnownAmazonRdsForOraclePartitionOption = {}));
|
|
732
1056
|
/** Known values of {@link CopyBehaviorType} that the service accepts. */
|
|
733
1057
|
exports.KnownCopyBehaviorType = void 0;
|
|
734
1058
|
(function (KnownCopyBehaviorType) {
|
|
1059
|
+
/** PreserveHierarchy */
|
|
735
1060
|
KnownCopyBehaviorType["PreserveHierarchy"] = "PreserveHierarchy";
|
|
1061
|
+
/** FlattenHierarchy */
|
|
736
1062
|
KnownCopyBehaviorType["FlattenHierarchy"] = "FlattenHierarchy";
|
|
1063
|
+
/** MergeFiles */
|
|
737
1064
|
KnownCopyBehaviorType["MergeFiles"] = "MergeFiles";
|
|
738
1065
|
})(exports.KnownCopyBehaviorType || (exports.KnownCopyBehaviorType = {}));
|
|
739
1066
|
/** Known values of {@link SqlWriteBehaviorEnum} that the service accepts. */
|
|
740
1067
|
exports.KnownSqlWriteBehaviorEnum = void 0;
|
|
741
1068
|
(function (KnownSqlWriteBehaviorEnum) {
|
|
1069
|
+
/** Insert */
|
|
742
1070
|
KnownSqlWriteBehaviorEnum["Insert"] = "Insert";
|
|
1071
|
+
/** Upsert */
|
|
743
1072
|
KnownSqlWriteBehaviorEnum["Upsert"] = "Upsert";
|
|
1073
|
+
/** StoredProcedure */
|
|
744
1074
|
KnownSqlWriteBehaviorEnum["StoredProcedure"] = "StoredProcedure";
|
|
745
1075
|
})(exports.KnownSqlWriteBehaviorEnum || (exports.KnownSqlWriteBehaviorEnum = {}));
|
|
746
1076
|
/** Known values of {@link SqlDWWriteBehaviorEnum} that the service accepts. */
|
|
747
1077
|
exports.KnownSqlDWWriteBehaviorEnum = void 0;
|
|
748
1078
|
(function (KnownSqlDWWriteBehaviorEnum) {
|
|
1079
|
+
/** Insert */
|
|
749
1080
|
KnownSqlDWWriteBehaviorEnum["Insert"] = "Insert";
|
|
1081
|
+
/** Upsert */
|
|
750
1082
|
KnownSqlDWWriteBehaviorEnum["Upsert"] = "Upsert";
|
|
751
1083
|
})(exports.KnownSqlDWWriteBehaviorEnum || (exports.KnownSqlDWWriteBehaviorEnum = {}));
|
|
752
1084
|
/** Known values of {@link SqlPartitionOption} that the service accepts. */
|
|
753
1085
|
exports.KnownSqlPartitionOption = void 0;
|
|
754
1086
|
(function (KnownSqlPartitionOption) {
|
|
1087
|
+
/** None */
|
|
755
1088
|
KnownSqlPartitionOption["None"] = "None";
|
|
1089
|
+
/** PhysicalPartitionsOfTable */
|
|
756
1090
|
KnownSqlPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
1091
|
+
/** DynamicRange */
|
|
757
1092
|
KnownSqlPartitionOption["DynamicRange"] = "DynamicRange";
|
|
758
1093
|
})(exports.KnownSqlPartitionOption || (exports.KnownSqlPartitionOption = {}));
|
|
759
1094
|
/** Known values of {@link SapHanaPartitionOption} that the service accepts. */
|
|
760
1095
|
exports.KnownSapHanaPartitionOption = void 0;
|
|
761
1096
|
(function (KnownSapHanaPartitionOption) {
|
|
1097
|
+
/** None */
|
|
762
1098
|
KnownSapHanaPartitionOption["None"] = "None";
|
|
1099
|
+
/** PhysicalPartitionsOfTable */
|
|
763
1100
|
KnownSapHanaPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
1101
|
+
/** SapHanaDynamicRange */
|
|
764
1102
|
KnownSapHanaPartitionOption["SapHanaDynamicRange"] = "SapHanaDynamicRange";
|
|
765
1103
|
})(exports.KnownSapHanaPartitionOption || (exports.KnownSapHanaPartitionOption = {}));
|
|
766
1104
|
/** Known values of {@link SapTablePartitionOption} that the service accepts. */
|
|
767
1105
|
exports.KnownSapTablePartitionOption = void 0;
|
|
768
1106
|
(function (KnownSapTablePartitionOption) {
|
|
1107
|
+
/** None */
|
|
769
1108
|
KnownSapTablePartitionOption["None"] = "None";
|
|
1109
|
+
/** PartitionOnInt */
|
|
770
1110
|
KnownSapTablePartitionOption["PartitionOnInt"] = "PartitionOnInt";
|
|
1111
|
+
/** PartitionOnCalendarYear */
|
|
771
1112
|
KnownSapTablePartitionOption["PartitionOnCalendarYear"] = "PartitionOnCalendarYear";
|
|
1113
|
+
/** PartitionOnCalendarMonth */
|
|
772
1114
|
KnownSapTablePartitionOption["PartitionOnCalendarMonth"] = "PartitionOnCalendarMonth";
|
|
1115
|
+
/** PartitionOnCalendarDate */
|
|
773
1116
|
KnownSapTablePartitionOption["PartitionOnCalendarDate"] = "PartitionOnCalendarDate";
|
|
1117
|
+
/** PartitionOnTime */
|
|
774
1118
|
KnownSapTablePartitionOption["PartitionOnTime"] = "PartitionOnTime";
|
|
775
1119
|
})(exports.KnownSapTablePartitionOption || (exports.KnownSapTablePartitionOption = {}));
|
|
776
1120
|
/** Known values of {@link OraclePartitionOption} that the service accepts. */
|
|
777
1121
|
exports.KnownOraclePartitionOption = void 0;
|
|
778
1122
|
(function (KnownOraclePartitionOption) {
|
|
1123
|
+
/** None */
|
|
779
1124
|
KnownOraclePartitionOption["None"] = "None";
|
|
1125
|
+
/** PhysicalPartitionsOfTable */
|
|
780
1126
|
KnownOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
1127
|
+
/** DynamicRange */
|
|
781
1128
|
KnownOraclePartitionOption["DynamicRange"] = "DynamicRange";
|
|
782
1129
|
})(exports.KnownOraclePartitionOption || (exports.KnownOraclePartitionOption = {}));
|
|
783
1130
|
/** Known values of {@link TeradataPartitionOption} that the service accepts. */
|
|
784
1131
|
exports.KnownTeradataPartitionOption = void 0;
|
|
785
1132
|
(function (KnownTeradataPartitionOption) {
|
|
1133
|
+
/** None */
|
|
786
1134
|
KnownTeradataPartitionOption["None"] = "None";
|
|
1135
|
+
/** Hash */
|
|
787
1136
|
KnownTeradataPartitionOption["Hash"] = "Hash";
|
|
1137
|
+
/** DynamicRange */
|
|
788
1138
|
KnownTeradataPartitionOption["DynamicRange"] = "DynamicRange";
|
|
789
1139
|
})(exports.KnownTeradataPartitionOption || (exports.KnownTeradataPartitionOption = {}));
|
|
790
1140
|
/** Known values of {@link NetezzaPartitionOption} that the service accepts. */
|
|
791
1141
|
exports.KnownNetezzaPartitionOption = void 0;
|
|
792
1142
|
(function (KnownNetezzaPartitionOption) {
|
|
1143
|
+
/** None */
|
|
793
1144
|
KnownNetezzaPartitionOption["None"] = "None";
|
|
1145
|
+
/** DataSlice */
|
|
794
1146
|
KnownNetezzaPartitionOption["DataSlice"] = "DataSlice";
|
|
1147
|
+
/** DynamicRange */
|
|
795
1148
|
KnownNetezzaPartitionOption["DynamicRange"] = "DynamicRange";
|
|
796
1149
|
})(exports.KnownNetezzaPartitionOption || (exports.KnownNetezzaPartitionOption = {}));
|
|
797
1150
|
|
|
@@ -2632,9 +2985,8 @@ const LinkedServiceReference = {
|
|
|
2632
2985
|
className: "LinkedServiceReference",
|
|
2633
2986
|
modelProperties: {
|
|
2634
2987
|
type: {
|
|
2635
|
-
defaultValue: "LinkedServiceReference",
|
|
2636
|
-
isConstant: true,
|
|
2637
2988
|
serializedName: "type",
|
|
2989
|
+
required: true,
|
|
2638
2990
|
type: {
|
|
2639
2991
|
name: "String"
|
|
2640
2992
|
}
|
|
@@ -10509,6 +10861,108 @@ const SapOpenHubLinkedService = {
|
|
|
10509
10861
|
} })
|
|
10510
10862
|
}
|
|
10511
10863
|
};
|
|
10864
|
+
const SapOdpLinkedService = {
|
|
10865
|
+
serializedName: "SapOdp",
|
|
10866
|
+
type: {
|
|
10867
|
+
name: "Composite",
|
|
10868
|
+
className: "SapOdpLinkedService",
|
|
10869
|
+
uberParent: "LinkedService",
|
|
10870
|
+
additionalProperties: { type: { name: "Object" } },
|
|
10871
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
10872
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { server: {
|
|
10873
|
+
serializedName: "typeProperties.server",
|
|
10874
|
+
type: {
|
|
10875
|
+
name: "any"
|
|
10876
|
+
}
|
|
10877
|
+
}, systemNumber: {
|
|
10878
|
+
serializedName: "typeProperties.systemNumber",
|
|
10879
|
+
type: {
|
|
10880
|
+
name: "any"
|
|
10881
|
+
}
|
|
10882
|
+
}, clientId: {
|
|
10883
|
+
serializedName: "typeProperties.clientId",
|
|
10884
|
+
type: {
|
|
10885
|
+
name: "any"
|
|
10886
|
+
}
|
|
10887
|
+
}, language: {
|
|
10888
|
+
serializedName: "typeProperties.language",
|
|
10889
|
+
type: {
|
|
10890
|
+
name: "any"
|
|
10891
|
+
}
|
|
10892
|
+
}, systemId: {
|
|
10893
|
+
serializedName: "typeProperties.systemId",
|
|
10894
|
+
type: {
|
|
10895
|
+
name: "any"
|
|
10896
|
+
}
|
|
10897
|
+
}, userName: {
|
|
10898
|
+
serializedName: "typeProperties.userName",
|
|
10899
|
+
type: {
|
|
10900
|
+
name: "any"
|
|
10901
|
+
}
|
|
10902
|
+
}, password: {
|
|
10903
|
+
serializedName: "typeProperties.password",
|
|
10904
|
+
type: {
|
|
10905
|
+
name: "Composite",
|
|
10906
|
+
className: "SecretBase"
|
|
10907
|
+
}
|
|
10908
|
+
}, messageServer: {
|
|
10909
|
+
serializedName: "typeProperties.messageServer",
|
|
10910
|
+
type: {
|
|
10911
|
+
name: "any"
|
|
10912
|
+
}
|
|
10913
|
+
}, messageServerService: {
|
|
10914
|
+
serializedName: "typeProperties.messageServerService",
|
|
10915
|
+
type: {
|
|
10916
|
+
name: "any"
|
|
10917
|
+
}
|
|
10918
|
+
}, sncMode: {
|
|
10919
|
+
serializedName: "typeProperties.sncMode",
|
|
10920
|
+
type: {
|
|
10921
|
+
name: "any"
|
|
10922
|
+
}
|
|
10923
|
+
}, sncMyName: {
|
|
10924
|
+
serializedName: "typeProperties.sncMyName",
|
|
10925
|
+
type: {
|
|
10926
|
+
name: "any"
|
|
10927
|
+
}
|
|
10928
|
+
}, sncPartnerName: {
|
|
10929
|
+
serializedName: "typeProperties.sncPartnerName",
|
|
10930
|
+
type: {
|
|
10931
|
+
name: "any"
|
|
10932
|
+
}
|
|
10933
|
+
}, sncLibraryPath: {
|
|
10934
|
+
serializedName: "typeProperties.sncLibraryPath",
|
|
10935
|
+
type: {
|
|
10936
|
+
name: "any"
|
|
10937
|
+
}
|
|
10938
|
+
}, sncQop: {
|
|
10939
|
+
serializedName: "typeProperties.sncQop",
|
|
10940
|
+
type: {
|
|
10941
|
+
name: "any"
|
|
10942
|
+
}
|
|
10943
|
+
}, x509CertificatePath: {
|
|
10944
|
+
serializedName: "typeProperties.x509CertificatePath",
|
|
10945
|
+
type: {
|
|
10946
|
+
name: "any"
|
|
10947
|
+
}
|
|
10948
|
+
}, logonGroup: {
|
|
10949
|
+
serializedName: "typeProperties.logonGroup",
|
|
10950
|
+
type: {
|
|
10951
|
+
name: "any"
|
|
10952
|
+
}
|
|
10953
|
+
}, subscriberName: {
|
|
10954
|
+
serializedName: "typeProperties.subscriberName",
|
|
10955
|
+
type: {
|
|
10956
|
+
name: "any"
|
|
10957
|
+
}
|
|
10958
|
+
}, encryptedCredential: {
|
|
10959
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
10960
|
+
type: {
|
|
10961
|
+
name: "any"
|
|
10962
|
+
}
|
|
10963
|
+
} })
|
|
10964
|
+
}
|
|
10965
|
+
};
|
|
10512
10966
|
const RestServiceLinkedService = {
|
|
10513
10967
|
serializedName: "RestService",
|
|
10514
10968
|
type: {
|
|
@@ -10616,49 +11070,6 @@ const RestServiceLinkedService = {
|
|
|
10616
11070
|
} })
|
|
10617
11071
|
}
|
|
10618
11072
|
};
|
|
10619
|
-
const AmazonS3LinkedService = {
|
|
10620
|
-
serializedName: "AmazonS3",
|
|
10621
|
-
type: {
|
|
10622
|
-
name: "Composite",
|
|
10623
|
-
className: "AmazonS3LinkedService",
|
|
10624
|
-
uberParent: "LinkedService",
|
|
10625
|
-
additionalProperties: { type: { name: "Object" } },
|
|
10626
|
-
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
10627
|
-
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { authenticationType: {
|
|
10628
|
-
serializedName: "typeProperties.authenticationType",
|
|
10629
|
-
type: {
|
|
10630
|
-
name: "any"
|
|
10631
|
-
}
|
|
10632
|
-
}, accessKeyId: {
|
|
10633
|
-
serializedName: "typeProperties.accessKeyId",
|
|
10634
|
-
type: {
|
|
10635
|
-
name: "any"
|
|
10636
|
-
}
|
|
10637
|
-
}, secretAccessKey: {
|
|
10638
|
-
serializedName: "typeProperties.secretAccessKey",
|
|
10639
|
-
type: {
|
|
10640
|
-
name: "Composite",
|
|
10641
|
-
className: "SecretBase"
|
|
10642
|
-
}
|
|
10643
|
-
}, serviceUrl: {
|
|
10644
|
-
serializedName: "typeProperties.serviceUrl",
|
|
10645
|
-
type: {
|
|
10646
|
-
name: "any"
|
|
10647
|
-
}
|
|
10648
|
-
}, sessionToken: {
|
|
10649
|
-
serializedName: "typeProperties.sessionToken",
|
|
10650
|
-
type: {
|
|
10651
|
-
name: "Composite",
|
|
10652
|
-
className: "SecretBase"
|
|
10653
|
-
}
|
|
10654
|
-
}, encryptedCredential: {
|
|
10655
|
-
serializedName: "typeProperties.encryptedCredential",
|
|
10656
|
-
type: {
|
|
10657
|
-
name: "any"
|
|
10658
|
-
}
|
|
10659
|
-
} })
|
|
10660
|
-
}
|
|
10661
|
-
};
|
|
10662
11073
|
const TeamDeskLinkedService = {
|
|
10663
11074
|
serializedName: "TeamDesk",
|
|
10664
11075
|
type: {
|
|
@@ -10895,6 +11306,49 @@ const TwilioLinkedService = {
|
|
|
10895
11306
|
} })
|
|
10896
11307
|
}
|
|
10897
11308
|
};
|
|
11309
|
+
const AmazonS3LinkedService = {
|
|
11310
|
+
serializedName: "AmazonS3",
|
|
11311
|
+
type: {
|
|
11312
|
+
name: "Composite",
|
|
11313
|
+
className: "AmazonS3LinkedService",
|
|
11314
|
+
uberParent: "LinkedService",
|
|
11315
|
+
additionalProperties: { type: { name: "Object" } },
|
|
11316
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
11317
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { authenticationType: {
|
|
11318
|
+
serializedName: "typeProperties.authenticationType",
|
|
11319
|
+
type: {
|
|
11320
|
+
name: "any"
|
|
11321
|
+
}
|
|
11322
|
+
}, accessKeyId: {
|
|
11323
|
+
serializedName: "typeProperties.accessKeyId",
|
|
11324
|
+
type: {
|
|
11325
|
+
name: "any"
|
|
11326
|
+
}
|
|
11327
|
+
}, secretAccessKey: {
|
|
11328
|
+
serializedName: "typeProperties.secretAccessKey",
|
|
11329
|
+
type: {
|
|
11330
|
+
name: "Composite",
|
|
11331
|
+
className: "SecretBase"
|
|
11332
|
+
}
|
|
11333
|
+
}, serviceUrl: {
|
|
11334
|
+
serializedName: "typeProperties.serviceUrl",
|
|
11335
|
+
type: {
|
|
11336
|
+
name: "any"
|
|
11337
|
+
}
|
|
11338
|
+
}, sessionToken: {
|
|
11339
|
+
serializedName: "typeProperties.sessionToken",
|
|
11340
|
+
type: {
|
|
11341
|
+
name: "Composite",
|
|
11342
|
+
className: "SecretBase"
|
|
11343
|
+
}
|
|
11344
|
+
}, encryptedCredential: {
|
|
11345
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
11346
|
+
type: {
|
|
11347
|
+
name: "any"
|
|
11348
|
+
}
|
|
11349
|
+
} })
|
|
11350
|
+
}
|
|
11351
|
+
};
|
|
10898
11352
|
const AmazonRedshiftLinkedService = {
|
|
10899
11353
|
serializedName: "AmazonRedshift",
|
|
10900
11354
|
type: {
|
|
@@ -14991,6 +15445,29 @@ const SapTableResourceDataset = {
|
|
|
14991
15445
|
} })
|
|
14992
15446
|
}
|
|
14993
15447
|
};
|
|
15448
|
+
const SapOdpResourceDataset = {
|
|
15449
|
+
serializedName: "SapOdpResource",
|
|
15450
|
+
type: {
|
|
15451
|
+
name: "Composite",
|
|
15452
|
+
className: "SapOdpResourceDataset",
|
|
15453
|
+
uberParent: "Dataset",
|
|
15454
|
+
additionalProperties: { type: { name: "Object" } },
|
|
15455
|
+
polymorphicDiscriminator: Dataset.type.polymorphicDiscriminator,
|
|
15456
|
+
modelProperties: Object.assign(Object.assign({}, Dataset.type.modelProperties), { context: {
|
|
15457
|
+
serializedName: "typeProperties.context",
|
|
15458
|
+
required: true,
|
|
15459
|
+
type: {
|
|
15460
|
+
name: "any"
|
|
15461
|
+
}
|
|
15462
|
+
}, objectName: {
|
|
15463
|
+
serializedName: "typeProperties.objectName",
|
|
15464
|
+
required: true,
|
|
15465
|
+
type: {
|
|
15466
|
+
name: "any"
|
|
15467
|
+
}
|
|
15468
|
+
} })
|
|
15469
|
+
}
|
|
15470
|
+
};
|
|
14994
15471
|
const WebTableDataset = {
|
|
14995
15472
|
serializedName: "WebTable",
|
|
14996
15473
|
type: {
|
|
@@ -22284,6 +22761,37 @@ const SapOpenHubSource = {
|
|
|
22284
22761
|
} })
|
|
22285
22762
|
}
|
|
22286
22763
|
};
|
|
22764
|
+
const SapOdpSource = {
|
|
22765
|
+
serializedName: "SapOdpSource",
|
|
22766
|
+
type: {
|
|
22767
|
+
name: "Composite",
|
|
22768
|
+
className: "SapOdpSource",
|
|
22769
|
+
uberParent: "CopySource",
|
|
22770
|
+
additionalProperties: { type: { name: "Object" } },
|
|
22771
|
+
polymorphicDiscriminator: CopySource.type.polymorphicDiscriminator,
|
|
22772
|
+
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { extractionMode: {
|
|
22773
|
+
serializedName: "extractionMode",
|
|
22774
|
+
type: {
|
|
22775
|
+
name: "any"
|
|
22776
|
+
}
|
|
22777
|
+
}, subscriberProcess: {
|
|
22778
|
+
serializedName: "subscriberProcess",
|
|
22779
|
+
type: {
|
|
22780
|
+
name: "any"
|
|
22781
|
+
}
|
|
22782
|
+
}, selection: {
|
|
22783
|
+
serializedName: "selection",
|
|
22784
|
+
type: {
|
|
22785
|
+
name: "any"
|
|
22786
|
+
}
|
|
22787
|
+
}, projection: {
|
|
22788
|
+
serializedName: "projection",
|
|
22789
|
+
type: {
|
|
22790
|
+
name: "any"
|
|
22791
|
+
}
|
|
22792
|
+
} })
|
|
22793
|
+
}
|
|
22794
|
+
};
|
|
22287
22795
|
const SapTableSource = {
|
|
22288
22796
|
serializedName: "SapTableSource",
|
|
22289
22797
|
type: {
|
|
@@ -23394,8 +23902,8 @@ let discriminators = {
|
|
|
23394
23902
|
"LinkedService.SapCloudForCustomer": SapCloudForCustomerLinkedService,
|
|
23395
23903
|
"LinkedService.SapEcc": SapEccLinkedService,
|
|
23396
23904
|
"LinkedService.SapOpenHub": SapOpenHubLinkedService,
|
|
23905
|
+
"LinkedService.SapOdp": SapOdpLinkedService,
|
|
23397
23906
|
"LinkedService.RestService": RestServiceLinkedService,
|
|
23398
|
-
"LinkedService.AmazonS3": AmazonS3LinkedService,
|
|
23399
23907
|
"LinkedService.TeamDesk": TeamDeskLinkedService,
|
|
23400
23908
|
"LinkedService.Quickbase": QuickbaseLinkedService,
|
|
23401
23909
|
"LinkedService.Smartsheet": SmartsheetLinkedService,
|
|
@@ -23404,6 +23912,7 @@ let discriminators = {
|
|
|
23404
23912
|
"LinkedService.AppFigures": AppFiguresLinkedService,
|
|
23405
23913
|
"LinkedService.Asana": AsanaLinkedService,
|
|
23406
23914
|
"LinkedService.Twilio": TwilioLinkedService,
|
|
23915
|
+
"LinkedService.AmazonS3": AmazonS3LinkedService,
|
|
23407
23916
|
"LinkedService.AmazonRedshift": AmazonRedshiftLinkedService,
|
|
23408
23917
|
"LinkedService.CustomDataSource": CustomDataSourceLinkedService,
|
|
23409
23918
|
"LinkedService.AzureSearch": AzureSearchLinkedService,
|
|
@@ -23509,6 +24018,7 @@ let discriminators = {
|
|
|
23509
24018
|
"Dataset.AmazonRdsForSqlServerTable": AmazonRdsForSqlServerTableDataset,
|
|
23510
24019
|
"Dataset.RestResource": RestResourceDataset,
|
|
23511
24020
|
"Dataset.SapTableResource": SapTableResourceDataset,
|
|
24021
|
+
"Dataset.SapOdpResource": SapOdpResourceDataset,
|
|
23512
24022
|
"Dataset.WebTable": WebTableDataset,
|
|
23513
24023
|
"Dataset.AzureSearchIndex": AzureSearchIndexDataset,
|
|
23514
24024
|
"Dataset.HttpFile": HttpDataset,
|
|
@@ -23758,6 +24268,7 @@ let discriminators = {
|
|
|
23758
24268
|
"CopySource.SapEccSource": SapEccSource,
|
|
23759
24269
|
"CopySource.SapHanaSource": SapHanaSource,
|
|
23760
24270
|
"CopySource.SapOpenHubSource": SapOpenHubSource,
|
|
24271
|
+
"CopySource.SapOdpSource": SapOdpSource,
|
|
23761
24272
|
"CopySource.SapTableSource": SapTableSource,
|
|
23762
24273
|
"CopySource.SqlSource": SqlSource,
|
|
23763
24274
|
"CopySource.SqlServerSource": SqlServerSource,
|
|
@@ -24096,8 +24607,8 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
24096
24607
|
SapCloudForCustomerLinkedService: SapCloudForCustomerLinkedService,
|
|
24097
24608
|
SapEccLinkedService: SapEccLinkedService,
|
|
24098
24609
|
SapOpenHubLinkedService: SapOpenHubLinkedService,
|
|
24610
|
+
SapOdpLinkedService: SapOdpLinkedService,
|
|
24099
24611
|
RestServiceLinkedService: RestServiceLinkedService,
|
|
24100
|
-
AmazonS3LinkedService: AmazonS3LinkedService,
|
|
24101
24612
|
TeamDeskLinkedService: TeamDeskLinkedService,
|
|
24102
24613
|
QuickbaseLinkedService: QuickbaseLinkedService,
|
|
24103
24614
|
SmartsheetLinkedService: SmartsheetLinkedService,
|
|
@@ -24106,6 +24617,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
24106
24617
|
AppFiguresLinkedService: AppFiguresLinkedService,
|
|
24107
24618
|
AsanaLinkedService: AsanaLinkedService,
|
|
24108
24619
|
TwilioLinkedService: TwilioLinkedService,
|
|
24620
|
+
AmazonS3LinkedService: AmazonS3LinkedService,
|
|
24109
24621
|
AmazonRedshiftLinkedService: AmazonRedshiftLinkedService,
|
|
24110
24622
|
CustomDataSourceLinkedService: CustomDataSourceLinkedService,
|
|
24111
24623
|
AzureSearchLinkedService: AzureSearchLinkedService,
|
|
@@ -24211,6 +24723,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
24211
24723
|
AmazonRdsForSqlServerTableDataset: AmazonRdsForSqlServerTableDataset,
|
|
24212
24724
|
RestResourceDataset: RestResourceDataset,
|
|
24213
24725
|
SapTableResourceDataset: SapTableResourceDataset,
|
|
24726
|
+
SapOdpResourceDataset: SapOdpResourceDataset,
|
|
24214
24727
|
WebTableDataset: WebTableDataset,
|
|
24215
24728
|
AzureSearchIndexDataset: AzureSearchIndexDataset,
|
|
24216
24729
|
HttpDataset: HttpDataset,
|
|
@@ -24469,6 +24982,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
24469
24982
|
SapEccSource: SapEccSource,
|
|
24470
24983
|
SapHanaSource: SapHanaSource,
|
|
24471
24984
|
SapOpenHubSource: SapOpenHubSource,
|
|
24985
|
+
SapOdpSource: SapOdpSource,
|
|
24472
24986
|
SapTableSource: SapTableSource,
|
|
24473
24987
|
SqlSource: SqlSource,
|
|
24474
24988
|
SqlServerSource: SqlServerSource,
|
|
@@ -30153,13 +30667,10 @@ class DataFactoryManagementClient extends coreClient__namespace.ServiceClient {
|
|
|
30153
30667
|
requestContentType: "application/json; charset=utf-8",
|
|
30154
30668
|
credential: credentials
|
|
30155
30669
|
};
|
|
30156
|
-
const packageDetails = `azsdk-js-arm-datafactory/10.
|
|
30670
|
+
const packageDetails = `azsdk-js-arm-datafactory/10.7.0`;
|
|
30157
30671
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
30158
30672
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
30159
30673
|
: `${packageDetails}`;
|
|
30160
|
-
if (!options.credentialScopes) {
|
|
30161
|
-
options.credentialScopes = ["https://management.azure.com/.default"];
|
|
30162
|
-
}
|
|
30163
30674
|
const optionsWithDefaults = Object.assign(Object.assign(Object.assign({}, defaults), options), { userAgentOptions: {
|
|
30164
30675
|
userAgentPrefix
|
|
30165
30676
|
}, baseUri: (_b = (_a = options.endpoint) !== null && _a !== void 0 ? _a : options.baseUri) !== null && _b !== void 0 ? _b : "https://management.azure.com" });
|
|
@@ -30221,7 +30732,7 @@ class DataFactoryManagementClient extends coreClient__namespace.ServiceClient {
|
|
|
30221
30732
|
if (param.length > 1) {
|
|
30222
30733
|
const newParams = param[1].split("&").map((item) => {
|
|
30223
30734
|
if (item.indexOf("api-version") > -1) {
|
|
30224
|
-
return
|
|
30735
|
+
return "api-version=" + apiVersion;
|
|
30225
30736
|
}
|
|
30226
30737
|
else {
|
|
30227
30738
|
return item;
|