@azure/arm-datafactory 10.6.1-alpha.20220609.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 -10
- 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
|
@@ -8,760 +8,1113 @@
|
|
|
8
8
|
/** Known values of {@link FactoryIdentityType} that the service accepts. */
|
|
9
9
|
export var KnownFactoryIdentityType;
|
|
10
10
|
(function (KnownFactoryIdentityType) {
|
|
11
|
+
/** SystemAssigned */
|
|
11
12
|
KnownFactoryIdentityType["SystemAssigned"] = "SystemAssigned";
|
|
13
|
+
/** UserAssigned */
|
|
12
14
|
KnownFactoryIdentityType["UserAssigned"] = "UserAssigned";
|
|
15
|
+
/** SystemAssignedUserAssigned */
|
|
13
16
|
KnownFactoryIdentityType["SystemAssignedUserAssigned"] = "SystemAssigned,UserAssigned";
|
|
14
17
|
})(KnownFactoryIdentityType || (KnownFactoryIdentityType = {}));
|
|
15
18
|
/** Known values of {@link GlobalParameterType} that the service accepts. */
|
|
16
19
|
export var KnownGlobalParameterType;
|
|
17
20
|
(function (KnownGlobalParameterType) {
|
|
21
|
+
/** Object */
|
|
18
22
|
KnownGlobalParameterType["Object"] = "Object";
|
|
23
|
+
/** String */
|
|
19
24
|
KnownGlobalParameterType["String"] = "String";
|
|
25
|
+
/** Int */
|
|
20
26
|
KnownGlobalParameterType["Int"] = "Int";
|
|
27
|
+
/** Float */
|
|
21
28
|
KnownGlobalParameterType["Float"] = "Float";
|
|
29
|
+
/** Bool */
|
|
22
30
|
KnownGlobalParameterType["Bool"] = "Bool";
|
|
31
|
+
/** Array */
|
|
23
32
|
KnownGlobalParameterType["Array"] = "Array";
|
|
24
33
|
})(KnownGlobalParameterType || (KnownGlobalParameterType = {}));
|
|
25
34
|
/** Known values of {@link PublicNetworkAccess} that the service accepts. */
|
|
26
35
|
export var KnownPublicNetworkAccess;
|
|
27
36
|
(function (KnownPublicNetworkAccess) {
|
|
37
|
+
/** Enabled */
|
|
28
38
|
KnownPublicNetworkAccess["Enabled"] = "Enabled";
|
|
39
|
+
/** Disabled */
|
|
29
40
|
KnownPublicNetworkAccess["Disabled"] = "Disabled";
|
|
30
41
|
})(KnownPublicNetworkAccess || (KnownPublicNetworkAccess = {}));
|
|
31
42
|
/** Known values of {@link IntegrationRuntimeType} that the service accepts. */
|
|
32
43
|
export var KnownIntegrationRuntimeType;
|
|
33
44
|
(function (KnownIntegrationRuntimeType) {
|
|
45
|
+
/** Managed */
|
|
34
46
|
KnownIntegrationRuntimeType["Managed"] = "Managed";
|
|
47
|
+
/** SelfHosted */
|
|
35
48
|
KnownIntegrationRuntimeType["SelfHosted"] = "SelfHosted";
|
|
36
49
|
})(KnownIntegrationRuntimeType || (KnownIntegrationRuntimeType = {}));
|
|
37
50
|
/** Known values of {@link IntegrationRuntimeAutoUpdate} that the service accepts. */
|
|
38
51
|
export var KnownIntegrationRuntimeAutoUpdate;
|
|
39
52
|
(function (KnownIntegrationRuntimeAutoUpdate) {
|
|
53
|
+
/** On */
|
|
40
54
|
KnownIntegrationRuntimeAutoUpdate["On"] = "On";
|
|
55
|
+
/** Off */
|
|
41
56
|
KnownIntegrationRuntimeAutoUpdate["Off"] = "Off";
|
|
42
57
|
})(KnownIntegrationRuntimeAutoUpdate || (KnownIntegrationRuntimeAutoUpdate = {}));
|
|
43
58
|
/** Known values of {@link IntegrationRuntimeState} that the service accepts. */
|
|
44
59
|
export var KnownIntegrationRuntimeState;
|
|
45
60
|
(function (KnownIntegrationRuntimeState) {
|
|
61
|
+
/** Initial */
|
|
46
62
|
KnownIntegrationRuntimeState["Initial"] = "Initial";
|
|
63
|
+
/** Stopped */
|
|
47
64
|
KnownIntegrationRuntimeState["Stopped"] = "Stopped";
|
|
65
|
+
/** Started */
|
|
48
66
|
KnownIntegrationRuntimeState["Started"] = "Started";
|
|
67
|
+
/** Starting */
|
|
49
68
|
KnownIntegrationRuntimeState["Starting"] = "Starting";
|
|
69
|
+
/** Stopping */
|
|
50
70
|
KnownIntegrationRuntimeState["Stopping"] = "Stopping";
|
|
71
|
+
/** NeedRegistration */
|
|
51
72
|
KnownIntegrationRuntimeState["NeedRegistration"] = "NeedRegistration";
|
|
73
|
+
/** Online */
|
|
52
74
|
KnownIntegrationRuntimeState["Online"] = "Online";
|
|
75
|
+
/** Limited */
|
|
53
76
|
KnownIntegrationRuntimeState["Limited"] = "Limited";
|
|
77
|
+
/** Offline */
|
|
54
78
|
KnownIntegrationRuntimeState["Offline"] = "Offline";
|
|
79
|
+
/** AccessDenied */
|
|
55
80
|
KnownIntegrationRuntimeState["AccessDenied"] = "AccessDenied";
|
|
56
81
|
})(KnownIntegrationRuntimeState || (KnownIntegrationRuntimeState = {}));
|
|
57
82
|
/** Known values of {@link IntegrationRuntimeAuthKeyName} that the service accepts. */
|
|
58
83
|
export var KnownIntegrationRuntimeAuthKeyName;
|
|
59
84
|
(function (KnownIntegrationRuntimeAuthKeyName) {
|
|
85
|
+
/** AuthKey1 */
|
|
60
86
|
KnownIntegrationRuntimeAuthKeyName["AuthKey1"] = "authKey1";
|
|
87
|
+
/** AuthKey2 */
|
|
61
88
|
KnownIntegrationRuntimeAuthKeyName["AuthKey2"] = "authKey2";
|
|
62
89
|
})(KnownIntegrationRuntimeAuthKeyName || (KnownIntegrationRuntimeAuthKeyName = {}));
|
|
63
90
|
/** Known values of {@link SsisObjectMetadataType} that the service accepts. */
|
|
64
91
|
export var KnownSsisObjectMetadataType;
|
|
65
92
|
(function (KnownSsisObjectMetadataType) {
|
|
93
|
+
/** Folder */
|
|
66
94
|
KnownSsisObjectMetadataType["Folder"] = "Folder";
|
|
95
|
+
/** Project */
|
|
67
96
|
KnownSsisObjectMetadataType["Project"] = "Project";
|
|
97
|
+
/** Package */
|
|
68
98
|
KnownSsisObjectMetadataType["Package"] = "Package";
|
|
99
|
+
/** Environment */
|
|
69
100
|
KnownSsisObjectMetadataType["Environment"] = "Environment";
|
|
70
101
|
})(KnownSsisObjectMetadataType || (KnownSsisObjectMetadataType = {}));
|
|
71
102
|
/** Known values of {@link SelfHostedIntegrationRuntimeNodeStatus} that the service accepts. */
|
|
72
103
|
export var KnownSelfHostedIntegrationRuntimeNodeStatus;
|
|
73
104
|
(function (KnownSelfHostedIntegrationRuntimeNodeStatus) {
|
|
105
|
+
/** NeedRegistration */
|
|
74
106
|
KnownSelfHostedIntegrationRuntimeNodeStatus["NeedRegistration"] = "NeedRegistration";
|
|
107
|
+
/** Online */
|
|
75
108
|
KnownSelfHostedIntegrationRuntimeNodeStatus["Online"] = "Online";
|
|
109
|
+
/** Limited */
|
|
76
110
|
KnownSelfHostedIntegrationRuntimeNodeStatus["Limited"] = "Limited";
|
|
111
|
+
/** Offline */
|
|
77
112
|
KnownSelfHostedIntegrationRuntimeNodeStatus["Offline"] = "Offline";
|
|
113
|
+
/** Upgrading */
|
|
78
114
|
KnownSelfHostedIntegrationRuntimeNodeStatus["Upgrading"] = "Upgrading";
|
|
115
|
+
/** Initializing */
|
|
79
116
|
KnownSelfHostedIntegrationRuntimeNodeStatus["Initializing"] = "Initializing";
|
|
117
|
+
/** InitializeFailed */
|
|
80
118
|
KnownSelfHostedIntegrationRuntimeNodeStatus["InitializeFailed"] = "InitializeFailed";
|
|
81
119
|
})(KnownSelfHostedIntegrationRuntimeNodeStatus || (KnownSelfHostedIntegrationRuntimeNodeStatus = {}));
|
|
82
120
|
/** Known values of {@link IntegrationRuntimeUpdateResult} that the service accepts. */
|
|
83
121
|
export var KnownIntegrationRuntimeUpdateResult;
|
|
84
122
|
(function (KnownIntegrationRuntimeUpdateResult) {
|
|
123
|
+
/** None */
|
|
85
124
|
KnownIntegrationRuntimeUpdateResult["None"] = "None";
|
|
125
|
+
/** Succeed */
|
|
86
126
|
KnownIntegrationRuntimeUpdateResult["Succeed"] = "Succeed";
|
|
127
|
+
/** Fail */
|
|
87
128
|
KnownIntegrationRuntimeUpdateResult["Fail"] = "Fail";
|
|
88
129
|
})(KnownIntegrationRuntimeUpdateResult || (KnownIntegrationRuntimeUpdateResult = {}));
|
|
89
130
|
/** Known values of {@link ParameterType} that the service accepts. */
|
|
90
131
|
export var KnownParameterType;
|
|
91
132
|
(function (KnownParameterType) {
|
|
133
|
+
/** Object */
|
|
92
134
|
KnownParameterType["Object"] = "Object";
|
|
135
|
+
/** String */
|
|
93
136
|
KnownParameterType["String"] = "String";
|
|
137
|
+
/** Int */
|
|
94
138
|
KnownParameterType["Int"] = "Int";
|
|
139
|
+
/** Float */
|
|
95
140
|
KnownParameterType["Float"] = "Float";
|
|
141
|
+
/** Bool */
|
|
96
142
|
KnownParameterType["Bool"] = "Bool";
|
|
143
|
+
/** Array */
|
|
97
144
|
KnownParameterType["Array"] = "Array";
|
|
145
|
+
/** SecureString */
|
|
98
146
|
KnownParameterType["SecureString"] = "SecureString";
|
|
99
147
|
})(KnownParameterType || (KnownParameterType = {}));
|
|
148
|
+
/** Known values of {@link Type} that the service accepts. */
|
|
149
|
+
export var KnownType;
|
|
150
|
+
(function (KnownType) {
|
|
151
|
+
/** LinkedServiceReference */
|
|
152
|
+
KnownType["LinkedServiceReference"] = "LinkedServiceReference";
|
|
153
|
+
})(KnownType || (KnownType = {}));
|
|
100
154
|
/** Known values of {@link DependencyCondition} that the service accepts. */
|
|
101
155
|
export var KnownDependencyCondition;
|
|
102
156
|
(function (KnownDependencyCondition) {
|
|
157
|
+
/** Succeeded */
|
|
103
158
|
KnownDependencyCondition["Succeeded"] = "Succeeded";
|
|
159
|
+
/** Failed */
|
|
104
160
|
KnownDependencyCondition["Failed"] = "Failed";
|
|
161
|
+
/** Skipped */
|
|
105
162
|
KnownDependencyCondition["Skipped"] = "Skipped";
|
|
163
|
+
/** Completed */
|
|
106
164
|
KnownDependencyCondition["Completed"] = "Completed";
|
|
107
165
|
})(KnownDependencyCondition || (KnownDependencyCondition = {}));
|
|
108
166
|
/** Known values of {@link VariableType} that the service accepts. */
|
|
109
167
|
export var KnownVariableType;
|
|
110
168
|
(function (KnownVariableType) {
|
|
169
|
+
/** String */
|
|
111
170
|
KnownVariableType["String"] = "String";
|
|
171
|
+
/** Bool */
|
|
112
172
|
KnownVariableType["Bool"] = "Bool";
|
|
173
|
+
/** Array */
|
|
113
174
|
KnownVariableType["Array"] = "Array";
|
|
114
175
|
})(KnownVariableType || (KnownVariableType = {}));
|
|
115
176
|
/** Known values of {@link RunQueryFilterOperand} that the service accepts. */
|
|
116
177
|
export var KnownRunQueryFilterOperand;
|
|
117
178
|
(function (KnownRunQueryFilterOperand) {
|
|
179
|
+
/** PipelineName */
|
|
118
180
|
KnownRunQueryFilterOperand["PipelineName"] = "PipelineName";
|
|
181
|
+
/** Status */
|
|
119
182
|
KnownRunQueryFilterOperand["Status"] = "Status";
|
|
183
|
+
/** RunStart */
|
|
120
184
|
KnownRunQueryFilterOperand["RunStart"] = "RunStart";
|
|
185
|
+
/** RunEnd */
|
|
121
186
|
KnownRunQueryFilterOperand["RunEnd"] = "RunEnd";
|
|
187
|
+
/** ActivityName */
|
|
122
188
|
KnownRunQueryFilterOperand["ActivityName"] = "ActivityName";
|
|
189
|
+
/** ActivityRunStart */
|
|
123
190
|
KnownRunQueryFilterOperand["ActivityRunStart"] = "ActivityRunStart";
|
|
191
|
+
/** ActivityRunEnd */
|
|
124
192
|
KnownRunQueryFilterOperand["ActivityRunEnd"] = "ActivityRunEnd";
|
|
193
|
+
/** ActivityType */
|
|
125
194
|
KnownRunQueryFilterOperand["ActivityType"] = "ActivityType";
|
|
195
|
+
/** TriggerName */
|
|
126
196
|
KnownRunQueryFilterOperand["TriggerName"] = "TriggerName";
|
|
197
|
+
/** TriggerRunTimestamp */
|
|
127
198
|
KnownRunQueryFilterOperand["TriggerRunTimestamp"] = "TriggerRunTimestamp";
|
|
199
|
+
/** RunGroupId */
|
|
128
200
|
KnownRunQueryFilterOperand["RunGroupId"] = "RunGroupId";
|
|
201
|
+
/** LatestOnly */
|
|
129
202
|
KnownRunQueryFilterOperand["LatestOnly"] = "LatestOnly";
|
|
130
203
|
})(KnownRunQueryFilterOperand || (KnownRunQueryFilterOperand = {}));
|
|
131
204
|
/** Known values of {@link RunQueryFilterOperator} that the service accepts. */
|
|
132
205
|
export var KnownRunQueryFilterOperator;
|
|
133
206
|
(function (KnownRunQueryFilterOperator) {
|
|
207
|
+
/** Equals */
|
|
134
208
|
KnownRunQueryFilterOperator["Equals"] = "Equals";
|
|
209
|
+
/** NotEquals */
|
|
135
210
|
KnownRunQueryFilterOperator["NotEquals"] = "NotEquals";
|
|
211
|
+
/** In */
|
|
136
212
|
KnownRunQueryFilterOperator["In"] = "In";
|
|
213
|
+
/** NotIn */
|
|
137
214
|
KnownRunQueryFilterOperator["NotIn"] = "NotIn";
|
|
138
215
|
})(KnownRunQueryFilterOperator || (KnownRunQueryFilterOperator = {}));
|
|
139
216
|
/** Known values of {@link RunQueryOrderByField} that the service accepts. */
|
|
140
217
|
export var KnownRunQueryOrderByField;
|
|
141
218
|
(function (KnownRunQueryOrderByField) {
|
|
219
|
+
/** RunStart */
|
|
142
220
|
KnownRunQueryOrderByField["RunStart"] = "RunStart";
|
|
221
|
+
/** RunEnd */
|
|
143
222
|
KnownRunQueryOrderByField["RunEnd"] = "RunEnd";
|
|
223
|
+
/** PipelineName */
|
|
144
224
|
KnownRunQueryOrderByField["PipelineName"] = "PipelineName";
|
|
225
|
+
/** Status */
|
|
145
226
|
KnownRunQueryOrderByField["Status"] = "Status";
|
|
227
|
+
/** ActivityName */
|
|
146
228
|
KnownRunQueryOrderByField["ActivityName"] = "ActivityName";
|
|
229
|
+
/** ActivityRunStart */
|
|
147
230
|
KnownRunQueryOrderByField["ActivityRunStart"] = "ActivityRunStart";
|
|
231
|
+
/** ActivityRunEnd */
|
|
148
232
|
KnownRunQueryOrderByField["ActivityRunEnd"] = "ActivityRunEnd";
|
|
233
|
+
/** TriggerName */
|
|
149
234
|
KnownRunQueryOrderByField["TriggerName"] = "TriggerName";
|
|
235
|
+
/** TriggerRunTimestamp */
|
|
150
236
|
KnownRunQueryOrderByField["TriggerRunTimestamp"] = "TriggerRunTimestamp";
|
|
151
237
|
})(KnownRunQueryOrderByField || (KnownRunQueryOrderByField = {}));
|
|
152
238
|
/** Known values of {@link RunQueryOrder} that the service accepts. */
|
|
153
239
|
export var KnownRunQueryOrder;
|
|
154
240
|
(function (KnownRunQueryOrder) {
|
|
241
|
+
/** ASC */
|
|
155
242
|
KnownRunQueryOrder["ASC"] = "ASC";
|
|
243
|
+
/** Desc */
|
|
156
244
|
KnownRunQueryOrder["Desc"] = "DESC";
|
|
157
245
|
})(KnownRunQueryOrder || (KnownRunQueryOrder = {}));
|
|
158
246
|
/** Known values of {@link TriggerRuntimeState} that the service accepts. */
|
|
159
247
|
export var KnownTriggerRuntimeState;
|
|
160
248
|
(function (KnownTriggerRuntimeState) {
|
|
249
|
+
/** Started */
|
|
161
250
|
KnownTriggerRuntimeState["Started"] = "Started";
|
|
251
|
+
/** Stopped */
|
|
162
252
|
KnownTriggerRuntimeState["Stopped"] = "Stopped";
|
|
253
|
+
/** Disabled */
|
|
163
254
|
KnownTriggerRuntimeState["Disabled"] = "Disabled";
|
|
164
255
|
})(KnownTriggerRuntimeState || (KnownTriggerRuntimeState = {}));
|
|
165
256
|
/** Known values of {@link EventSubscriptionStatus} that the service accepts. */
|
|
166
257
|
export var KnownEventSubscriptionStatus;
|
|
167
258
|
(function (KnownEventSubscriptionStatus) {
|
|
259
|
+
/** Enabled */
|
|
168
260
|
KnownEventSubscriptionStatus["Enabled"] = "Enabled";
|
|
261
|
+
/** Provisioning */
|
|
169
262
|
KnownEventSubscriptionStatus["Provisioning"] = "Provisioning";
|
|
263
|
+
/** Deprovisioning */
|
|
170
264
|
KnownEventSubscriptionStatus["Deprovisioning"] = "Deprovisioning";
|
|
265
|
+
/** Disabled */
|
|
171
266
|
KnownEventSubscriptionStatus["Disabled"] = "Disabled";
|
|
267
|
+
/** Unknown */
|
|
172
268
|
KnownEventSubscriptionStatus["Unknown"] = "Unknown";
|
|
173
269
|
})(KnownEventSubscriptionStatus || (KnownEventSubscriptionStatus = {}));
|
|
174
270
|
/** Known values of {@link TriggerRunStatus} that the service accepts. */
|
|
175
271
|
export var KnownTriggerRunStatus;
|
|
176
272
|
(function (KnownTriggerRunStatus) {
|
|
273
|
+
/** Succeeded */
|
|
177
274
|
KnownTriggerRunStatus["Succeeded"] = "Succeeded";
|
|
275
|
+
/** Failed */
|
|
178
276
|
KnownTriggerRunStatus["Failed"] = "Failed";
|
|
277
|
+
/** Inprogress */
|
|
179
278
|
KnownTriggerRunStatus["Inprogress"] = "Inprogress";
|
|
180
279
|
})(KnownTriggerRunStatus || (KnownTriggerRunStatus = {}));
|
|
181
280
|
/** Known values of {@link DataFlowDebugCommandType} that the service accepts. */
|
|
182
281
|
export var KnownDataFlowDebugCommandType;
|
|
183
282
|
(function (KnownDataFlowDebugCommandType) {
|
|
283
|
+
/** ExecutePreviewQuery */
|
|
184
284
|
KnownDataFlowDebugCommandType["ExecutePreviewQuery"] = "executePreviewQuery";
|
|
285
|
+
/** ExecuteStatisticsQuery */
|
|
185
286
|
KnownDataFlowDebugCommandType["ExecuteStatisticsQuery"] = "executeStatisticsQuery";
|
|
287
|
+
/** ExecuteExpressionQuery */
|
|
186
288
|
KnownDataFlowDebugCommandType["ExecuteExpressionQuery"] = "executeExpressionQuery";
|
|
187
289
|
})(KnownDataFlowDebugCommandType || (KnownDataFlowDebugCommandType = {}));
|
|
188
290
|
/** Known values of {@link DataFlowReferenceType} that the service accepts. */
|
|
189
291
|
export var KnownDataFlowReferenceType;
|
|
190
292
|
(function (KnownDataFlowReferenceType) {
|
|
293
|
+
/** DataFlowReference */
|
|
191
294
|
KnownDataFlowReferenceType["DataFlowReference"] = "DataFlowReference";
|
|
192
295
|
})(KnownDataFlowReferenceType || (KnownDataFlowReferenceType = {}));
|
|
193
296
|
/** Known values of {@link ManagedVirtualNetworkReferenceType} that the service accepts. */
|
|
194
297
|
export var KnownManagedVirtualNetworkReferenceType;
|
|
195
298
|
(function (KnownManagedVirtualNetworkReferenceType) {
|
|
299
|
+
/** ManagedVirtualNetworkReference */
|
|
196
300
|
KnownManagedVirtualNetworkReferenceType["ManagedVirtualNetworkReference"] = "ManagedVirtualNetworkReference";
|
|
197
301
|
})(KnownManagedVirtualNetworkReferenceType || (KnownManagedVirtualNetworkReferenceType = {}));
|
|
198
302
|
/** Known values of {@link CredentialReferenceType} that the service accepts. */
|
|
199
303
|
export var KnownCredentialReferenceType;
|
|
200
304
|
(function (KnownCredentialReferenceType) {
|
|
305
|
+
/** CredentialReference */
|
|
201
306
|
KnownCredentialReferenceType["CredentialReference"] = "CredentialReference";
|
|
202
307
|
})(KnownCredentialReferenceType || (KnownCredentialReferenceType = {}));
|
|
203
308
|
/** Known values of {@link DataFlowComputeType} that the service accepts. */
|
|
204
309
|
export var KnownDataFlowComputeType;
|
|
205
310
|
(function (KnownDataFlowComputeType) {
|
|
311
|
+
/** General */
|
|
206
312
|
KnownDataFlowComputeType["General"] = "General";
|
|
313
|
+
/** MemoryOptimized */
|
|
207
314
|
KnownDataFlowComputeType["MemoryOptimized"] = "MemoryOptimized";
|
|
315
|
+
/** ComputeOptimized */
|
|
208
316
|
KnownDataFlowComputeType["ComputeOptimized"] = "ComputeOptimized";
|
|
209
317
|
})(KnownDataFlowComputeType || (KnownDataFlowComputeType = {}));
|
|
210
318
|
/** Known values of {@link IntegrationRuntimeSsisCatalogPricingTier} that the service accepts. */
|
|
211
319
|
export var KnownIntegrationRuntimeSsisCatalogPricingTier;
|
|
212
320
|
(function (KnownIntegrationRuntimeSsisCatalogPricingTier) {
|
|
321
|
+
/** Basic */
|
|
213
322
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Basic"] = "Basic";
|
|
323
|
+
/** Standard */
|
|
214
324
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Standard"] = "Standard";
|
|
325
|
+
/** Premium */
|
|
215
326
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Premium"] = "Premium";
|
|
327
|
+
/** PremiumRS */
|
|
216
328
|
KnownIntegrationRuntimeSsisCatalogPricingTier["PremiumRS"] = "PremiumRS";
|
|
217
329
|
})(KnownIntegrationRuntimeSsisCatalogPricingTier || (KnownIntegrationRuntimeSsisCatalogPricingTier = {}));
|
|
218
330
|
/** Known values of {@link IntegrationRuntimeLicenseType} that the service accepts. */
|
|
219
331
|
export var KnownIntegrationRuntimeLicenseType;
|
|
220
332
|
(function (KnownIntegrationRuntimeLicenseType) {
|
|
333
|
+
/** BasePrice */
|
|
221
334
|
KnownIntegrationRuntimeLicenseType["BasePrice"] = "BasePrice";
|
|
335
|
+
/** LicenseIncluded */
|
|
222
336
|
KnownIntegrationRuntimeLicenseType["LicenseIncluded"] = "LicenseIncluded";
|
|
223
337
|
})(KnownIntegrationRuntimeLicenseType || (KnownIntegrationRuntimeLicenseType = {}));
|
|
224
338
|
/** Known values of {@link IntegrationRuntimeEntityReferenceType} that the service accepts. */
|
|
225
339
|
export var KnownIntegrationRuntimeEntityReferenceType;
|
|
226
340
|
(function (KnownIntegrationRuntimeEntityReferenceType) {
|
|
341
|
+
/** IntegrationRuntimeReference */
|
|
227
342
|
KnownIntegrationRuntimeEntityReferenceType["IntegrationRuntimeReference"] = "IntegrationRuntimeReference";
|
|
343
|
+
/** LinkedServiceReference */
|
|
228
344
|
KnownIntegrationRuntimeEntityReferenceType["LinkedServiceReference"] = "LinkedServiceReference";
|
|
229
345
|
})(KnownIntegrationRuntimeEntityReferenceType || (KnownIntegrationRuntimeEntityReferenceType = {}));
|
|
230
346
|
/** Known values of {@link IntegrationRuntimeEdition} that the service accepts. */
|
|
231
347
|
export var KnownIntegrationRuntimeEdition;
|
|
232
348
|
(function (KnownIntegrationRuntimeEdition) {
|
|
349
|
+
/** Standard */
|
|
233
350
|
KnownIntegrationRuntimeEdition["Standard"] = "Standard";
|
|
351
|
+
/** Enterprise */
|
|
234
352
|
KnownIntegrationRuntimeEdition["Enterprise"] = "Enterprise";
|
|
235
353
|
})(KnownIntegrationRuntimeEdition || (KnownIntegrationRuntimeEdition = {}));
|
|
236
354
|
/** Known values of {@link ManagedIntegrationRuntimeNodeStatus} that the service accepts. */
|
|
237
355
|
export var KnownManagedIntegrationRuntimeNodeStatus;
|
|
238
356
|
(function (KnownManagedIntegrationRuntimeNodeStatus) {
|
|
357
|
+
/** Starting */
|
|
239
358
|
KnownManagedIntegrationRuntimeNodeStatus["Starting"] = "Starting";
|
|
359
|
+
/** Available */
|
|
240
360
|
KnownManagedIntegrationRuntimeNodeStatus["Available"] = "Available";
|
|
361
|
+
/** Recycling */
|
|
241
362
|
KnownManagedIntegrationRuntimeNodeStatus["Recycling"] = "Recycling";
|
|
363
|
+
/** Unavailable */
|
|
242
364
|
KnownManagedIntegrationRuntimeNodeStatus["Unavailable"] = "Unavailable";
|
|
243
365
|
})(KnownManagedIntegrationRuntimeNodeStatus || (KnownManagedIntegrationRuntimeNodeStatus = {}));
|
|
244
366
|
/** Known values of {@link IntegrationRuntimeInternalChannelEncryptionMode} that the service accepts. */
|
|
245
367
|
export var KnownIntegrationRuntimeInternalChannelEncryptionMode;
|
|
246
368
|
(function (KnownIntegrationRuntimeInternalChannelEncryptionMode) {
|
|
369
|
+
/** NotSet */
|
|
247
370
|
KnownIntegrationRuntimeInternalChannelEncryptionMode["NotSet"] = "NotSet";
|
|
371
|
+
/** SslEncrypted */
|
|
248
372
|
KnownIntegrationRuntimeInternalChannelEncryptionMode["SslEncrypted"] = "SslEncrypted";
|
|
373
|
+
/** NotEncrypted */
|
|
249
374
|
KnownIntegrationRuntimeInternalChannelEncryptionMode["NotEncrypted"] = "NotEncrypted";
|
|
250
375
|
})(KnownIntegrationRuntimeInternalChannelEncryptionMode || (KnownIntegrationRuntimeInternalChannelEncryptionMode = {}));
|
|
251
376
|
/** Known values of {@link SqlAlwaysEncryptedAkvAuthType} that the service accepts. */
|
|
252
377
|
export var KnownSqlAlwaysEncryptedAkvAuthType;
|
|
253
378
|
(function (KnownSqlAlwaysEncryptedAkvAuthType) {
|
|
379
|
+
/** ServicePrincipal */
|
|
254
380
|
KnownSqlAlwaysEncryptedAkvAuthType["ServicePrincipal"] = "ServicePrincipal";
|
|
381
|
+
/** ManagedIdentity */
|
|
255
382
|
KnownSqlAlwaysEncryptedAkvAuthType["ManagedIdentity"] = "ManagedIdentity";
|
|
383
|
+
/** UserAssignedManagedIdentity */
|
|
256
384
|
KnownSqlAlwaysEncryptedAkvAuthType["UserAssignedManagedIdentity"] = "UserAssignedManagedIdentity";
|
|
257
385
|
})(KnownSqlAlwaysEncryptedAkvAuthType || (KnownSqlAlwaysEncryptedAkvAuthType = {}));
|
|
258
386
|
/** Known values of {@link CosmosDbServicePrincipalCredentialType} that the service accepts. */
|
|
259
387
|
export var KnownCosmosDbServicePrincipalCredentialType;
|
|
260
388
|
(function (KnownCosmosDbServicePrincipalCredentialType) {
|
|
389
|
+
/** ServicePrincipalKey */
|
|
261
390
|
KnownCosmosDbServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
391
|
+
/** ServicePrincipalCert */
|
|
262
392
|
KnownCosmosDbServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
263
393
|
})(KnownCosmosDbServicePrincipalCredentialType || (KnownCosmosDbServicePrincipalCredentialType = {}));
|
|
264
394
|
/** Known values of {@link CosmosDbConnectionMode} that the service accepts. */
|
|
265
395
|
export var KnownCosmosDbConnectionMode;
|
|
266
396
|
(function (KnownCosmosDbConnectionMode) {
|
|
397
|
+
/** Gateway */
|
|
267
398
|
KnownCosmosDbConnectionMode["Gateway"] = "Gateway";
|
|
399
|
+
/** Direct */
|
|
268
400
|
KnownCosmosDbConnectionMode["Direct"] = "Direct";
|
|
269
401
|
})(KnownCosmosDbConnectionMode || (KnownCosmosDbConnectionMode = {}));
|
|
270
402
|
/** Known values of {@link SybaseAuthenticationType} that the service accepts. */
|
|
271
403
|
export var KnownSybaseAuthenticationType;
|
|
272
404
|
(function (KnownSybaseAuthenticationType) {
|
|
405
|
+
/** Basic */
|
|
273
406
|
KnownSybaseAuthenticationType["Basic"] = "Basic";
|
|
407
|
+
/** Windows */
|
|
274
408
|
KnownSybaseAuthenticationType["Windows"] = "Windows";
|
|
275
409
|
})(KnownSybaseAuthenticationType || (KnownSybaseAuthenticationType = {}));
|
|
276
410
|
/** Known values of {@link Db2AuthenticationType} that the service accepts. */
|
|
277
411
|
export var KnownDb2AuthenticationType;
|
|
278
412
|
(function (KnownDb2AuthenticationType) {
|
|
413
|
+
/** Basic */
|
|
279
414
|
KnownDb2AuthenticationType["Basic"] = "Basic";
|
|
280
415
|
})(KnownDb2AuthenticationType || (KnownDb2AuthenticationType = {}));
|
|
281
416
|
/** Known values of {@link TeradataAuthenticationType} that the service accepts. */
|
|
282
417
|
export var KnownTeradataAuthenticationType;
|
|
283
418
|
(function (KnownTeradataAuthenticationType) {
|
|
419
|
+
/** Basic */
|
|
284
420
|
KnownTeradataAuthenticationType["Basic"] = "Basic";
|
|
421
|
+
/** Windows */
|
|
285
422
|
KnownTeradataAuthenticationType["Windows"] = "Windows";
|
|
286
423
|
})(KnownTeradataAuthenticationType || (KnownTeradataAuthenticationType = {}));
|
|
287
424
|
/** Known values of {@link ODataAuthenticationType} that the service accepts. */
|
|
288
425
|
export var KnownODataAuthenticationType;
|
|
289
426
|
(function (KnownODataAuthenticationType) {
|
|
427
|
+
/** Basic */
|
|
290
428
|
KnownODataAuthenticationType["Basic"] = "Basic";
|
|
429
|
+
/** Anonymous */
|
|
291
430
|
KnownODataAuthenticationType["Anonymous"] = "Anonymous";
|
|
431
|
+
/** Windows */
|
|
292
432
|
KnownODataAuthenticationType["Windows"] = "Windows";
|
|
433
|
+
/** AadServicePrincipal */
|
|
293
434
|
KnownODataAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
|
|
435
|
+
/** ManagedServiceIdentity */
|
|
294
436
|
KnownODataAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
|
|
295
437
|
})(KnownODataAuthenticationType || (KnownODataAuthenticationType = {}));
|
|
296
438
|
/** Known values of {@link ODataAadServicePrincipalCredentialType} that the service accepts. */
|
|
297
439
|
export var KnownODataAadServicePrincipalCredentialType;
|
|
298
440
|
(function (KnownODataAadServicePrincipalCredentialType) {
|
|
441
|
+
/** ServicePrincipalKey */
|
|
299
442
|
KnownODataAadServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
443
|
+
/** ServicePrincipalCert */
|
|
300
444
|
KnownODataAadServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
301
445
|
})(KnownODataAadServicePrincipalCredentialType || (KnownODataAadServicePrincipalCredentialType = {}));
|
|
302
446
|
/** Known values of {@link WebAuthenticationType} that the service accepts. */
|
|
303
447
|
export var KnownWebAuthenticationType;
|
|
304
448
|
(function (KnownWebAuthenticationType) {
|
|
449
|
+
/** Basic */
|
|
305
450
|
KnownWebAuthenticationType["Basic"] = "Basic";
|
|
451
|
+
/** Anonymous */
|
|
306
452
|
KnownWebAuthenticationType["Anonymous"] = "Anonymous";
|
|
453
|
+
/** ClientCertificate */
|
|
307
454
|
KnownWebAuthenticationType["ClientCertificate"] = "ClientCertificate";
|
|
308
455
|
})(KnownWebAuthenticationType || (KnownWebAuthenticationType = {}));
|
|
309
456
|
/** Known values of {@link MongoDbAuthenticationType} that the service accepts. */
|
|
310
457
|
export var KnownMongoDbAuthenticationType;
|
|
311
458
|
(function (KnownMongoDbAuthenticationType) {
|
|
459
|
+
/** Basic */
|
|
312
460
|
KnownMongoDbAuthenticationType["Basic"] = "Basic";
|
|
461
|
+
/** Anonymous */
|
|
313
462
|
KnownMongoDbAuthenticationType["Anonymous"] = "Anonymous";
|
|
314
463
|
})(KnownMongoDbAuthenticationType || (KnownMongoDbAuthenticationType = {}));
|
|
315
464
|
/** Known values of {@link RestServiceAuthenticationType} that the service accepts. */
|
|
316
465
|
export var KnownRestServiceAuthenticationType;
|
|
317
466
|
(function (KnownRestServiceAuthenticationType) {
|
|
467
|
+
/** Anonymous */
|
|
318
468
|
KnownRestServiceAuthenticationType["Anonymous"] = "Anonymous";
|
|
469
|
+
/** Basic */
|
|
319
470
|
KnownRestServiceAuthenticationType["Basic"] = "Basic";
|
|
471
|
+
/** AadServicePrincipal */
|
|
320
472
|
KnownRestServiceAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
|
|
473
|
+
/** ManagedServiceIdentity */
|
|
321
474
|
KnownRestServiceAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
|
|
475
|
+
/** OAuth2ClientCredential */
|
|
322
476
|
KnownRestServiceAuthenticationType["OAuth2ClientCredential"] = "OAuth2ClientCredential";
|
|
323
477
|
})(KnownRestServiceAuthenticationType || (KnownRestServiceAuthenticationType = {}));
|
|
324
478
|
/** Known values of {@link TeamDeskAuthenticationType} that the service accepts. */
|
|
325
479
|
export var KnownTeamDeskAuthenticationType;
|
|
326
480
|
(function (KnownTeamDeskAuthenticationType) {
|
|
481
|
+
/** Basic */
|
|
327
482
|
KnownTeamDeskAuthenticationType["Basic"] = "Basic";
|
|
483
|
+
/** Token */
|
|
328
484
|
KnownTeamDeskAuthenticationType["Token"] = "Token";
|
|
329
485
|
})(KnownTeamDeskAuthenticationType || (KnownTeamDeskAuthenticationType = {}));
|
|
330
486
|
/** Known values of {@link ZendeskAuthenticationType} that the service accepts. */
|
|
331
487
|
export var KnownZendeskAuthenticationType;
|
|
332
488
|
(function (KnownZendeskAuthenticationType) {
|
|
489
|
+
/** Basic */
|
|
333
490
|
KnownZendeskAuthenticationType["Basic"] = "Basic";
|
|
491
|
+
/** Token */
|
|
334
492
|
KnownZendeskAuthenticationType["Token"] = "Token";
|
|
335
493
|
})(KnownZendeskAuthenticationType || (KnownZendeskAuthenticationType = {}));
|
|
336
494
|
/** Known values of {@link HttpAuthenticationType} that the service accepts. */
|
|
337
495
|
export var KnownHttpAuthenticationType;
|
|
338
496
|
(function (KnownHttpAuthenticationType) {
|
|
497
|
+
/** Basic */
|
|
339
498
|
KnownHttpAuthenticationType["Basic"] = "Basic";
|
|
499
|
+
/** Anonymous */
|
|
340
500
|
KnownHttpAuthenticationType["Anonymous"] = "Anonymous";
|
|
501
|
+
/** Digest */
|
|
341
502
|
KnownHttpAuthenticationType["Digest"] = "Digest";
|
|
503
|
+
/** Windows */
|
|
342
504
|
KnownHttpAuthenticationType["Windows"] = "Windows";
|
|
505
|
+
/** ClientCertificate */
|
|
343
506
|
KnownHttpAuthenticationType["ClientCertificate"] = "ClientCertificate";
|
|
344
507
|
})(KnownHttpAuthenticationType || (KnownHttpAuthenticationType = {}));
|
|
345
508
|
/** Known values of {@link FtpAuthenticationType} that the service accepts. */
|
|
346
509
|
export var KnownFtpAuthenticationType;
|
|
347
510
|
(function (KnownFtpAuthenticationType) {
|
|
511
|
+
/** Basic */
|
|
348
512
|
KnownFtpAuthenticationType["Basic"] = "Basic";
|
|
513
|
+
/** Anonymous */
|
|
349
514
|
KnownFtpAuthenticationType["Anonymous"] = "Anonymous";
|
|
350
515
|
})(KnownFtpAuthenticationType || (KnownFtpAuthenticationType = {}));
|
|
351
516
|
/** Known values of {@link SftpAuthenticationType} that the service accepts. */
|
|
352
517
|
export var KnownSftpAuthenticationType;
|
|
353
518
|
(function (KnownSftpAuthenticationType) {
|
|
519
|
+
/** Basic */
|
|
354
520
|
KnownSftpAuthenticationType["Basic"] = "Basic";
|
|
521
|
+
/** SshPublicKey */
|
|
355
522
|
KnownSftpAuthenticationType["SshPublicKey"] = "SshPublicKey";
|
|
523
|
+
/** MultiFactor */
|
|
356
524
|
KnownSftpAuthenticationType["MultiFactor"] = "MultiFactor";
|
|
357
525
|
})(KnownSftpAuthenticationType || (KnownSftpAuthenticationType = {}));
|
|
358
526
|
/** Known values of {@link SapHanaAuthenticationType} that the service accepts. */
|
|
359
527
|
export var KnownSapHanaAuthenticationType;
|
|
360
528
|
(function (KnownSapHanaAuthenticationType) {
|
|
529
|
+
/** Basic */
|
|
361
530
|
KnownSapHanaAuthenticationType["Basic"] = "Basic";
|
|
531
|
+
/** Windows */
|
|
362
532
|
KnownSapHanaAuthenticationType["Windows"] = "Windows";
|
|
363
533
|
})(KnownSapHanaAuthenticationType || (KnownSapHanaAuthenticationType = {}));
|
|
364
534
|
/** Known values of {@link GoogleBigQueryAuthenticationType} that the service accepts. */
|
|
365
535
|
export var KnownGoogleBigQueryAuthenticationType;
|
|
366
536
|
(function (KnownGoogleBigQueryAuthenticationType) {
|
|
537
|
+
/** ServiceAuthentication */
|
|
367
538
|
KnownGoogleBigQueryAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
|
|
539
|
+
/** UserAuthentication */
|
|
368
540
|
KnownGoogleBigQueryAuthenticationType["UserAuthentication"] = "UserAuthentication";
|
|
369
541
|
})(KnownGoogleBigQueryAuthenticationType || (KnownGoogleBigQueryAuthenticationType = {}));
|
|
370
542
|
/** Known values of {@link HBaseAuthenticationType} that the service accepts. */
|
|
371
543
|
export var KnownHBaseAuthenticationType;
|
|
372
544
|
(function (KnownHBaseAuthenticationType) {
|
|
545
|
+
/** Anonymous */
|
|
373
546
|
KnownHBaseAuthenticationType["Anonymous"] = "Anonymous";
|
|
547
|
+
/** Basic */
|
|
374
548
|
KnownHBaseAuthenticationType["Basic"] = "Basic";
|
|
375
549
|
})(KnownHBaseAuthenticationType || (KnownHBaseAuthenticationType = {}));
|
|
376
550
|
/** Known values of {@link HiveServerType} that the service accepts. */
|
|
377
551
|
export var KnownHiveServerType;
|
|
378
552
|
(function (KnownHiveServerType) {
|
|
553
|
+
/** HiveServer1 */
|
|
379
554
|
KnownHiveServerType["HiveServer1"] = "HiveServer1";
|
|
555
|
+
/** HiveServer2 */
|
|
380
556
|
KnownHiveServerType["HiveServer2"] = "HiveServer2";
|
|
557
|
+
/** HiveThriftServer */
|
|
381
558
|
KnownHiveServerType["HiveThriftServer"] = "HiveThriftServer";
|
|
382
559
|
})(KnownHiveServerType || (KnownHiveServerType = {}));
|
|
383
560
|
/** Known values of {@link HiveThriftTransportProtocol} that the service accepts. */
|
|
384
561
|
export var KnownHiveThriftTransportProtocol;
|
|
385
562
|
(function (KnownHiveThriftTransportProtocol) {
|
|
563
|
+
/** Binary */
|
|
386
564
|
KnownHiveThriftTransportProtocol["Binary"] = "Binary";
|
|
565
|
+
/** Sasl */
|
|
387
566
|
KnownHiveThriftTransportProtocol["Sasl"] = "SASL";
|
|
567
|
+
/** Http */
|
|
388
568
|
KnownHiveThriftTransportProtocol["Http"] = "HTTP ";
|
|
389
569
|
})(KnownHiveThriftTransportProtocol || (KnownHiveThriftTransportProtocol = {}));
|
|
390
570
|
/** Known values of {@link HiveAuthenticationType} that the service accepts. */
|
|
391
571
|
export var KnownHiveAuthenticationType;
|
|
392
572
|
(function (KnownHiveAuthenticationType) {
|
|
573
|
+
/** Anonymous */
|
|
393
574
|
KnownHiveAuthenticationType["Anonymous"] = "Anonymous";
|
|
575
|
+
/** Username */
|
|
394
576
|
KnownHiveAuthenticationType["Username"] = "Username";
|
|
577
|
+
/** UsernameAndPassword */
|
|
395
578
|
KnownHiveAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
579
|
+
/** WindowsAzureHDInsightService */
|
|
396
580
|
KnownHiveAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
397
581
|
})(KnownHiveAuthenticationType || (KnownHiveAuthenticationType = {}));
|
|
398
582
|
/** Known values of {@link ImpalaAuthenticationType} that the service accepts. */
|
|
399
583
|
export var KnownImpalaAuthenticationType;
|
|
400
584
|
(function (KnownImpalaAuthenticationType) {
|
|
585
|
+
/** Anonymous */
|
|
401
586
|
KnownImpalaAuthenticationType["Anonymous"] = "Anonymous";
|
|
587
|
+
/** SaslUsername */
|
|
402
588
|
KnownImpalaAuthenticationType["SaslUsername"] = "SASLUsername";
|
|
589
|
+
/** UsernameAndPassword */
|
|
403
590
|
KnownImpalaAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
404
591
|
})(KnownImpalaAuthenticationType || (KnownImpalaAuthenticationType = {}));
|
|
405
592
|
/** Known values of {@link PhoenixAuthenticationType} that the service accepts. */
|
|
406
593
|
export var KnownPhoenixAuthenticationType;
|
|
407
594
|
(function (KnownPhoenixAuthenticationType) {
|
|
595
|
+
/** Anonymous */
|
|
408
596
|
KnownPhoenixAuthenticationType["Anonymous"] = "Anonymous";
|
|
597
|
+
/** UsernameAndPassword */
|
|
409
598
|
KnownPhoenixAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
599
|
+
/** WindowsAzureHDInsightService */
|
|
410
600
|
KnownPhoenixAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
411
601
|
})(KnownPhoenixAuthenticationType || (KnownPhoenixAuthenticationType = {}));
|
|
412
602
|
/** Known values of {@link PrestoAuthenticationType} that the service accepts. */
|
|
413
603
|
export var KnownPrestoAuthenticationType;
|
|
414
604
|
(function (KnownPrestoAuthenticationType) {
|
|
605
|
+
/** Anonymous */
|
|
415
606
|
KnownPrestoAuthenticationType["Anonymous"] = "Anonymous";
|
|
607
|
+
/** Ldap */
|
|
416
608
|
KnownPrestoAuthenticationType["Ldap"] = "LDAP";
|
|
417
609
|
})(KnownPrestoAuthenticationType || (KnownPrestoAuthenticationType = {}));
|
|
418
610
|
/** Known values of {@link ServiceNowAuthenticationType} that the service accepts. */
|
|
419
611
|
export var KnownServiceNowAuthenticationType;
|
|
420
612
|
(function (KnownServiceNowAuthenticationType) {
|
|
613
|
+
/** Basic */
|
|
421
614
|
KnownServiceNowAuthenticationType["Basic"] = "Basic";
|
|
615
|
+
/** OAuth2 */
|
|
422
616
|
KnownServiceNowAuthenticationType["OAuth2"] = "OAuth2";
|
|
423
617
|
})(KnownServiceNowAuthenticationType || (KnownServiceNowAuthenticationType = {}));
|
|
424
618
|
/** Known values of {@link SparkServerType} that the service accepts. */
|
|
425
619
|
export var KnownSparkServerType;
|
|
426
620
|
(function (KnownSparkServerType) {
|
|
621
|
+
/** SharkServer */
|
|
427
622
|
KnownSparkServerType["SharkServer"] = "SharkServer";
|
|
623
|
+
/** SharkServer2 */
|
|
428
624
|
KnownSparkServerType["SharkServer2"] = "SharkServer2";
|
|
625
|
+
/** SparkThriftServer */
|
|
429
626
|
KnownSparkServerType["SparkThriftServer"] = "SparkThriftServer";
|
|
430
627
|
})(KnownSparkServerType || (KnownSparkServerType = {}));
|
|
431
628
|
/** Known values of {@link SparkThriftTransportProtocol} that the service accepts. */
|
|
432
629
|
export var KnownSparkThriftTransportProtocol;
|
|
433
630
|
(function (KnownSparkThriftTransportProtocol) {
|
|
631
|
+
/** Binary */
|
|
434
632
|
KnownSparkThriftTransportProtocol["Binary"] = "Binary";
|
|
633
|
+
/** Sasl */
|
|
435
634
|
KnownSparkThriftTransportProtocol["Sasl"] = "SASL";
|
|
635
|
+
/** Http */
|
|
436
636
|
KnownSparkThriftTransportProtocol["Http"] = "HTTP ";
|
|
437
637
|
})(KnownSparkThriftTransportProtocol || (KnownSparkThriftTransportProtocol = {}));
|
|
438
638
|
/** Known values of {@link SparkAuthenticationType} that the service accepts. */
|
|
439
639
|
export var KnownSparkAuthenticationType;
|
|
440
640
|
(function (KnownSparkAuthenticationType) {
|
|
641
|
+
/** Anonymous */
|
|
441
642
|
KnownSparkAuthenticationType["Anonymous"] = "Anonymous";
|
|
643
|
+
/** Username */
|
|
442
644
|
KnownSparkAuthenticationType["Username"] = "Username";
|
|
645
|
+
/** UsernameAndPassword */
|
|
443
646
|
KnownSparkAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
647
|
+
/** WindowsAzureHDInsightService */
|
|
444
648
|
KnownSparkAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
445
649
|
})(KnownSparkAuthenticationType || (KnownSparkAuthenticationType = {}));
|
|
446
650
|
/** Known values of {@link GoogleAdWordsAuthenticationType} that the service accepts. */
|
|
447
651
|
export var KnownGoogleAdWordsAuthenticationType;
|
|
448
652
|
(function (KnownGoogleAdWordsAuthenticationType) {
|
|
653
|
+
/** ServiceAuthentication */
|
|
449
654
|
KnownGoogleAdWordsAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
|
|
655
|
+
/** UserAuthentication */
|
|
450
656
|
KnownGoogleAdWordsAuthenticationType["UserAuthentication"] = "UserAuthentication";
|
|
451
657
|
})(KnownGoogleAdWordsAuthenticationType || (KnownGoogleAdWordsAuthenticationType = {}));
|
|
452
658
|
/** Known values of {@link SalesforceSourceReadBehavior} that the service accepts. */
|
|
453
659
|
export var KnownSalesforceSourceReadBehavior;
|
|
454
660
|
(function (KnownSalesforceSourceReadBehavior) {
|
|
661
|
+
/** Query */
|
|
455
662
|
KnownSalesforceSourceReadBehavior["Query"] = "Query";
|
|
663
|
+
/** QueryAll */
|
|
456
664
|
KnownSalesforceSourceReadBehavior["QueryAll"] = "QueryAll";
|
|
457
665
|
})(KnownSalesforceSourceReadBehavior || (KnownSalesforceSourceReadBehavior = {}));
|
|
458
666
|
/** Known values of {@link StoredProcedureParameterType} that the service accepts. */
|
|
459
667
|
export var KnownStoredProcedureParameterType;
|
|
460
668
|
(function (KnownStoredProcedureParameterType) {
|
|
669
|
+
/** String */
|
|
461
670
|
KnownStoredProcedureParameterType["String"] = "String";
|
|
671
|
+
/** Int */
|
|
462
672
|
KnownStoredProcedureParameterType["Int"] = "Int";
|
|
673
|
+
/** Int64 */
|
|
463
674
|
KnownStoredProcedureParameterType["Int64"] = "Int64";
|
|
675
|
+
/** Decimal */
|
|
464
676
|
KnownStoredProcedureParameterType["Decimal"] = "Decimal";
|
|
677
|
+
/** Guid */
|
|
465
678
|
KnownStoredProcedureParameterType["Guid"] = "Guid";
|
|
679
|
+
/** Boolean */
|
|
466
680
|
KnownStoredProcedureParameterType["Boolean"] = "Boolean";
|
|
681
|
+
/** Date */
|
|
467
682
|
KnownStoredProcedureParameterType["Date"] = "Date";
|
|
468
683
|
})(KnownStoredProcedureParameterType || (KnownStoredProcedureParameterType = {}));
|
|
469
684
|
/** Known values of {@link CassandraSourceReadConsistencyLevels} that the service accepts. */
|
|
470
685
|
export var KnownCassandraSourceReadConsistencyLevels;
|
|
471
686
|
(function (KnownCassandraSourceReadConsistencyLevels) {
|
|
687
|
+
/** ALL */
|
|
472
688
|
KnownCassandraSourceReadConsistencyLevels["ALL"] = "ALL";
|
|
689
|
+
/** EachQuorum */
|
|
473
690
|
KnownCassandraSourceReadConsistencyLevels["EachQuorum"] = "EACH_QUORUM";
|
|
691
|
+
/** Quorum */
|
|
474
692
|
KnownCassandraSourceReadConsistencyLevels["Quorum"] = "QUORUM";
|
|
693
|
+
/** LocalQuorum */
|
|
475
694
|
KnownCassandraSourceReadConsistencyLevels["LocalQuorum"] = "LOCAL_QUORUM";
|
|
695
|
+
/** ONE */
|
|
476
696
|
KnownCassandraSourceReadConsistencyLevels["ONE"] = "ONE";
|
|
697
|
+
/** TWO */
|
|
477
698
|
KnownCassandraSourceReadConsistencyLevels["TWO"] = "TWO";
|
|
699
|
+
/** Three */
|
|
478
700
|
KnownCassandraSourceReadConsistencyLevels["Three"] = "THREE";
|
|
701
|
+
/** LocalONE */
|
|
479
702
|
KnownCassandraSourceReadConsistencyLevels["LocalONE"] = "LOCAL_ONE";
|
|
703
|
+
/** Serial */
|
|
480
704
|
KnownCassandraSourceReadConsistencyLevels["Serial"] = "SERIAL";
|
|
705
|
+
/** LocalSerial */
|
|
481
706
|
KnownCassandraSourceReadConsistencyLevels["LocalSerial"] = "LOCAL_SERIAL";
|
|
482
707
|
})(KnownCassandraSourceReadConsistencyLevels || (KnownCassandraSourceReadConsistencyLevels = {}));
|
|
483
708
|
/** Known values of {@link SapCloudForCustomerSinkWriteBehavior} that the service accepts. */
|
|
484
709
|
export var KnownSapCloudForCustomerSinkWriteBehavior;
|
|
485
710
|
(function (KnownSapCloudForCustomerSinkWriteBehavior) {
|
|
711
|
+
/** Insert */
|
|
486
712
|
KnownSapCloudForCustomerSinkWriteBehavior["Insert"] = "Insert";
|
|
713
|
+
/** Update */
|
|
487
714
|
KnownSapCloudForCustomerSinkWriteBehavior["Update"] = "Update";
|
|
488
715
|
})(KnownSapCloudForCustomerSinkWriteBehavior || (KnownSapCloudForCustomerSinkWriteBehavior = {}));
|
|
489
716
|
/** Known values of {@link PolybaseSettingsRejectType} that the service accepts. */
|
|
490
717
|
export var KnownPolybaseSettingsRejectType;
|
|
491
718
|
(function (KnownPolybaseSettingsRejectType) {
|
|
719
|
+
/** Value */
|
|
492
720
|
KnownPolybaseSettingsRejectType["Value"] = "value";
|
|
721
|
+
/** Percentage */
|
|
493
722
|
KnownPolybaseSettingsRejectType["Percentage"] = "percentage";
|
|
494
723
|
})(KnownPolybaseSettingsRejectType || (KnownPolybaseSettingsRejectType = {}));
|
|
495
724
|
/** Known values of {@link AzureSearchIndexWriteBehaviorType} that the service accepts. */
|
|
496
725
|
export var KnownAzureSearchIndexWriteBehaviorType;
|
|
497
726
|
(function (KnownAzureSearchIndexWriteBehaviorType) {
|
|
727
|
+
/** Merge */
|
|
498
728
|
KnownAzureSearchIndexWriteBehaviorType["Merge"] = "Merge";
|
|
729
|
+
/** Upload */
|
|
499
730
|
KnownAzureSearchIndexWriteBehaviorType["Upload"] = "Upload";
|
|
500
731
|
})(KnownAzureSearchIndexWriteBehaviorType || (KnownAzureSearchIndexWriteBehaviorType = {}));
|
|
501
732
|
/** Known values of {@link DynamicsSinkWriteBehavior} that the service accepts. */
|
|
502
733
|
export var KnownDynamicsSinkWriteBehavior;
|
|
503
734
|
(function (KnownDynamicsSinkWriteBehavior) {
|
|
735
|
+
/** Upsert */
|
|
504
736
|
KnownDynamicsSinkWriteBehavior["Upsert"] = "Upsert";
|
|
505
737
|
})(KnownDynamicsSinkWriteBehavior || (KnownDynamicsSinkWriteBehavior = {}));
|
|
506
738
|
/** Known values of {@link SalesforceSinkWriteBehavior} that the service accepts. */
|
|
507
739
|
export var KnownSalesforceSinkWriteBehavior;
|
|
508
740
|
(function (KnownSalesforceSinkWriteBehavior) {
|
|
741
|
+
/** Insert */
|
|
509
742
|
KnownSalesforceSinkWriteBehavior["Insert"] = "Insert";
|
|
743
|
+
/** Upsert */
|
|
510
744
|
KnownSalesforceSinkWriteBehavior["Upsert"] = "Upsert";
|
|
511
745
|
})(KnownSalesforceSinkWriteBehavior || (KnownSalesforceSinkWriteBehavior = {}));
|
|
512
746
|
/** Known values of {@link HDInsightActivityDebugInfoOption} that the service accepts. */
|
|
513
747
|
export var KnownHDInsightActivityDebugInfoOption;
|
|
514
748
|
(function (KnownHDInsightActivityDebugInfoOption) {
|
|
749
|
+
/** None */
|
|
515
750
|
KnownHDInsightActivityDebugInfoOption["None"] = "None";
|
|
751
|
+
/** Always */
|
|
516
752
|
KnownHDInsightActivityDebugInfoOption["Always"] = "Always";
|
|
753
|
+
/** Failure */
|
|
517
754
|
KnownHDInsightActivityDebugInfoOption["Failure"] = "Failure";
|
|
518
755
|
})(KnownHDInsightActivityDebugInfoOption || (KnownHDInsightActivityDebugInfoOption = {}));
|
|
519
756
|
/** Known values of {@link SsisPackageLocationType} that the service accepts. */
|
|
520
757
|
export var KnownSsisPackageLocationType;
|
|
521
758
|
(function (KnownSsisPackageLocationType) {
|
|
759
|
+
/** Ssisdb */
|
|
522
760
|
KnownSsisPackageLocationType["Ssisdb"] = "SSISDB";
|
|
761
|
+
/** File */
|
|
523
762
|
KnownSsisPackageLocationType["File"] = "File";
|
|
763
|
+
/** InlinePackage */
|
|
524
764
|
KnownSsisPackageLocationType["InlinePackage"] = "InlinePackage";
|
|
765
|
+
/** PackageStore */
|
|
525
766
|
KnownSsisPackageLocationType["PackageStore"] = "PackageStore";
|
|
526
767
|
})(KnownSsisPackageLocationType || (KnownSsisPackageLocationType = {}));
|
|
527
768
|
/** Known values of {@link SsisLogLocationType} that the service accepts. */
|
|
528
769
|
export var KnownSsisLogLocationType;
|
|
529
770
|
(function (KnownSsisLogLocationType) {
|
|
771
|
+
/** File */
|
|
530
772
|
KnownSsisLogLocationType["File"] = "File";
|
|
531
773
|
})(KnownSsisLogLocationType || (KnownSsisLogLocationType = {}));
|
|
532
774
|
/** Known values of {@link WebActivityMethod} that the service accepts. */
|
|
533
775
|
export var KnownWebActivityMethod;
|
|
534
776
|
(function (KnownWebActivityMethod) {
|
|
777
|
+
/** GET */
|
|
535
778
|
KnownWebActivityMethod["GET"] = "GET";
|
|
779
|
+
/** Post */
|
|
536
780
|
KnownWebActivityMethod["Post"] = "POST";
|
|
781
|
+
/** PUT */
|
|
537
782
|
KnownWebActivityMethod["PUT"] = "PUT";
|
|
783
|
+
/** Delete */
|
|
538
784
|
KnownWebActivityMethod["Delete"] = "DELETE";
|
|
539
785
|
})(KnownWebActivityMethod || (KnownWebActivityMethod = {}));
|
|
540
786
|
/** Known values of {@link AzureFunctionActivityMethod} that the service accepts. */
|
|
541
787
|
export var KnownAzureFunctionActivityMethod;
|
|
542
788
|
(function (KnownAzureFunctionActivityMethod) {
|
|
789
|
+
/** GET */
|
|
543
790
|
KnownAzureFunctionActivityMethod["GET"] = "GET";
|
|
791
|
+
/** Post */
|
|
544
792
|
KnownAzureFunctionActivityMethod["Post"] = "POST";
|
|
793
|
+
/** PUT */
|
|
545
794
|
KnownAzureFunctionActivityMethod["PUT"] = "PUT";
|
|
795
|
+
/** Delete */
|
|
546
796
|
KnownAzureFunctionActivityMethod["Delete"] = "DELETE";
|
|
797
|
+
/** Options */
|
|
547
798
|
KnownAzureFunctionActivityMethod["Options"] = "OPTIONS";
|
|
799
|
+
/** Head */
|
|
548
800
|
KnownAzureFunctionActivityMethod["Head"] = "HEAD";
|
|
801
|
+
/** Trace */
|
|
549
802
|
KnownAzureFunctionActivityMethod["Trace"] = "TRACE";
|
|
550
803
|
})(KnownAzureFunctionActivityMethod || (KnownAzureFunctionActivityMethod = {}));
|
|
551
804
|
/** Known values of {@link WebHookActivityMethod} that the service accepts. */
|
|
552
805
|
export var KnownWebHookActivityMethod;
|
|
553
806
|
(function (KnownWebHookActivityMethod) {
|
|
807
|
+
/** Post */
|
|
554
808
|
KnownWebHookActivityMethod["Post"] = "POST";
|
|
555
809
|
})(KnownWebHookActivityMethod || (KnownWebHookActivityMethod = {}));
|
|
556
810
|
/** Known values of {@link ScriptType} that the service accepts. */
|
|
557
811
|
export var KnownScriptType;
|
|
558
812
|
(function (KnownScriptType) {
|
|
813
|
+
/** Query */
|
|
559
814
|
KnownScriptType["Query"] = "Query";
|
|
815
|
+
/** NonQuery */
|
|
560
816
|
KnownScriptType["NonQuery"] = "NonQuery";
|
|
561
817
|
})(KnownScriptType || (KnownScriptType = {}));
|
|
562
818
|
/** Known values of {@link ScriptActivityParameterType} that the service accepts. */
|
|
563
819
|
export var KnownScriptActivityParameterType;
|
|
564
820
|
(function (KnownScriptActivityParameterType) {
|
|
821
|
+
/** Boolean */
|
|
565
822
|
KnownScriptActivityParameterType["Boolean"] = "Boolean";
|
|
823
|
+
/** DateTime */
|
|
566
824
|
KnownScriptActivityParameterType["DateTime"] = "DateTime";
|
|
825
|
+
/** DateTimeOffset */
|
|
567
826
|
KnownScriptActivityParameterType["DateTimeOffset"] = "DateTimeOffset";
|
|
827
|
+
/** Decimal */
|
|
568
828
|
KnownScriptActivityParameterType["Decimal"] = "Decimal";
|
|
829
|
+
/** Double */
|
|
569
830
|
KnownScriptActivityParameterType["Double"] = "Double";
|
|
831
|
+
/** Guid */
|
|
570
832
|
KnownScriptActivityParameterType["Guid"] = "Guid";
|
|
833
|
+
/** Int16 */
|
|
571
834
|
KnownScriptActivityParameterType["Int16"] = "Int16";
|
|
835
|
+
/** Int32 */
|
|
572
836
|
KnownScriptActivityParameterType["Int32"] = "Int32";
|
|
837
|
+
/** Int64 */
|
|
573
838
|
KnownScriptActivityParameterType["Int64"] = "Int64";
|
|
839
|
+
/** Single */
|
|
574
840
|
KnownScriptActivityParameterType["Single"] = "Single";
|
|
841
|
+
/** String */
|
|
575
842
|
KnownScriptActivityParameterType["String"] = "String";
|
|
843
|
+
/** Timespan */
|
|
576
844
|
KnownScriptActivityParameterType["Timespan"] = "Timespan";
|
|
577
845
|
})(KnownScriptActivityParameterType || (KnownScriptActivityParameterType = {}));
|
|
578
846
|
/** Known values of {@link ScriptActivityParameterDirection} that the service accepts. */
|
|
579
847
|
export var KnownScriptActivityParameterDirection;
|
|
580
848
|
(function (KnownScriptActivityParameterDirection) {
|
|
849
|
+
/** Input */
|
|
581
850
|
KnownScriptActivityParameterDirection["Input"] = "Input";
|
|
851
|
+
/** Output */
|
|
582
852
|
KnownScriptActivityParameterDirection["Output"] = "Output";
|
|
853
|
+
/** InputOutput */
|
|
583
854
|
KnownScriptActivityParameterDirection["InputOutput"] = "InputOutput";
|
|
584
855
|
})(KnownScriptActivityParameterDirection || (KnownScriptActivityParameterDirection = {}));
|
|
585
856
|
/** Known values of {@link ScriptActivityLogDestination} that the service accepts. */
|
|
586
857
|
export var KnownScriptActivityLogDestination;
|
|
587
858
|
(function (KnownScriptActivityLogDestination) {
|
|
859
|
+
/** ActivityOutput */
|
|
588
860
|
KnownScriptActivityLogDestination["ActivityOutput"] = "ActivityOutput";
|
|
861
|
+
/** ExternalStore */
|
|
589
862
|
KnownScriptActivityLogDestination["ExternalStore"] = "ExternalStore";
|
|
590
863
|
})(KnownScriptActivityLogDestination || (KnownScriptActivityLogDestination = {}));
|
|
591
864
|
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
592
865
|
export var KnownRecurrenceFrequency;
|
|
593
866
|
(function (KnownRecurrenceFrequency) {
|
|
867
|
+
/** NotSpecified */
|
|
594
868
|
KnownRecurrenceFrequency["NotSpecified"] = "NotSpecified";
|
|
869
|
+
/** Minute */
|
|
595
870
|
KnownRecurrenceFrequency["Minute"] = "Minute";
|
|
871
|
+
/** Hour */
|
|
596
872
|
KnownRecurrenceFrequency["Hour"] = "Hour";
|
|
873
|
+
/** Day */
|
|
597
874
|
KnownRecurrenceFrequency["Day"] = "Day";
|
|
875
|
+
/** Week */
|
|
598
876
|
KnownRecurrenceFrequency["Week"] = "Week";
|
|
877
|
+
/** Month */
|
|
599
878
|
KnownRecurrenceFrequency["Month"] = "Month";
|
|
879
|
+
/** Year */
|
|
600
880
|
KnownRecurrenceFrequency["Year"] = "Year";
|
|
601
881
|
})(KnownRecurrenceFrequency || (KnownRecurrenceFrequency = {}));
|
|
602
882
|
/** Known values of {@link BlobEventTypes} that the service accepts. */
|
|
603
883
|
export var KnownBlobEventTypes;
|
|
604
884
|
(function (KnownBlobEventTypes) {
|
|
885
|
+
/** MicrosoftStorageBlobCreated */
|
|
605
886
|
KnownBlobEventTypes["MicrosoftStorageBlobCreated"] = "Microsoft.Storage.BlobCreated";
|
|
887
|
+
/** MicrosoftStorageBlobDeleted */
|
|
606
888
|
KnownBlobEventTypes["MicrosoftStorageBlobDeleted"] = "Microsoft.Storage.BlobDeleted";
|
|
607
889
|
})(KnownBlobEventTypes || (KnownBlobEventTypes = {}));
|
|
608
890
|
/** Known values of {@link TumblingWindowFrequency} that the service accepts. */
|
|
609
891
|
export var KnownTumblingWindowFrequency;
|
|
610
892
|
(function (KnownTumblingWindowFrequency) {
|
|
893
|
+
/** Minute */
|
|
611
894
|
KnownTumblingWindowFrequency["Minute"] = "Minute";
|
|
895
|
+
/** Hour */
|
|
612
896
|
KnownTumblingWindowFrequency["Hour"] = "Hour";
|
|
897
|
+
/** Month */
|
|
613
898
|
KnownTumblingWindowFrequency["Month"] = "Month";
|
|
614
899
|
})(KnownTumblingWindowFrequency || (KnownTumblingWindowFrequency = {}));
|
|
615
900
|
/** Known values of {@link TriggerReferenceType} that the service accepts. */
|
|
616
901
|
export var KnownTriggerReferenceType;
|
|
617
902
|
(function (KnownTriggerReferenceType) {
|
|
903
|
+
/** TriggerReference */
|
|
618
904
|
KnownTriggerReferenceType["TriggerReference"] = "TriggerReference";
|
|
619
905
|
})(KnownTriggerReferenceType || (KnownTriggerReferenceType = {}));
|
|
620
906
|
/** Known values of {@link JsonFormatFilePattern} that the service accepts. */
|
|
621
907
|
export var KnownJsonFormatFilePattern;
|
|
622
908
|
(function (KnownJsonFormatFilePattern) {
|
|
909
|
+
/** SetOfObjects */
|
|
623
910
|
KnownJsonFormatFilePattern["SetOfObjects"] = "setOfObjects";
|
|
911
|
+
/** ArrayOfObjects */
|
|
624
912
|
KnownJsonFormatFilePattern["ArrayOfObjects"] = "arrayOfObjects";
|
|
625
913
|
})(KnownJsonFormatFilePattern || (KnownJsonFormatFilePattern = {}));
|
|
626
914
|
/** Known values of {@link DatasetCompressionLevel} that the service accepts. */
|
|
627
915
|
export var KnownDatasetCompressionLevel;
|
|
628
916
|
(function (KnownDatasetCompressionLevel) {
|
|
917
|
+
/** Optimal */
|
|
629
918
|
KnownDatasetCompressionLevel["Optimal"] = "Optimal";
|
|
919
|
+
/** Fastest */
|
|
630
920
|
KnownDatasetCompressionLevel["Fastest"] = "Fastest";
|
|
631
921
|
})(KnownDatasetCompressionLevel || (KnownDatasetCompressionLevel = {}));
|
|
632
922
|
/** Known values of {@link AvroCompressionCodec} that the service accepts. */
|
|
633
923
|
export var KnownAvroCompressionCodec;
|
|
634
924
|
(function (KnownAvroCompressionCodec) {
|
|
925
|
+
/** None */
|
|
635
926
|
KnownAvroCompressionCodec["None"] = "none";
|
|
927
|
+
/** Deflate */
|
|
636
928
|
KnownAvroCompressionCodec["Deflate"] = "deflate";
|
|
929
|
+
/** Snappy */
|
|
637
930
|
KnownAvroCompressionCodec["Snappy"] = "snappy";
|
|
931
|
+
/** Xz */
|
|
638
932
|
KnownAvroCompressionCodec["Xz"] = "xz";
|
|
933
|
+
/** Bzip2 */
|
|
639
934
|
KnownAvroCompressionCodec["Bzip2"] = "bzip2";
|
|
640
935
|
})(KnownAvroCompressionCodec || (KnownAvroCompressionCodec = {}));
|
|
641
936
|
/** Known values of {@link CompressionCodec} that the service accepts. */
|
|
642
937
|
export var KnownCompressionCodec;
|
|
643
938
|
(function (KnownCompressionCodec) {
|
|
939
|
+
/** None */
|
|
644
940
|
KnownCompressionCodec["None"] = "none";
|
|
941
|
+
/** Lzo */
|
|
645
942
|
KnownCompressionCodec["Lzo"] = "lzo";
|
|
943
|
+
/** Bzip2 */
|
|
646
944
|
KnownCompressionCodec["Bzip2"] = "bzip2";
|
|
945
|
+
/** Gzip */
|
|
647
946
|
KnownCompressionCodec["Gzip"] = "gzip";
|
|
947
|
+
/** Deflate */
|
|
648
948
|
KnownCompressionCodec["Deflate"] = "deflate";
|
|
949
|
+
/** ZipDeflate */
|
|
649
950
|
KnownCompressionCodec["ZipDeflate"] = "zipDeflate";
|
|
951
|
+
/** Snappy */
|
|
650
952
|
KnownCompressionCodec["Snappy"] = "snappy";
|
|
953
|
+
/** Lz4 */
|
|
651
954
|
KnownCompressionCodec["Lz4"] = "lz4";
|
|
955
|
+
/** Tar */
|
|
652
956
|
KnownCompressionCodec["Tar"] = "tar";
|
|
957
|
+
/** TarGZip */
|
|
653
958
|
KnownCompressionCodec["TarGZip"] = "tarGZip";
|
|
654
959
|
})(KnownCompressionCodec || (KnownCompressionCodec = {}));
|
|
655
960
|
/** Known values of {@link OrcCompressionCodec} that the service accepts. */
|
|
656
961
|
export var KnownOrcCompressionCodec;
|
|
657
962
|
(function (KnownOrcCompressionCodec) {
|
|
963
|
+
/** None */
|
|
658
964
|
KnownOrcCompressionCodec["None"] = "none";
|
|
965
|
+
/** Zlib */
|
|
659
966
|
KnownOrcCompressionCodec["Zlib"] = "zlib";
|
|
967
|
+
/** Snappy */
|
|
660
968
|
KnownOrcCompressionCodec["Snappy"] = "snappy";
|
|
969
|
+
/** Lzo */
|
|
661
970
|
KnownOrcCompressionCodec["Lzo"] = "lzo";
|
|
662
971
|
})(KnownOrcCompressionCodec || (KnownOrcCompressionCodec = {}));
|
|
663
972
|
/** Known values of {@link DynamicsDeploymentType} that the service accepts. */
|
|
664
973
|
export var KnownDynamicsDeploymentType;
|
|
665
974
|
(function (KnownDynamicsDeploymentType) {
|
|
975
|
+
/** Online */
|
|
666
976
|
KnownDynamicsDeploymentType["Online"] = "Online";
|
|
977
|
+
/** OnPremisesWithIfd */
|
|
667
978
|
KnownDynamicsDeploymentType["OnPremisesWithIfd"] = "OnPremisesWithIfd";
|
|
668
979
|
})(KnownDynamicsDeploymentType || (KnownDynamicsDeploymentType = {}));
|
|
669
980
|
/** Known values of {@link DynamicsAuthenticationType} that the service accepts. */
|
|
670
981
|
export var KnownDynamicsAuthenticationType;
|
|
671
982
|
(function (KnownDynamicsAuthenticationType) {
|
|
983
|
+
/** Office365 */
|
|
672
984
|
KnownDynamicsAuthenticationType["Office365"] = "Office365";
|
|
985
|
+
/** Ifd */
|
|
673
986
|
KnownDynamicsAuthenticationType["Ifd"] = "Ifd";
|
|
987
|
+
/** AADServicePrincipal */
|
|
674
988
|
KnownDynamicsAuthenticationType["AADServicePrincipal"] = "AADServicePrincipal";
|
|
675
989
|
})(KnownDynamicsAuthenticationType || (KnownDynamicsAuthenticationType = {}));
|
|
676
990
|
/** Known values of {@link ServicePrincipalCredentialType} that the service accepts. */
|
|
677
991
|
export var KnownServicePrincipalCredentialType;
|
|
678
992
|
(function (KnownServicePrincipalCredentialType) {
|
|
993
|
+
/** ServicePrincipalKey */
|
|
679
994
|
KnownServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
995
|
+
/** ServicePrincipalCert */
|
|
680
996
|
KnownServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
681
997
|
})(KnownServicePrincipalCredentialType || (KnownServicePrincipalCredentialType = {}));
|
|
682
998
|
/** Known values of {@link HdiNodeTypes} that the service accepts. */
|
|
683
999
|
export var KnownHdiNodeTypes;
|
|
684
1000
|
(function (KnownHdiNodeTypes) {
|
|
1001
|
+
/** Headnode */
|
|
685
1002
|
KnownHdiNodeTypes["Headnode"] = "Headnode";
|
|
1003
|
+
/** Workernode */
|
|
686
1004
|
KnownHdiNodeTypes["Workernode"] = "Workernode";
|
|
1005
|
+
/** Zookeeper */
|
|
687
1006
|
KnownHdiNodeTypes["Zookeeper"] = "Zookeeper";
|
|
688
1007
|
})(KnownHdiNodeTypes || (KnownHdiNodeTypes = {}));
|
|
689
1008
|
/** Known values of {@link JsonWriteFilePattern} that the service accepts. */
|
|
690
1009
|
export var KnownJsonWriteFilePattern;
|
|
691
1010
|
(function (KnownJsonWriteFilePattern) {
|
|
1011
|
+
/** SetOfObjects */
|
|
692
1012
|
KnownJsonWriteFilePattern["SetOfObjects"] = "setOfObjects";
|
|
1013
|
+
/** ArrayOfObjects */
|
|
693
1014
|
KnownJsonWriteFilePattern["ArrayOfObjects"] = "arrayOfObjects";
|
|
694
1015
|
})(KnownJsonWriteFilePattern || (KnownJsonWriteFilePattern = {}));
|
|
695
1016
|
/** Known values of {@link AmazonRdsForOraclePartitionOption} that the service accepts. */
|
|
696
1017
|
export var KnownAmazonRdsForOraclePartitionOption;
|
|
697
1018
|
(function (KnownAmazonRdsForOraclePartitionOption) {
|
|
1019
|
+
/** None */
|
|
698
1020
|
KnownAmazonRdsForOraclePartitionOption["None"] = "None";
|
|
1021
|
+
/** PhysicalPartitionsOfTable */
|
|
699
1022
|
KnownAmazonRdsForOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
1023
|
+
/** DynamicRange */
|
|
700
1024
|
KnownAmazonRdsForOraclePartitionOption["DynamicRange"] = "DynamicRange";
|
|
701
1025
|
})(KnownAmazonRdsForOraclePartitionOption || (KnownAmazonRdsForOraclePartitionOption = {}));
|
|
702
1026
|
/** Known values of {@link CopyBehaviorType} that the service accepts. */
|
|
703
1027
|
export var KnownCopyBehaviorType;
|
|
704
1028
|
(function (KnownCopyBehaviorType) {
|
|
1029
|
+
/** PreserveHierarchy */
|
|
705
1030
|
KnownCopyBehaviorType["PreserveHierarchy"] = "PreserveHierarchy";
|
|
1031
|
+
/** FlattenHierarchy */
|
|
706
1032
|
KnownCopyBehaviorType["FlattenHierarchy"] = "FlattenHierarchy";
|
|
1033
|
+
/** MergeFiles */
|
|
707
1034
|
KnownCopyBehaviorType["MergeFiles"] = "MergeFiles";
|
|
708
1035
|
})(KnownCopyBehaviorType || (KnownCopyBehaviorType = {}));
|
|
709
1036
|
/** Known values of {@link SqlWriteBehaviorEnum} that the service accepts. */
|
|
710
1037
|
export var KnownSqlWriteBehaviorEnum;
|
|
711
1038
|
(function (KnownSqlWriteBehaviorEnum) {
|
|
1039
|
+
/** Insert */
|
|
712
1040
|
KnownSqlWriteBehaviorEnum["Insert"] = "Insert";
|
|
1041
|
+
/** Upsert */
|
|
713
1042
|
KnownSqlWriteBehaviorEnum["Upsert"] = "Upsert";
|
|
1043
|
+
/** StoredProcedure */
|
|
714
1044
|
KnownSqlWriteBehaviorEnum["StoredProcedure"] = "StoredProcedure";
|
|
715
1045
|
})(KnownSqlWriteBehaviorEnum || (KnownSqlWriteBehaviorEnum = {}));
|
|
716
1046
|
/** Known values of {@link SqlDWWriteBehaviorEnum} that the service accepts. */
|
|
717
1047
|
export var KnownSqlDWWriteBehaviorEnum;
|
|
718
1048
|
(function (KnownSqlDWWriteBehaviorEnum) {
|
|
1049
|
+
/** Insert */
|
|
719
1050
|
KnownSqlDWWriteBehaviorEnum["Insert"] = "Insert";
|
|
1051
|
+
/** Upsert */
|
|
720
1052
|
KnownSqlDWWriteBehaviorEnum["Upsert"] = "Upsert";
|
|
721
1053
|
})(KnownSqlDWWriteBehaviorEnum || (KnownSqlDWWriteBehaviorEnum = {}));
|
|
722
1054
|
/** Known values of {@link SqlPartitionOption} that the service accepts. */
|
|
723
1055
|
export var KnownSqlPartitionOption;
|
|
724
1056
|
(function (KnownSqlPartitionOption) {
|
|
1057
|
+
/** None */
|
|
725
1058
|
KnownSqlPartitionOption["None"] = "None";
|
|
1059
|
+
/** PhysicalPartitionsOfTable */
|
|
726
1060
|
KnownSqlPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
1061
|
+
/** DynamicRange */
|
|
727
1062
|
KnownSqlPartitionOption["DynamicRange"] = "DynamicRange";
|
|
728
1063
|
})(KnownSqlPartitionOption || (KnownSqlPartitionOption = {}));
|
|
729
1064
|
/** Known values of {@link SapHanaPartitionOption} that the service accepts. */
|
|
730
1065
|
export var KnownSapHanaPartitionOption;
|
|
731
1066
|
(function (KnownSapHanaPartitionOption) {
|
|
1067
|
+
/** None */
|
|
732
1068
|
KnownSapHanaPartitionOption["None"] = "None";
|
|
1069
|
+
/** PhysicalPartitionsOfTable */
|
|
733
1070
|
KnownSapHanaPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
1071
|
+
/** SapHanaDynamicRange */
|
|
734
1072
|
KnownSapHanaPartitionOption["SapHanaDynamicRange"] = "SapHanaDynamicRange";
|
|
735
1073
|
})(KnownSapHanaPartitionOption || (KnownSapHanaPartitionOption = {}));
|
|
736
1074
|
/** Known values of {@link SapTablePartitionOption} that the service accepts. */
|
|
737
1075
|
export var KnownSapTablePartitionOption;
|
|
738
1076
|
(function (KnownSapTablePartitionOption) {
|
|
1077
|
+
/** None */
|
|
739
1078
|
KnownSapTablePartitionOption["None"] = "None";
|
|
1079
|
+
/** PartitionOnInt */
|
|
740
1080
|
KnownSapTablePartitionOption["PartitionOnInt"] = "PartitionOnInt";
|
|
1081
|
+
/** PartitionOnCalendarYear */
|
|
741
1082
|
KnownSapTablePartitionOption["PartitionOnCalendarYear"] = "PartitionOnCalendarYear";
|
|
1083
|
+
/** PartitionOnCalendarMonth */
|
|
742
1084
|
KnownSapTablePartitionOption["PartitionOnCalendarMonth"] = "PartitionOnCalendarMonth";
|
|
1085
|
+
/** PartitionOnCalendarDate */
|
|
743
1086
|
KnownSapTablePartitionOption["PartitionOnCalendarDate"] = "PartitionOnCalendarDate";
|
|
1087
|
+
/** PartitionOnTime */
|
|
744
1088
|
KnownSapTablePartitionOption["PartitionOnTime"] = "PartitionOnTime";
|
|
745
1089
|
})(KnownSapTablePartitionOption || (KnownSapTablePartitionOption = {}));
|
|
746
1090
|
/** Known values of {@link OraclePartitionOption} that the service accepts. */
|
|
747
1091
|
export var KnownOraclePartitionOption;
|
|
748
1092
|
(function (KnownOraclePartitionOption) {
|
|
1093
|
+
/** None */
|
|
749
1094
|
KnownOraclePartitionOption["None"] = "None";
|
|
1095
|
+
/** PhysicalPartitionsOfTable */
|
|
750
1096
|
KnownOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
1097
|
+
/** DynamicRange */
|
|
751
1098
|
KnownOraclePartitionOption["DynamicRange"] = "DynamicRange";
|
|
752
1099
|
})(KnownOraclePartitionOption || (KnownOraclePartitionOption = {}));
|
|
753
1100
|
/** Known values of {@link TeradataPartitionOption} that the service accepts. */
|
|
754
1101
|
export var KnownTeradataPartitionOption;
|
|
755
1102
|
(function (KnownTeradataPartitionOption) {
|
|
1103
|
+
/** None */
|
|
756
1104
|
KnownTeradataPartitionOption["None"] = "None";
|
|
1105
|
+
/** Hash */
|
|
757
1106
|
KnownTeradataPartitionOption["Hash"] = "Hash";
|
|
1107
|
+
/** DynamicRange */
|
|
758
1108
|
KnownTeradataPartitionOption["DynamicRange"] = "DynamicRange";
|
|
759
1109
|
})(KnownTeradataPartitionOption || (KnownTeradataPartitionOption = {}));
|
|
760
1110
|
/** Known values of {@link NetezzaPartitionOption} that the service accepts. */
|
|
761
1111
|
export var KnownNetezzaPartitionOption;
|
|
762
1112
|
(function (KnownNetezzaPartitionOption) {
|
|
1113
|
+
/** None */
|
|
763
1114
|
KnownNetezzaPartitionOption["None"] = "None";
|
|
1115
|
+
/** DataSlice */
|
|
764
1116
|
KnownNetezzaPartitionOption["DataSlice"] = "DataSlice";
|
|
1117
|
+
/** DynamicRange */
|
|
765
1118
|
KnownNetezzaPartitionOption["DynamicRange"] = "DynamicRange";
|
|
766
1119
|
})(KnownNetezzaPartitionOption || (KnownNetezzaPartitionOption = {}));
|
|
767
1120
|
//# sourceMappingURL=index.js.map
|