@azure/synapse-artifacts 1.0.0-beta.11 → 1.0.0-beta.12
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/dist/index.js +808 -469
- package/dist/index.js.map +1 -1
- package/dist-esm/src/artifactsClient.js +20 -15
- package/dist-esm/src/artifactsClient.js.map +1 -1
- package/dist-esm/src/index.js +1 -0
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/models/index.js +10 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.js +406 -308
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.js +1 -1
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/dataFlowDebugSession.js +19 -8
- package/dist-esm/src/operations/dataFlowDebugSession.js.map +1 -1
- package/dist-esm/src/operations/dataFlowOperations.js +19 -8
- package/dist-esm/src/operations/dataFlowOperations.js.map +1 -1
- package/dist-esm/src/operations/datasetOperations.js +19 -8
- package/dist-esm/src/operations/datasetOperations.js.map +1 -1
- package/dist-esm/src/operations/kqlScripts.js +19 -8
- package/dist-esm/src/operations/kqlScripts.js.map +1 -1
- package/dist-esm/src/operations/library.js +19 -8
- package/dist-esm/src/operations/library.js.map +1 -1
- package/dist-esm/src/operations/linkConnectionOperations.js +102 -40
- package/dist-esm/src/operations/linkConnectionOperations.js.map +1 -1
- package/dist-esm/src/operations/linkedServiceOperations.js +19 -8
- package/dist-esm/src/operations/linkedServiceOperations.js.map +1 -1
- package/dist-esm/src/operations/notebookOperations.js +37 -16
- package/dist-esm/src/operations/notebookOperations.js.map +1 -1
- package/dist-esm/src/operations/pipelineOperations.js +19 -8
- package/dist-esm/src/operations/pipelineOperations.js.map +1 -1
- package/dist-esm/src/operations/sparkConfigurationOperations.js +19 -8
- package/dist-esm/src/operations/sparkConfigurationOperations.js.map +1 -1
- package/dist-esm/src/operations/sparkJobDefinitionOperations.js +19 -8
- package/dist-esm/src/operations/sparkJobDefinitionOperations.js.map +1 -1
- package/dist-esm/src/operations/sqlScriptOperations.js +19 -8
- package/dist-esm/src/operations/sqlScriptOperations.js.map +1 -1
- package/dist-esm/src/operations/triggerOperations.js +19 -8
- package/dist-esm/src/operations/triggerOperations.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/linkConnectionOperations.js.map +1 -1
- package/dist-esm/src/pagingHelper.js +32 -0
- package/dist-esm/src/pagingHelper.js.map +1 -0
- package/dist-esm/src/tracing.js +1 -1
- package/dist-esm/src/tracing.js.map +1 -1
- package/package.json +5 -5
- package/types/synapse-artifacts.d.ts +118 -28
package/dist/index.js
CHANGED
|
@@ -29,6 +29,38 @@ function _interopNamespace(e) {
|
|
|
29
29
|
var coreClient__namespace = /*#__PURE__*/_interopNamespace(coreClient);
|
|
30
30
|
var coreRestPipeline__namespace = /*#__PURE__*/_interopNamespace(coreRestPipeline);
|
|
31
31
|
|
|
32
|
+
/*
|
|
33
|
+
* Copyright (c) Microsoft Corporation.
|
|
34
|
+
* Licensed under the MIT License.
|
|
35
|
+
*
|
|
36
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
37
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
38
|
+
*/
|
|
39
|
+
const pageMap = new WeakMap();
|
|
40
|
+
/**
|
|
41
|
+
* Given the last `.value` produced by the `byPage` iterator,
|
|
42
|
+
* returns a continuation token that can be used to begin paging from
|
|
43
|
+
* that point later.
|
|
44
|
+
* @param page An object from accessing `value` on the IteratorResult from a `byPage` iterator.
|
|
45
|
+
* @returns The continuation token that can be passed into byPage() during future calls.
|
|
46
|
+
*/
|
|
47
|
+
function getContinuationToken(page) {
|
|
48
|
+
var _a;
|
|
49
|
+
if (typeof page !== "object" || page === null) {
|
|
50
|
+
return undefined;
|
|
51
|
+
}
|
|
52
|
+
return (_a = pageMap.get(page)) === null || _a === void 0 ? void 0 : _a.continuationToken;
|
|
53
|
+
}
|
|
54
|
+
function setContinuationToken(page, continuationToken) {
|
|
55
|
+
var _a;
|
|
56
|
+
if (typeof page !== "object" || page === null || !continuationToken) {
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
const pageInfo = (_a = pageMap.get(page)) !== null && _a !== void 0 ? _a : {};
|
|
60
|
+
pageInfo.continuationToken = continuationToken;
|
|
61
|
+
pageMap.set(page, pageInfo);
|
|
62
|
+
}
|
|
63
|
+
|
|
32
64
|
/*
|
|
33
65
|
* Copyright (c) Microsoft Corporation.
|
|
34
66
|
* Licensed under the MIT License.
|
|
@@ -974,6 +1006,16 @@ exports.KnownScriptActivityLogDestination = void 0;
|
|
|
974
1006
|
/** ExternalStore */
|
|
975
1007
|
KnownScriptActivityLogDestination["ExternalStore"] = "ExternalStore";
|
|
976
1008
|
})(exports.KnownScriptActivityLogDestination || (exports.KnownScriptActivityLogDestination = {}));
|
|
1009
|
+
/** Known values of {@link ConfigurationType} that the service accepts. */
|
|
1010
|
+
exports.KnownConfigurationType = void 0;
|
|
1011
|
+
(function (KnownConfigurationType) {
|
|
1012
|
+
/** Default */
|
|
1013
|
+
KnownConfigurationType["Default"] = "Default";
|
|
1014
|
+
/** Customized */
|
|
1015
|
+
KnownConfigurationType["Customized"] = "Customized";
|
|
1016
|
+
/** Artifact */
|
|
1017
|
+
KnownConfigurationType["Artifact"] = "Artifact";
|
|
1018
|
+
})(exports.KnownConfigurationType || (exports.KnownConfigurationType = {}));
|
|
977
1019
|
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
978
1020
|
exports.KnownRecurrenceFrequency = void 0;
|
|
979
1021
|
(function (KnownRecurrenceFrequency) {
|
|
@@ -1239,7 +1281,7 @@ exports.KnownSqlPartitionOption = void 0;
|
|
|
1239
1281
|
const tracingClient = coreTracing.createTracingClient({
|
|
1240
1282
|
namespace: "Azure.Synapse.Artifacts",
|
|
1241
1283
|
packageName: "@azure/synapse-artifacts",
|
|
1242
|
-
packageVersion: "1.0.0-beta.
|
|
1284
|
+
packageVersion: "1.0.0-beta.12"
|
|
1243
1285
|
});
|
|
1244
1286
|
|
|
1245
1287
|
/*
|
|
@@ -3160,7 +3202,7 @@ const DataFlowStagingInfo = {
|
|
|
3160
3202
|
folderPath: {
|
|
3161
3203
|
serializedName: "folderPath",
|
|
3162
3204
|
type: {
|
|
3163
|
-
name: "
|
|
3205
|
+
name: "any"
|
|
3164
3206
|
}
|
|
3165
3207
|
}
|
|
3166
3208
|
}
|
|
@@ -8400,6 +8442,28 @@ const ScriptActivityTypePropertiesLogSettings = {
|
|
|
8400
8442
|
}
|
|
8401
8443
|
}
|
|
8402
8444
|
};
|
|
8445
|
+
const SparkConfigurationParametrizationReference = {
|
|
8446
|
+
type: {
|
|
8447
|
+
name: "Composite",
|
|
8448
|
+
className: "SparkConfigurationParametrizationReference",
|
|
8449
|
+
modelProperties: {
|
|
8450
|
+
type: {
|
|
8451
|
+
serializedName: "type",
|
|
8452
|
+
required: true,
|
|
8453
|
+
type: {
|
|
8454
|
+
name: "String"
|
|
8455
|
+
}
|
|
8456
|
+
},
|
|
8457
|
+
referenceName: {
|
|
8458
|
+
serializedName: "referenceName",
|
|
8459
|
+
required: true,
|
|
8460
|
+
type: {
|
|
8461
|
+
name: "any"
|
|
8462
|
+
}
|
|
8463
|
+
}
|
|
8464
|
+
}
|
|
8465
|
+
}
|
|
8466
|
+
};
|
|
8403
8467
|
const ScheduleTriggerRecurrence = {
|
|
8404
8468
|
type: {
|
|
8405
8469
|
name: "Composite",
|
|
@@ -13614,6 +13678,11 @@ const RestServiceLinkedService = {
|
|
|
13614
13678
|
name: "Composite",
|
|
13615
13679
|
className: "SecretBase"
|
|
13616
13680
|
}
|
|
13681
|
+
}, authHeaders: {
|
|
13682
|
+
serializedName: "typeProperties.authHeaders",
|
|
13683
|
+
type: {
|
|
13684
|
+
name: "any"
|
|
13685
|
+
}
|
|
13617
13686
|
}, servicePrincipalId: {
|
|
13618
13687
|
serializedName: "typeProperties.servicePrincipalId",
|
|
13619
13688
|
type: {
|
|
@@ -16757,6 +16826,34 @@ const AzureSynapseArtifactsLinkedService = {
|
|
|
16757
16826
|
type: {
|
|
16758
16827
|
name: "any"
|
|
16759
16828
|
}
|
|
16829
|
+
}, workspaceResourceId: {
|
|
16830
|
+
serializedName: "typeProperties.workspaceResourceId",
|
|
16831
|
+
type: {
|
|
16832
|
+
name: "any"
|
|
16833
|
+
}
|
|
16834
|
+
} })
|
|
16835
|
+
}
|
|
16836
|
+
};
|
|
16837
|
+
const PowerBIWorkspaceLinkedService = {
|
|
16838
|
+
serializedName: "PowerBIWorkspace",
|
|
16839
|
+
type: {
|
|
16840
|
+
name: "Composite",
|
|
16841
|
+
className: "PowerBIWorkspaceLinkedService",
|
|
16842
|
+
uberParent: "LinkedService",
|
|
16843
|
+
additionalProperties: { type: { name: "Object" } },
|
|
16844
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
16845
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { workspaceId: {
|
|
16846
|
+
serializedName: "typeProperties.workspaceId",
|
|
16847
|
+
required: true,
|
|
16848
|
+
type: {
|
|
16849
|
+
name: "String"
|
|
16850
|
+
}
|
|
16851
|
+
}, tenantId: {
|
|
16852
|
+
serializedName: "typeProperties.tenantId",
|
|
16853
|
+
required: true,
|
|
16854
|
+
type: {
|
|
16855
|
+
name: "String"
|
|
16856
|
+
}
|
|
16760
16857
|
} })
|
|
16761
16858
|
}
|
|
16762
16859
|
};
|
|
@@ -20779,9 +20876,9 @@ const ExecutePipelineActivity = {
|
|
|
20779
20876
|
type: {
|
|
20780
20877
|
name: "Composite",
|
|
20781
20878
|
className: "ExecutePipelineActivity",
|
|
20782
|
-
uberParent: "
|
|
20879
|
+
uberParent: "ControlActivity",
|
|
20783
20880
|
additionalProperties: { type: { name: "Object" } },
|
|
20784
|
-
polymorphicDiscriminator:
|
|
20881
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20785
20882
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { pipeline: {
|
|
20786
20883
|
serializedName: "typeProperties.pipeline",
|
|
20787
20884
|
type: {
|
|
@@ -20807,9 +20904,9 @@ const IfConditionActivity = {
|
|
|
20807
20904
|
type: {
|
|
20808
20905
|
name: "Composite",
|
|
20809
20906
|
className: "IfConditionActivity",
|
|
20810
|
-
uberParent: "
|
|
20907
|
+
uberParent: "ControlActivity",
|
|
20811
20908
|
additionalProperties: { type: { name: "Object" } },
|
|
20812
|
-
polymorphicDiscriminator:
|
|
20909
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20813
20910
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { expression: {
|
|
20814
20911
|
serializedName: "typeProperties.expression",
|
|
20815
20912
|
type: {
|
|
@@ -20846,9 +20943,9 @@ const SwitchActivity = {
|
|
|
20846
20943
|
type: {
|
|
20847
20944
|
name: "Composite",
|
|
20848
20945
|
className: "SwitchActivity",
|
|
20849
|
-
uberParent: "
|
|
20946
|
+
uberParent: "ControlActivity",
|
|
20850
20947
|
additionalProperties: { type: { name: "Object" } },
|
|
20851
|
-
polymorphicDiscriminator:
|
|
20948
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20852
20949
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { on: {
|
|
20853
20950
|
serializedName: "typeProperties.on",
|
|
20854
20951
|
type: {
|
|
@@ -20885,9 +20982,9 @@ const ForEachActivity = {
|
|
|
20885
20982
|
type: {
|
|
20886
20983
|
name: "Composite",
|
|
20887
20984
|
className: "ForEachActivity",
|
|
20888
|
-
uberParent: "
|
|
20985
|
+
uberParent: "ControlActivity",
|
|
20889
20986
|
additionalProperties: { type: { name: "Object" } },
|
|
20890
|
-
polymorphicDiscriminator:
|
|
20987
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20891
20988
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { isSequential: {
|
|
20892
20989
|
serializedName: "typeProperties.isSequential",
|
|
20893
20990
|
type: {
|
|
@@ -20927,9 +21024,9 @@ const WaitActivity = {
|
|
|
20927
21024
|
type: {
|
|
20928
21025
|
name: "Composite",
|
|
20929
21026
|
className: "WaitActivity",
|
|
20930
|
-
uberParent: "
|
|
21027
|
+
uberParent: "ControlActivity",
|
|
20931
21028
|
additionalProperties: { type: { name: "Object" } },
|
|
20932
|
-
polymorphicDiscriminator:
|
|
21029
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20933
21030
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { waitTimeInSeconds: {
|
|
20934
21031
|
serializedName: "typeProperties.waitTimeInSeconds",
|
|
20935
21032
|
required: true,
|
|
@@ -20944,9 +21041,9 @@ const FailActivity = {
|
|
|
20944
21041
|
type: {
|
|
20945
21042
|
name: "Composite",
|
|
20946
21043
|
className: "FailActivity",
|
|
20947
|
-
uberParent: "
|
|
21044
|
+
uberParent: "ControlActivity",
|
|
20948
21045
|
additionalProperties: { type: { name: "Object" } },
|
|
20949
|
-
polymorphicDiscriminator:
|
|
21046
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20950
21047
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { message: {
|
|
20951
21048
|
serializedName: "typeProperties.message",
|
|
20952
21049
|
required: true,
|
|
@@ -20967,9 +21064,9 @@ const UntilActivity = {
|
|
|
20967
21064
|
type: {
|
|
20968
21065
|
name: "Composite",
|
|
20969
21066
|
className: "UntilActivity",
|
|
20970
|
-
uberParent: "
|
|
21067
|
+
uberParent: "ControlActivity",
|
|
20971
21068
|
additionalProperties: { type: { name: "Object" } },
|
|
20972
|
-
polymorphicDiscriminator:
|
|
21069
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20973
21070
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { expression: {
|
|
20974
21071
|
serializedName: "typeProperties.expression",
|
|
20975
21072
|
type: {
|
|
@@ -21001,9 +21098,9 @@ const ValidationActivity = {
|
|
|
21001
21098
|
type: {
|
|
21002
21099
|
name: "Composite",
|
|
21003
21100
|
className: "ValidationActivity",
|
|
21004
|
-
uberParent: "
|
|
21101
|
+
uberParent: "ControlActivity",
|
|
21005
21102
|
additionalProperties: { type: { name: "Object" } },
|
|
21006
|
-
polymorphicDiscriminator:
|
|
21103
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
21007
21104
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { timeout: {
|
|
21008
21105
|
serializedName: "typeProperties.timeout",
|
|
21009
21106
|
type: {
|
|
@@ -21038,9 +21135,9 @@ const FilterActivity = {
|
|
|
21038
21135
|
type: {
|
|
21039
21136
|
name: "Composite",
|
|
21040
21137
|
className: "FilterActivity",
|
|
21041
|
-
uberParent: "
|
|
21138
|
+
uberParent: "ControlActivity",
|
|
21042
21139
|
additionalProperties: { type: { name: "Object" } },
|
|
21043
|
-
polymorphicDiscriminator:
|
|
21140
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
21044
21141
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { items: {
|
|
21045
21142
|
serializedName: "typeProperties.items",
|
|
21046
21143
|
type: {
|
|
@@ -21061,9 +21158,9 @@ const SetVariableActivity = {
|
|
|
21061
21158
|
type: {
|
|
21062
21159
|
name: "Composite",
|
|
21063
21160
|
className: "SetVariableActivity",
|
|
21064
|
-
uberParent: "
|
|
21161
|
+
uberParent: "ControlActivity",
|
|
21065
21162
|
additionalProperties: { type: { name: "Object" } },
|
|
21066
|
-
polymorphicDiscriminator:
|
|
21163
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
21067
21164
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { variableName: {
|
|
21068
21165
|
serializedName: "typeProperties.variableName",
|
|
21069
21166
|
type: {
|
|
@@ -21082,9 +21179,9 @@ const AppendVariableActivity = {
|
|
|
21082
21179
|
type: {
|
|
21083
21180
|
name: "Composite",
|
|
21084
21181
|
className: "AppendVariableActivity",
|
|
21085
|
-
uberParent: "
|
|
21182
|
+
uberParent: "ControlActivity",
|
|
21086
21183
|
additionalProperties: { type: { name: "Object" } },
|
|
21087
|
-
polymorphicDiscriminator:
|
|
21184
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
21088
21185
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { variableName: {
|
|
21089
21186
|
serializedName: "typeProperties.variableName",
|
|
21090
21187
|
type: {
|
|
@@ -21103,9 +21200,9 @@ const WebHookActivity = {
|
|
|
21103
21200
|
type: {
|
|
21104
21201
|
name: "Composite",
|
|
21105
21202
|
className: "WebHookActivity",
|
|
21106
|
-
uberParent: "
|
|
21203
|
+
uberParent: "ControlActivity",
|
|
21107
21204
|
additionalProperties: { type: { name: "Object" } },
|
|
21108
|
-
polymorphicDiscriminator:
|
|
21205
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
21109
21206
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { method: {
|
|
21110
21207
|
serializedName: "typeProperties.method",
|
|
21111
21208
|
required: true,
|
|
@@ -21152,9 +21249,9 @@ const CopyActivity = {
|
|
|
21152
21249
|
type: {
|
|
21153
21250
|
name: "Composite",
|
|
21154
21251
|
className: "CopyActivity",
|
|
21155
|
-
uberParent: "
|
|
21252
|
+
uberParent: "ExecutionActivity",
|
|
21156
21253
|
additionalProperties: { type: { name: "Object" } },
|
|
21157
|
-
polymorphicDiscriminator:
|
|
21254
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21158
21255
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { inputs: {
|
|
21159
21256
|
serializedName: "inputs",
|
|
21160
21257
|
type: {
|
|
@@ -21277,9 +21374,9 @@ const HDInsightHiveActivity = {
|
|
|
21277
21374
|
type: {
|
|
21278
21375
|
name: "Composite",
|
|
21279
21376
|
className: "HDInsightHiveActivity",
|
|
21280
|
-
uberParent: "
|
|
21377
|
+
uberParent: "ExecutionActivity",
|
|
21281
21378
|
additionalProperties: { type: { name: "Object" } },
|
|
21282
|
-
polymorphicDiscriminator:
|
|
21379
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21283
21380
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { storageLinkedServices: {
|
|
21284
21381
|
serializedName: "typeProperties.storageLinkedServices",
|
|
21285
21382
|
type: {
|
|
@@ -21346,9 +21443,9 @@ const HDInsightPigActivity = {
|
|
|
21346
21443
|
type: {
|
|
21347
21444
|
name: "Composite",
|
|
21348
21445
|
className: "HDInsightPigActivity",
|
|
21349
|
-
uberParent: "
|
|
21446
|
+
uberParent: "ExecutionActivity",
|
|
21350
21447
|
additionalProperties: { type: { name: "Object" } },
|
|
21351
|
-
polymorphicDiscriminator:
|
|
21448
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21352
21449
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { storageLinkedServices: {
|
|
21353
21450
|
serializedName: "typeProperties.storageLinkedServices",
|
|
21354
21451
|
type: {
|
|
@@ -21395,9 +21492,9 @@ const HDInsightMapReduceActivity = {
|
|
|
21395
21492
|
type: {
|
|
21396
21493
|
name: "Composite",
|
|
21397
21494
|
className: "HDInsightMapReduceActivity",
|
|
21398
|
-
uberParent: "
|
|
21495
|
+
uberParent: "ExecutionActivity",
|
|
21399
21496
|
additionalProperties: { type: { name: "Object" } },
|
|
21400
|
-
polymorphicDiscriminator:
|
|
21497
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21401
21498
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { storageLinkedServices: {
|
|
21402
21499
|
serializedName: "typeProperties.storageLinkedServices",
|
|
21403
21500
|
type: {
|
|
@@ -21466,9 +21563,9 @@ const HDInsightStreamingActivity = {
|
|
|
21466
21563
|
type: {
|
|
21467
21564
|
name: "Composite",
|
|
21468
21565
|
className: "HDInsightStreamingActivity",
|
|
21469
|
-
uberParent: "
|
|
21566
|
+
uberParent: "ExecutionActivity",
|
|
21470
21567
|
additionalProperties: { type: { name: "Object" } },
|
|
21471
|
-
polymorphicDiscriminator:
|
|
21568
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21472
21569
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { storageLinkedServices: {
|
|
21473
21570
|
serializedName: "typeProperties.storageLinkedServices",
|
|
21474
21571
|
type: {
|
|
@@ -21565,9 +21662,9 @@ const HDInsightSparkActivity = {
|
|
|
21565
21662
|
type: {
|
|
21566
21663
|
name: "Composite",
|
|
21567
21664
|
className: "HDInsightSparkActivity",
|
|
21568
|
-
uberParent: "
|
|
21665
|
+
uberParent: "ExecutionActivity",
|
|
21569
21666
|
additionalProperties: { type: { name: "Object" } },
|
|
21570
|
-
polymorphicDiscriminator:
|
|
21667
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21571
21668
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { rootPath: {
|
|
21572
21669
|
serializedName: "typeProperties.rootPath",
|
|
21573
21670
|
required: true,
|
|
@@ -21625,9 +21722,9 @@ const ExecuteSsisPackageActivity = {
|
|
|
21625
21722
|
type: {
|
|
21626
21723
|
name: "Composite",
|
|
21627
21724
|
className: "ExecuteSsisPackageActivity",
|
|
21628
|
-
uberParent: "
|
|
21725
|
+
uberParent: "ExecutionActivity",
|
|
21629
21726
|
additionalProperties: { type: { name: "Object" } },
|
|
21630
|
-
polymorphicDiscriminator:
|
|
21727
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21631
21728
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { packageLocation: {
|
|
21632
21729
|
serializedName: "typeProperties.packageLocation",
|
|
21633
21730
|
type: {
|
|
@@ -21725,9 +21822,9 @@ const CustomActivity = {
|
|
|
21725
21822
|
type: {
|
|
21726
21823
|
name: "Composite",
|
|
21727
21824
|
className: "CustomActivity",
|
|
21728
|
-
uberParent: "
|
|
21825
|
+
uberParent: "ExecutionActivity",
|
|
21729
21826
|
additionalProperties: { type: { name: "Object" } },
|
|
21730
|
-
polymorphicDiscriminator:
|
|
21827
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21731
21828
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { command: {
|
|
21732
21829
|
serializedName: "typeProperties.command",
|
|
21733
21830
|
required: true,
|
|
@@ -21775,9 +21872,9 @@ const SqlServerStoredProcedureActivity = {
|
|
|
21775
21872
|
type: {
|
|
21776
21873
|
name: "Composite",
|
|
21777
21874
|
className: "SqlServerStoredProcedureActivity",
|
|
21778
|
-
uberParent: "
|
|
21875
|
+
uberParent: "ExecutionActivity",
|
|
21779
21876
|
additionalProperties: { type: { name: "Object" } },
|
|
21780
|
-
polymorphicDiscriminator:
|
|
21877
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21781
21878
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { storedProcedureName: {
|
|
21782
21879
|
serializedName: "typeProperties.storedProcedureName",
|
|
21783
21880
|
required: true,
|
|
@@ -21797,9 +21894,9 @@ const DeleteActivity = {
|
|
|
21797
21894
|
type: {
|
|
21798
21895
|
name: "Composite",
|
|
21799
21896
|
className: "DeleteActivity",
|
|
21800
|
-
uberParent: "
|
|
21897
|
+
uberParent: "ExecutionActivity",
|
|
21801
21898
|
additionalProperties: { type: { name: "Object" } },
|
|
21802
|
-
polymorphicDiscriminator:
|
|
21899
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21803
21900
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { recursive: {
|
|
21804
21901
|
serializedName: "typeProperties.recursive",
|
|
21805
21902
|
type: {
|
|
@@ -21844,9 +21941,9 @@ const AzureDataExplorerCommandActivity = {
|
|
|
21844
21941
|
type: {
|
|
21845
21942
|
name: "Composite",
|
|
21846
21943
|
className: "AzureDataExplorerCommandActivity",
|
|
21847
|
-
uberParent: "
|
|
21944
|
+
uberParent: "ExecutionActivity",
|
|
21848
21945
|
additionalProperties: { type: { name: "Object" } },
|
|
21849
|
-
polymorphicDiscriminator:
|
|
21946
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21850
21947
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { command: {
|
|
21851
21948
|
serializedName: "typeProperties.command",
|
|
21852
21949
|
required: true,
|
|
@@ -21866,9 +21963,9 @@ const LookupActivity = {
|
|
|
21866
21963
|
type: {
|
|
21867
21964
|
name: "Composite",
|
|
21868
21965
|
className: "LookupActivity",
|
|
21869
|
-
uberParent: "
|
|
21966
|
+
uberParent: "ExecutionActivity",
|
|
21870
21967
|
additionalProperties: { type: { name: "Object" } },
|
|
21871
|
-
polymorphicDiscriminator:
|
|
21968
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21872
21969
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { source: {
|
|
21873
21970
|
serializedName: "typeProperties.source",
|
|
21874
21971
|
type: {
|
|
@@ -21894,9 +21991,9 @@ const WebActivity = {
|
|
|
21894
21991
|
type: {
|
|
21895
21992
|
name: "Composite",
|
|
21896
21993
|
className: "WebActivity",
|
|
21897
|
-
uberParent: "
|
|
21994
|
+
uberParent: "ExecutionActivity",
|
|
21898
21995
|
additionalProperties: { type: { name: "Object" } },
|
|
21899
|
-
polymorphicDiscriminator:
|
|
21996
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21900
21997
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { method: {
|
|
21901
21998
|
serializedName: "typeProperties.method",
|
|
21902
21999
|
required: true,
|
|
@@ -21961,9 +22058,9 @@ const GetMetadataActivity = {
|
|
|
21961
22058
|
type: {
|
|
21962
22059
|
name: "Composite",
|
|
21963
22060
|
className: "GetMetadataActivity",
|
|
21964
|
-
uberParent: "
|
|
22061
|
+
uberParent: "ExecutionActivity",
|
|
21965
22062
|
additionalProperties: { type: { name: "Object" } },
|
|
21966
|
-
polymorphicDiscriminator:
|
|
22063
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21967
22064
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { dataset: {
|
|
21968
22065
|
serializedName: "typeProperties.dataset",
|
|
21969
22066
|
type: {
|
|
@@ -22000,9 +22097,9 @@ const AzureMLBatchExecutionActivity = {
|
|
|
22000
22097
|
type: {
|
|
22001
22098
|
name: "Composite",
|
|
22002
22099
|
className: "AzureMLBatchExecutionActivity",
|
|
22003
|
-
uberParent: "
|
|
22100
|
+
uberParent: "ExecutionActivity",
|
|
22004
22101
|
additionalProperties: { type: { name: "Object" } },
|
|
22005
|
-
polymorphicDiscriminator:
|
|
22102
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22006
22103
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { globalParameters: {
|
|
22007
22104
|
serializedName: "typeProperties.globalParameters",
|
|
22008
22105
|
type: {
|
|
@@ -22033,9 +22130,9 @@ const AzureMLUpdateResourceActivity = {
|
|
|
22033
22130
|
type: {
|
|
22034
22131
|
name: "Composite",
|
|
22035
22132
|
className: "AzureMLUpdateResourceActivity",
|
|
22036
|
-
uberParent: "
|
|
22133
|
+
uberParent: "ExecutionActivity",
|
|
22037
22134
|
additionalProperties: { type: { name: "Object" } },
|
|
22038
|
-
polymorphicDiscriminator:
|
|
22135
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22039
22136
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { trainedModelName: {
|
|
22040
22137
|
serializedName: "typeProperties.trainedModelName",
|
|
22041
22138
|
required: true,
|
|
@@ -22062,9 +22159,9 @@ const AzureMLExecutePipelineActivity = {
|
|
|
22062
22159
|
type: {
|
|
22063
22160
|
name: "Composite",
|
|
22064
22161
|
className: "AzureMLExecutePipelineActivity",
|
|
22065
|
-
uberParent: "
|
|
22162
|
+
uberParent: "ExecutionActivity",
|
|
22066
22163
|
additionalProperties: { type: { name: "Object" } },
|
|
22067
|
-
polymorphicDiscriminator:
|
|
22164
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22068
22165
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { mlPipelineId: {
|
|
22069
22166
|
serializedName: "typeProperties.mlPipelineId",
|
|
22070
22167
|
required: true,
|
|
@@ -22099,9 +22196,9 @@ const DataLakeAnalyticsUsqlActivity = {
|
|
|
22099
22196
|
type: {
|
|
22100
22197
|
name: "Composite",
|
|
22101
22198
|
className: "DataLakeAnalyticsUsqlActivity",
|
|
22102
|
-
uberParent: "
|
|
22199
|
+
uberParent: "ExecutionActivity",
|
|
22103
22200
|
additionalProperties: { type: { name: "Object" } },
|
|
22104
|
-
polymorphicDiscriminator:
|
|
22201
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22105
22202
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { scriptPath: {
|
|
22106
22203
|
serializedName: "typeProperties.scriptPath",
|
|
22107
22204
|
required: true,
|
|
@@ -22148,9 +22245,9 @@ const DatabricksNotebookActivity = {
|
|
|
22148
22245
|
type: {
|
|
22149
22246
|
name: "Composite",
|
|
22150
22247
|
className: "DatabricksNotebookActivity",
|
|
22151
|
-
uberParent: "
|
|
22248
|
+
uberParent: "ExecutionActivity",
|
|
22152
22249
|
additionalProperties: { type: { name: "Object" } },
|
|
22153
|
-
polymorphicDiscriminator:
|
|
22250
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22154
22251
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { notebookPath: {
|
|
22155
22252
|
serializedName: "typeProperties.notebookPath",
|
|
22156
22253
|
required: true,
|
|
@@ -22182,9 +22279,9 @@ const DatabricksSparkJarActivity = {
|
|
|
22182
22279
|
type: {
|
|
22183
22280
|
name: "Composite",
|
|
22184
22281
|
className: "DatabricksSparkJarActivity",
|
|
22185
|
-
uberParent: "
|
|
22282
|
+
uberParent: "ExecutionActivity",
|
|
22186
22283
|
additionalProperties: { type: { name: "Object" } },
|
|
22187
|
-
polymorphicDiscriminator:
|
|
22284
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22188
22285
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { mainClassName: {
|
|
22189
22286
|
serializedName: "typeProperties.mainClassName",
|
|
22190
22287
|
required: true,
|
|
@@ -22220,9 +22317,9 @@ const DatabricksSparkPythonActivity = {
|
|
|
22220
22317
|
type: {
|
|
22221
22318
|
name: "Composite",
|
|
22222
22319
|
className: "DatabricksSparkPythonActivity",
|
|
22223
|
-
uberParent: "
|
|
22320
|
+
uberParent: "ExecutionActivity",
|
|
22224
22321
|
additionalProperties: { type: { name: "Object" } },
|
|
22225
|
-
polymorphicDiscriminator:
|
|
22322
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22226
22323
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { pythonFile: {
|
|
22227
22324
|
serializedName: "typeProperties.pythonFile",
|
|
22228
22325
|
required: true,
|
|
@@ -22258,9 +22355,9 @@ const AzureFunctionActivity = {
|
|
|
22258
22355
|
type: {
|
|
22259
22356
|
name: "Composite",
|
|
22260
22357
|
className: "AzureFunctionActivity",
|
|
22261
|
-
uberParent: "
|
|
22358
|
+
uberParent: "ExecutionActivity",
|
|
22262
22359
|
additionalProperties: { type: { name: "Object" } },
|
|
22263
|
-
polymorphicDiscriminator:
|
|
22360
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22264
22361
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { method: {
|
|
22265
22362
|
serializedName: "typeProperties.method",
|
|
22266
22363
|
required: true,
|
|
@@ -22291,9 +22388,9 @@ const ExecuteDataFlowActivity = {
|
|
|
22291
22388
|
type: {
|
|
22292
22389
|
name: "Composite",
|
|
22293
22390
|
className: "ExecuteDataFlowActivity",
|
|
22294
|
-
uberParent: "
|
|
22391
|
+
uberParent: "ExecutionActivity",
|
|
22295
22392
|
additionalProperties: { type: { name: "Object" } },
|
|
22296
|
-
polymorphicDiscriminator:
|
|
22393
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22297
22394
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { dataflow: {
|
|
22298
22395
|
serializedName: "typeProperties.dataflow",
|
|
22299
22396
|
type: {
|
|
@@ -22346,9 +22443,9 @@ const ScriptActivity = {
|
|
|
22346
22443
|
type: {
|
|
22347
22444
|
name: "Composite",
|
|
22348
22445
|
className: "ScriptActivity",
|
|
22349
|
-
uberParent: "
|
|
22446
|
+
uberParent: "ExecutionActivity",
|
|
22350
22447
|
additionalProperties: { type: { name: "Object" } },
|
|
22351
|
-
polymorphicDiscriminator:
|
|
22448
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22352
22449
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { scripts: {
|
|
22353
22450
|
serializedName: "typeProperties.scripts",
|
|
22354
22451
|
type: {
|
|
@@ -22374,9 +22471,9 @@ const SynapseNotebookActivity = {
|
|
|
22374
22471
|
type: {
|
|
22375
22472
|
name: "Composite",
|
|
22376
22473
|
className: "SynapseNotebookActivity",
|
|
22377
|
-
uberParent: "
|
|
22474
|
+
uberParent: "ExecutionActivity",
|
|
22378
22475
|
additionalProperties: { type: { name: "Object" } },
|
|
22379
|
-
polymorphicDiscriminator:
|
|
22476
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22380
22477
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { notebook: {
|
|
22381
22478
|
serializedName: "typeProperties.notebook",
|
|
22382
22479
|
type: {
|
|
@@ -22423,9 +22520,9 @@ const SynapseSparkJobDefinitionActivity = {
|
|
|
22423
22520
|
type: {
|
|
22424
22521
|
name: "Composite",
|
|
22425
22522
|
className: "SynapseSparkJobDefinitionActivity",
|
|
22426
|
-
uberParent: "
|
|
22523
|
+
uberParent: "ExecutionActivity",
|
|
22427
22524
|
additionalProperties: { type: { name: "Object" } },
|
|
22428
|
-
polymorphicDiscriminator:
|
|
22525
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22429
22526
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { sparkJob: {
|
|
22430
22527
|
serializedName: "typeProperties.sparkJob",
|
|
22431
22528
|
type: {
|
|
@@ -22447,6 +22544,11 @@ const SynapseSparkJobDefinitionActivity = {
|
|
|
22447
22544
|
type: {
|
|
22448
22545
|
name: "any"
|
|
22449
22546
|
}
|
|
22547
|
+
}, scanFolder: {
|
|
22548
|
+
serializedName: "typeProperties.scanFolder",
|
|
22549
|
+
type: {
|
|
22550
|
+
name: "any"
|
|
22551
|
+
}
|
|
22450
22552
|
}, className: {
|
|
22451
22553
|
serializedName: "typeProperties.className",
|
|
22452
22554
|
type: {
|
|
@@ -22462,6 +22564,26 @@ const SynapseSparkJobDefinitionActivity = {
|
|
|
22462
22564
|
}
|
|
22463
22565
|
}
|
|
22464
22566
|
}
|
|
22567
|
+
}, pythonCodeReference: {
|
|
22568
|
+
serializedName: "typeProperties.pythonCodeReference",
|
|
22569
|
+
type: {
|
|
22570
|
+
name: "Sequence",
|
|
22571
|
+
element: {
|
|
22572
|
+
type: {
|
|
22573
|
+
name: "any"
|
|
22574
|
+
}
|
|
22575
|
+
}
|
|
22576
|
+
}
|
|
22577
|
+
}, filesV2: {
|
|
22578
|
+
serializedName: "typeProperties.filesV2",
|
|
22579
|
+
type: {
|
|
22580
|
+
name: "Sequence",
|
|
22581
|
+
element: {
|
|
22582
|
+
type: {
|
|
22583
|
+
name: "any"
|
|
22584
|
+
}
|
|
22585
|
+
}
|
|
22586
|
+
}
|
|
22465
22587
|
}, targetBigDataPool: {
|
|
22466
22588
|
serializedName: "typeProperties.targetBigDataPool",
|
|
22467
22589
|
type: {
|
|
@@ -22486,7 +22608,24 @@ const SynapseSparkJobDefinitionActivity = {
|
|
|
22486
22608
|
}, numExecutors: {
|
|
22487
22609
|
serializedName: "typeProperties.numExecutors",
|
|
22488
22610
|
type: {
|
|
22489
|
-
name: "
|
|
22611
|
+
name: "any"
|
|
22612
|
+
}
|
|
22613
|
+
}, configurationType: {
|
|
22614
|
+
serializedName: "typeProperties.configurationType",
|
|
22615
|
+
type: {
|
|
22616
|
+
name: "String"
|
|
22617
|
+
}
|
|
22618
|
+
}, targetSparkConfiguration: {
|
|
22619
|
+
serializedName: "typeProperties.targetSparkConfiguration",
|
|
22620
|
+
type: {
|
|
22621
|
+
name: "Composite",
|
|
22622
|
+
className: "SparkConfigurationParametrizationReference"
|
|
22623
|
+
}
|
|
22624
|
+
}, sparkConfig: {
|
|
22625
|
+
serializedName: "typeProperties.sparkConfig",
|
|
22626
|
+
type: {
|
|
22627
|
+
name: "Dictionary",
|
|
22628
|
+
value: { type: { name: "any" } }
|
|
22490
22629
|
}
|
|
22491
22630
|
} })
|
|
22492
22631
|
}
|
|
@@ -22496,9 +22635,9 @@ const ScheduleTrigger = {
|
|
|
22496
22635
|
type: {
|
|
22497
22636
|
name: "Composite",
|
|
22498
22637
|
className: "ScheduleTrigger",
|
|
22499
|
-
uberParent: "
|
|
22638
|
+
uberParent: "MultiplePipelineTrigger",
|
|
22500
22639
|
additionalProperties: { type: { name: "Object" } },
|
|
22501
|
-
polymorphicDiscriminator:
|
|
22640
|
+
polymorphicDiscriminator: MultiplePipelineTrigger.type.polymorphicDiscriminator,
|
|
22502
22641
|
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { recurrence: {
|
|
22503
22642
|
serializedName: "typeProperties.recurrence",
|
|
22504
22643
|
type: {
|
|
@@ -22513,9 +22652,9 @@ const BlobTrigger = {
|
|
|
22513
22652
|
type: {
|
|
22514
22653
|
name: "Composite",
|
|
22515
22654
|
className: "BlobTrigger",
|
|
22516
|
-
uberParent: "
|
|
22655
|
+
uberParent: "MultiplePipelineTrigger",
|
|
22517
22656
|
additionalProperties: { type: { name: "Object" } },
|
|
22518
|
-
polymorphicDiscriminator:
|
|
22657
|
+
polymorphicDiscriminator: MultiplePipelineTrigger.type.polymorphicDiscriminator,
|
|
22519
22658
|
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { folderPath: {
|
|
22520
22659
|
serializedName: "typeProperties.folderPath",
|
|
22521
22660
|
required: true,
|
|
@@ -22542,9 +22681,9 @@ const BlobEventsTrigger = {
|
|
|
22542
22681
|
type: {
|
|
22543
22682
|
name: "Composite",
|
|
22544
22683
|
className: "BlobEventsTrigger",
|
|
22545
|
-
uberParent: "
|
|
22684
|
+
uberParent: "MultiplePipelineTrigger",
|
|
22546
22685
|
additionalProperties: { type: { name: "Object" } },
|
|
22547
|
-
polymorphicDiscriminator:
|
|
22686
|
+
polymorphicDiscriminator: MultiplePipelineTrigger.type.polymorphicDiscriminator,
|
|
22548
22687
|
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { blobPathBeginsWith: {
|
|
22549
22688
|
serializedName: "typeProperties.blobPathBeginsWith",
|
|
22550
22689
|
type: {
|
|
@@ -22585,9 +22724,9 @@ const CustomEventsTrigger = {
|
|
|
22585
22724
|
type: {
|
|
22586
22725
|
name: "Composite",
|
|
22587
22726
|
className: "CustomEventsTrigger",
|
|
22588
|
-
uberParent: "
|
|
22727
|
+
uberParent: "MultiplePipelineTrigger",
|
|
22589
22728
|
additionalProperties: { type: { name: "Object" } },
|
|
22590
|
-
polymorphicDiscriminator:
|
|
22729
|
+
polymorphicDiscriminator: MultiplePipelineTrigger.type.polymorphicDiscriminator,
|
|
22591
22730
|
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { subjectBeginsWith: {
|
|
22592
22731
|
serializedName: "typeProperties.subjectBeginsWith",
|
|
22593
22732
|
type: {
|
|
@@ -22623,9 +22762,9 @@ const AzureTableSource = {
|
|
|
22623
22762
|
type: {
|
|
22624
22763
|
name: "Composite",
|
|
22625
22764
|
className: "AzureTableSource",
|
|
22626
|
-
uberParent: "
|
|
22765
|
+
uberParent: "TabularSource",
|
|
22627
22766
|
additionalProperties: { type: { name: "Object" } },
|
|
22628
|
-
polymorphicDiscriminator:
|
|
22767
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22629
22768
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { azureTableSourceQuery: {
|
|
22630
22769
|
serializedName: "azureTableSourceQuery",
|
|
22631
22770
|
type: {
|
|
@@ -22644,9 +22783,9 @@ const InformixSource = {
|
|
|
22644
22783
|
type: {
|
|
22645
22784
|
name: "Composite",
|
|
22646
22785
|
className: "InformixSource",
|
|
22647
|
-
uberParent: "
|
|
22786
|
+
uberParent: "TabularSource",
|
|
22648
22787
|
additionalProperties: { type: { name: "Object" } },
|
|
22649
|
-
polymorphicDiscriminator:
|
|
22788
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22650
22789
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22651
22790
|
serializedName: "query",
|
|
22652
22791
|
type: {
|
|
@@ -22660,9 +22799,9 @@ const Db2Source = {
|
|
|
22660
22799
|
type: {
|
|
22661
22800
|
name: "Composite",
|
|
22662
22801
|
className: "Db2Source",
|
|
22663
|
-
uberParent: "
|
|
22802
|
+
uberParent: "TabularSource",
|
|
22664
22803
|
additionalProperties: { type: { name: "Object" } },
|
|
22665
|
-
polymorphicDiscriminator:
|
|
22804
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22666
22805
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22667
22806
|
serializedName: "query",
|
|
22668
22807
|
type: {
|
|
@@ -22676,9 +22815,9 @@ const OdbcSource = {
|
|
|
22676
22815
|
type: {
|
|
22677
22816
|
name: "Composite",
|
|
22678
22817
|
className: "OdbcSource",
|
|
22679
|
-
uberParent: "
|
|
22818
|
+
uberParent: "TabularSource",
|
|
22680
22819
|
additionalProperties: { type: { name: "Object" } },
|
|
22681
|
-
polymorphicDiscriminator:
|
|
22820
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22682
22821
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22683
22822
|
serializedName: "query",
|
|
22684
22823
|
type: {
|
|
@@ -22692,9 +22831,9 @@ const MySqlSource = {
|
|
|
22692
22831
|
type: {
|
|
22693
22832
|
name: "Composite",
|
|
22694
22833
|
className: "MySqlSource",
|
|
22695
|
-
uberParent: "
|
|
22834
|
+
uberParent: "TabularSource",
|
|
22696
22835
|
additionalProperties: { type: { name: "Object" } },
|
|
22697
|
-
polymorphicDiscriminator:
|
|
22836
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22698
22837
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22699
22838
|
serializedName: "query",
|
|
22700
22839
|
type: {
|
|
@@ -22708,9 +22847,9 @@ const PostgreSqlSource = {
|
|
|
22708
22847
|
type: {
|
|
22709
22848
|
name: "Composite",
|
|
22710
22849
|
className: "PostgreSqlSource",
|
|
22711
|
-
uberParent: "
|
|
22850
|
+
uberParent: "TabularSource",
|
|
22712
22851
|
additionalProperties: { type: { name: "Object" } },
|
|
22713
|
-
polymorphicDiscriminator:
|
|
22852
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22714
22853
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22715
22854
|
serializedName: "query",
|
|
22716
22855
|
type: {
|
|
@@ -22724,9 +22863,9 @@ const SybaseSource = {
|
|
|
22724
22863
|
type: {
|
|
22725
22864
|
name: "Composite",
|
|
22726
22865
|
className: "SybaseSource",
|
|
22727
|
-
uberParent: "
|
|
22866
|
+
uberParent: "TabularSource",
|
|
22728
22867
|
additionalProperties: { type: { name: "Object" } },
|
|
22729
|
-
polymorphicDiscriminator:
|
|
22868
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22730
22869
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22731
22870
|
serializedName: "query",
|
|
22732
22871
|
type: {
|
|
@@ -22740,9 +22879,9 @@ const SapBwSource = {
|
|
|
22740
22879
|
type: {
|
|
22741
22880
|
name: "Composite",
|
|
22742
22881
|
className: "SapBwSource",
|
|
22743
|
-
uberParent: "
|
|
22882
|
+
uberParent: "TabularSource",
|
|
22744
22883
|
additionalProperties: { type: { name: "Object" } },
|
|
22745
|
-
polymorphicDiscriminator:
|
|
22884
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22746
22885
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22747
22886
|
serializedName: "query",
|
|
22748
22887
|
type: {
|
|
@@ -22756,9 +22895,9 @@ const SalesforceSource = {
|
|
|
22756
22895
|
type: {
|
|
22757
22896
|
name: "Composite",
|
|
22758
22897
|
className: "SalesforceSource",
|
|
22759
|
-
uberParent: "
|
|
22898
|
+
uberParent: "TabularSource",
|
|
22760
22899
|
additionalProperties: { type: { name: "Object" } },
|
|
22761
|
-
polymorphicDiscriminator:
|
|
22900
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22762
22901
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22763
22902
|
serializedName: "query",
|
|
22764
22903
|
type: {
|
|
@@ -22777,9 +22916,9 @@ const SapCloudForCustomerSource = {
|
|
|
22777
22916
|
type: {
|
|
22778
22917
|
name: "Composite",
|
|
22779
22918
|
className: "SapCloudForCustomerSource",
|
|
22780
|
-
uberParent: "
|
|
22919
|
+
uberParent: "TabularSource",
|
|
22781
22920
|
additionalProperties: { type: { name: "Object" } },
|
|
22782
|
-
polymorphicDiscriminator:
|
|
22921
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22783
22922
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22784
22923
|
serializedName: "query",
|
|
22785
22924
|
type: {
|
|
@@ -22798,9 +22937,9 @@ const SapEccSource = {
|
|
|
22798
22937
|
type: {
|
|
22799
22938
|
name: "Composite",
|
|
22800
22939
|
className: "SapEccSource",
|
|
22801
|
-
uberParent: "
|
|
22940
|
+
uberParent: "TabularSource",
|
|
22802
22941
|
additionalProperties: { type: { name: "Object" } },
|
|
22803
|
-
polymorphicDiscriminator:
|
|
22942
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22804
22943
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22805
22944
|
serializedName: "query",
|
|
22806
22945
|
type: {
|
|
@@ -22819,9 +22958,9 @@ const SapHanaSource = {
|
|
|
22819
22958
|
type: {
|
|
22820
22959
|
name: "Composite",
|
|
22821
22960
|
className: "SapHanaSource",
|
|
22822
|
-
uberParent: "
|
|
22961
|
+
uberParent: "TabularSource",
|
|
22823
22962
|
additionalProperties: { type: { name: "Object" } },
|
|
22824
|
-
polymorphicDiscriminator:
|
|
22963
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22825
22964
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22826
22965
|
serializedName: "query",
|
|
22827
22966
|
type: {
|
|
@@ -22851,9 +22990,9 @@ const SapOpenHubSource = {
|
|
|
22851
22990
|
type: {
|
|
22852
22991
|
name: "Composite",
|
|
22853
22992
|
className: "SapOpenHubSource",
|
|
22854
|
-
uberParent: "
|
|
22993
|
+
uberParent: "TabularSource",
|
|
22855
22994
|
additionalProperties: { type: { name: "Object" } },
|
|
22856
|
-
polymorphicDiscriminator:
|
|
22995
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22857
22996
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { excludeLastRequest: {
|
|
22858
22997
|
serializedName: "excludeLastRequest",
|
|
22859
22998
|
type: {
|
|
@@ -22882,9 +23021,9 @@ const SapOdpSource = {
|
|
|
22882
23021
|
type: {
|
|
22883
23022
|
name: "Composite",
|
|
22884
23023
|
className: "SapOdpSource",
|
|
22885
|
-
uberParent: "
|
|
23024
|
+
uberParent: "TabularSource",
|
|
22886
23025
|
additionalProperties: { type: { name: "Object" } },
|
|
22887
|
-
polymorphicDiscriminator:
|
|
23026
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22888
23027
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { extractionMode: {
|
|
22889
23028
|
serializedName: "extractionMode",
|
|
22890
23029
|
type: {
|
|
@@ -22913,9 +23052,9 @@ const SapTableSource = {
|
|
|
22913
23052
|
type: {
|
|
22914
23053
|
name: "Composite",
|
|
22915
23054
|
className: "SapTableSource",
|
|
22916
|
-
uberParent: "
|
|
23055
|
+
uberParent: "TabularSource",
|
|
22917
23056
|
additionalProperties: { type: { name: "Object" } },
|
|
22918
|
-
polymorphicDiscriminator:
|
|
23057
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22919
23058
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { rowCount: {
|
|
22920
23059
|
serializedName: "rowCount",
|
|
22921
23060
|
type: {
|
|
@@ -22970,9 +23109,9 @@ const SqlSource = {
|
|
|
22970
23109
|
type: {
|
|
22971
23110
|
name: "Composite",
|
|
22972
23111
|
className: "SqlSource",
|
|
22973
|
-
uberParent: "
|
|
23112
|
+
uberParent: "TabularSource",
|
|
22974
23113
|
additionalProperties: { type: { name: "Object" } },
|
|
22975
|
-
polymorphicDiscriminator:
|
|
23114
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22976
23115
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
22977
23116
|
serializedName: "sqlReaderQuery",
|
|
22978
23117
|
type: {
|
|
@@ -23015,9 +23154,9 @@ const SqlServerSource = {
|
|
|
23015
23154
|
type: {
|
|
23016
23155
|
name: "Composite",
|
|
23017
23156
|
className: "SqlServerSource",
|
|
23018
|
-
uberParent: "
|
|
23157
|
+
uberParent: "TabularSource",
|
|
23019
23158
|
additionalProperties: { type: { name: "Object" } },
|
|
23020
|
-
polymorphicDiscriminator:
|
|
23159
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23021
23160
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
23022
23161
|
serializedName: "sqlReaderQuery",
|
|
23023
23162
|
type: {
|
|
@@ -23060,9 +23199,9 @@ const AmazonRdsForSqlServerSource = {
|
|
|
23060
23199
|
type: {
|
|
23061
23200
|
name: "Composite",
|
|
23062
23201
|
className: "AmazonRdsForSqlServerSource",
|
|
23063
|
-
uberParent: "
|
|
23202
|
+
uberParent: "TabularSource",
|
|
23064
23203
|
additionalProperties: { type: { name: "Object" } },
|
|
23065
|
-
polymorphicDiscriminator:
|
|
23204
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23066
23205
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
23067
23206
|
serializedName: "sqlReaderQuery",
|
|
23068
23207
|
type: {
|
|
@@ -23105,9 +23244,9 @@ const AzureSqlSource = {
|
|
|
23105
23244
|
type: {
|
|
23106
23245
|
name: "Composite",
|
|
23107
23246
|
className: "AzureSqlSource",
|
|
23108
|
-
uberParent: "
|
|
23247
|
+
uberParent: "TabularSource",
|
|
23109
23248
|
additionalProperties: { type: { name: "Object" } },
|
|
23110
|
-
polymorphicDiscriminator:
|
|
23249
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23111
23250
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
23112
23251
|
serializedName: "sqlReaderQuery",
|
|
23113
23252
|
type: {
|
|
@@ -23150,9 +23289,9 @@ const SqlMISource = {
|
|
|
23150
23289
|
type: {
|
|
23151
23290
|
name: "Composite",
|
|
23152
23291
|
className: "SqlMISource",
|
|
23153
|
-
uberParent: "
|
|
23292
|
+
uberParent: "TabularSource",
|
|
23154
23293
|
additionalProperties: { type: { name: "Object" } },
|
|
23155
|
-
polymorphicDiscriminator:
|
|
23294
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23156
23295
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
23157
23296
|
serializedName: "sqlReaderQuery",
|
|
23158
23297
|
type: {
|
|
@@ -23195,9 +23334,9 @@ const SqlDWSource = {
|
|
|
23195
23334
|
type: {
|
|
23196
23335
|
name: "Composite",
|
|
23197
23336
|
className: "SqlDWSource",
|
|
23198
|
-
uberParent: "
|
|
23337
|
+
uberParent: "TabularSource",
|
|
23199
23338
|
additionalProperties: { type: { name: "Object" } },
|
|
23200
|
-
polymorphicDiscriminator:
|
|
23339
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23201
23340
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
23202
23341
|
serializedName: "sqlReaderQuery",
|
|
23203
23342
|
type: {
|
|
@@ -23232,9 +23371,9 @@ const AzureMySqlSource = {
|
|
|
23232
23371
|
type: {
|
|
23233
23372
|
name: "Composite",
|
|
23234
23373
|
className: "AzureMySqlSource",
|
|
23235
|
-
uberParent: "
|
|
23374
|
+
uberParent: "TabularSource",
|
|
23236
23375
|
additionalProperties: { type: { name: "Object" } },
|
|
23237
|
-
polymorphicDiscriminator:
|
|
23376
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23238
23377
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23239
23378
|
serializedName: "query",
|
|
23240
23379
|
type: {
|
|
@@ -23248,9 +23387,9 @@ const TeradataSource = {
|
|
|
23248
23387
|
type: {
|
|
23249
23388
|
name: "Composite",
|
|
23250
23389
|
className: "TeradataSource",
|
|
23251
|
-
uberParent: "
|
|
23390
|
+
uberParent: "TabularSource",
|
|
23252
23391
|
additionalProperties: { type: { name: "Object" } },
|
|
23253
|
-
polymorphicDiscriminator:
|
|
23392
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23254
23393
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23255
23394
|
serializedName: "query",
|
|
23256
23395
|
type: {
|
|
@@ -23275,9 +23414,9 @@ const CassandraSource = {
|
|
|
23275
23414
|
type: {
|
|
23276
23415
|
name: "Composite",
|
|
23277
23416
|
className: "CassandraSource",
|
|
23278
|
-
uberParent: "
|
|
23417
|
+
uberParent: "TabularSource",
|
|
23279
23418
|
additionalProperties: { type: { name: "Object" } },
|
|
23280
|
-
polymorphicDiscriminator:
|
|
23419
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23281
23420
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23282
23421
|
serializedName: "query",
|
|
23283
23422
|
type: {
|
|
@@ -23296,9 +23435,9 @@ const AmazonMWSSource = {
|
|
|
23296
23435
|
type: {
|
|
23297
23436
|
name: "Composite",
|
|
23298
23437
|
className: "AmazonMWSSource",
|
|
23299
|
-
uberParent: "
|
|
23438
|
+
uberParent: "TabularSource",
|
|
23300
23439
|
additionalProperties: { type: { name: "Object" } },
|
|
23301
|
-
polymorphicDiscriminator:
|
|
23440
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23302
23441
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23303
23442
|
serializedName: "query",
|
|
23304
23443
|
type: {
|
|
@@ -23312,9 +23451,9 @@ const AzurePostgreSqlSource = {
|
|
|
23312
23451
|
type: {
|
|
23313
23452
|
name: "Composite",
|
|
23314
23453
|
className: "AzurePostgreSqlSource",
|
|
23315
|
-
uberParent: "
|
|
23454
|
+
uberParent: "TabularSource",
|
|
23316
23455
|
additionalProperties: { type: { name: "Object" } },
|
|
23317
|
-
polymorphicDiscriminator:
|
|
23456
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23318
23457
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23319
23458
|
serializedName: "query",
|
|
23320
23459
|
type: {
|
|
@@ -23328,9 +23467,9 @@ const ConcurSource = {
|
|
|
23328
23467
|
type: {
|
|
23329
23468
|
name: "Composite",
|
|
23330
23469
|
className: "ConcurSource",
|
|
23331
|
-
uberParent: "
|
|
23470
|
+
uberParent: "TabularSource",
|
|
23332
23471
|
additionalProperties: { type: { name: "Object" } },
|
|
23333
|
-
polymorphicDiscriminator:
|
|
23472
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23334
23473
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23335
23474
|
serializedName: "query",
|
|
23336
23475
|
type: {
|
|
@@ -23344,9 +23483,9 @@ const CouchbaseSource = {
|
|
|
23344
23483
|
type: {
|
|
23345
23484
|
name: "Composite",
|
|
23346
23485
|
className: "CouchbaseSource",
|
|
23347
|
-
uberParent: "
|
|
23486
|
+
uberParent: "TabularSource",
|
|
23348
23487
|
additionalProperties: { type: { name: "Object" } },
|
|
23349
|
-
polymorphicDiscriminator:
|
|
23488
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23350
23489
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23351
23490
|
serializedName: "query",
|
|
23352
23491
|
type: {
|
|
@@ -23360,9 +23499,9 @@ const DrillSource = {
|
|
|
23360
23499
|
type: {
|
|
23361
23500
|
name: "Composite",
|
|
23362
23501
|
className: "DrillSource",
|
|
23363
|
-
uberParent: "
|
|
23502
|
+
uberParent: "TabularSource",
|
|
23364
23503
|
additionalProperties: { type: { name: "Object" } },
|
|
23365
|
-
polymorphicDiscriminator:
|
|
23504
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23366
23505
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23367
23506
|
serializedName: "query",
|
|
23368
23507
|
type: {
|
|
@@ -23376,9 +23515,9 @@ const EloquaSource = {
|
|
|
23376
23515
|
type: {
|
|
23377
23516
|
name: "Composite",
|
|
23378
23517
|
className: "EloquaSource",
|
|
23379
|
-
uberParent: "
|
|
23518
|
+
uberParent: "TabularSource",
|
|
23380
23519
|
additionalProperties: { type: { name: "Object" } },
|
|
23381
|
-
polymorphicDiscriminator:
|
|
23520
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23382
23521
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23383
23522
|
serializedName: "query",
|
|
23384
23523
|
type: {
|
|
@@ -23392,9 +23531,9 @@ const GoogleBigQuerySource = {
|
|
|
23392
23531
|
type: {
|
|
23393
23532
|
name: "Composite",
|
|
23394
23533
|
className: "GoogleBigQuerySource",
|
|
23395
|
-
uberParent: "
|
|
23534
|
+
uberParent: "TabularSource",
|
|
23396
23535
|
additionalProperties: { type: { name: "Object" } },
|
|
23397
|
-
polymorphicDiscriminator:
|
|
23536
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23398
23537
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23399
23538
|
serializedName: "query",
|
|
23400
23539
|
type: {
|
|
@@ -23408,9 +23547,9 @@ const GreenplumSource = {
|
|
|
23408
23547
|
type: {
|
|
23409
23548
|
name: "Composite",
|
|
23410
23549
|
className: "GreenplumSource",
|
|
23411
|
-
uberParent: "
|
|
23550
|
+
uberParent: "TabularSource",
|
|
23412
23551
|
additionalProperties: { type: { name: "Object" } },
|
|
23413
|
-
polymorphicDiscriminator:
|
|
23552
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23414
23553
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23415
23554
|
serializedName: "query",
|
|
23416
23555
|
type: {
|
|
@@ -23424,9 +23563,9 @@ const HBaseSource = {
|
|
|
23424
23563
|
type: {
|
|
23425
23564
|
name: "Composite",
|
|
23426
23565
|
className: "HBaseSource",
|
|
23427
|
-
uberParent: "
|
|
23566
|
+
uberParent: "TabularSource",
|
|
23428
23567
|
additionalProperties: { type: { name: "Object" } },
|
|
23429
|
-
polymorphicDiscriminator:
|
|
23568
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23430
23569
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23431
23570
|
serializedName: "query",
|
|
23432
23571
|
type: {
|
|
@@ -23440,9 +23579,9 @@ const HiveSource = {
|
|
|
23440
23579
|
type: {
|
|
23441
23580
|
name: "Composite",
|
|
23442
23581
|
className: "HiveSource",
|
|
23443
|
-
uberParent: "
|
|
23582
|
+
uberParent: "TabularSource",
|
|
23444
23583
|
additionalProperties: { type: { name: "Object" } },
|
|
23445
|
-
polymorphicDiscriminator:
|
|
23584
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23446
23585
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23447
23586
|
serializedName: "query",
|
|
23448
23587
|
type: {
|
|
@@ -23456,9 +23595,9 @@ const HubspotSource = {
|
|
|
23456
23595
|
type: {
|
|
23457
23596
|
name: "Composite",
|
|
23458
23597
|
className: "HubspotSource",
|
|
23459
|
-
uberParent: "
|
|
23598
|
+
uberParent: "TabularSource",
|
|
23460
23599
|
additionalProperties: { type: { name: "Object" } },
|
|
23461
|
-
polymorphicDiscriminator:
|
|
23600
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23462
23601
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23463
23602
|
serializedName: "query",
|
|
23464
23603
|
type: {
|
|
@@ -23472,9 +23611,9 @@ const ImpalaSource = {
|
|
|
23472
23611
|
type: {
|
|
23473
23612
|
name: "Composite",
|
|
23474
23613
|
className: "ImpalaSource",
|
|
23475
|
-
uberParent: "
|
|
23614
|
+
uberParent: "TabularSource",
|
|
23476
23615
|
additionalProperties: { type: { name: "Object" } },
|
|
23477
|
-
polymorphicDiscriminator:
|
|
23616
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23478
23617
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23479
23618
|
serializedName: "query",
|
|
23480
23619
|
type: {
|
|
@@ -23488,9 +23627,9 @@ const JiraSource = {
|
|
|
23488
23627
|
type: {
|
|
23489
23628
|
name: "Composite",
|
|
23490
23629
|
className: "JiraSource",
|
|
23491
|
-
uberParent: "
|
|
23630
|
+
uberParent: "TabularSource",
|
|
23492
23631
|
additionalProperties: { type: { name: "Object" } },
|
|
23493
|
-
polymorphicDiscriminator:
|
|
23632
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23494
23633
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23495
23634
|
serializedName: "query",
|
|
23496
23635
|
type: {
|
|
@@ -23504,9 +23643,9 @@ const MagentoSource = {
|
|
|
23504
23643
|
type: {
|
|
23505
23644
|
name: "Composite",
|
|
23506
23645
|
className: "MagentoSource",
|
|
23507
|
-
uberParent: "
|
|
23646
|
+
uberParent: "TabularSource",
|
|
23508
23647
|
additionalProperties: { type: { name: "Object" } },
|
|
23509
|
-
polymorphicDiscriminator:
|
|
23648
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23510
23649
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23511
23650
|
serializedName: "query",
|
|
23512
23651
|
type: {
|
|
@@ -23520,9 +23659,9 @@ const MariaDBSource = {
|
|
|
23520
23659
|
type: {
|
|
23521
23660
|
name: "Composite",
|
|
23522
23661
|
className: "MariaDBSource",
|
|
23523
|
-
uberParent: "
|
|
23662
|
+
uberParent: "TabularSource",
|
|
23524
23663
|
additionalProperties: { type: { name: "Object" } },
|
|
23525
|
-
polymorphicDiscriminator:
|
|
23664
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23526
23665
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23527
23666
|
serializedName: "query",
|
|
23528
23667
|
type: {
|
|
@@ -23536,9 +23675,9 @@ const AzureMariaDBSource = {
|
|
|
23536
23675
|
type: {
|
|
23537
23676
|
name: "Composite",
|
|
23538
23677
|
className: "AzureMariaDBSource",
|
|
23539
|
-
uberParent: "
|
|
23678
|
+
uberParent: "TabularSource",
|
|
23540
23679
|
additionalProperties: { type: { name: "Object" } },
|
|
23541
|
-
polymorphicDiscriminator:
|
|
23680
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23542
23681
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23543
23682
|
serializedName: "query",
|
|
23544
23683
|
type: {
|
|
@@ -23552,9 +23691,9 @@ const MarketoSource = {
|
|
|
23552
23691
|
type: {
|
|
23553
23692
|
name: "Composite",
|
|
23554
23693
|
className: "MarketoSource",
|
|
23555
|
-
uberParent: "
|
|
23694
|
+
uberParent: "TabularSource",
|
|
23556
23695
|
additionalProperties: { type: { name: "Object" } },
|
|
23557
|
-
polymorphicDiscriminator:
|
|
23696
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23558
23697
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23559
23698
|
serializedName: "query",
|
|
23560
23699
|
type: {
|
|
@@ -23568,9 +23707,9 @@ const PaypalSource = {
|
|
|
23568
23707
|
type: {
|
|
23569
23708
|
name: "Composite",
|
|
23570
23709
|
className: "PaypalSource",
|
|
23571
|
-
uberParent: "
|
|
23710
|
+
uberParent: "TabularSource",
|
|
23572
23711
|
additionalProperties: { type: { name: "Object" } },
|
|
23573
|
-
polymorphicDiscriminator:
|
|
23712
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23574
23713
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23575
23714
|
serializedName: "query",
|
|
23576
23715
|
type: {
|
|
@@ -23584,9 +23723,9 @@ const PhoenixSource = {
|
|
|
23584
23723
|
type: {
|
|
23585
23724
|
name: "Composite",
|
|
23586
23725
|
className: "PhoenixSource",
|
|
23587
|
-
uberParent: "
|
|
23726
|
+
uberParent: "TabularSource",
|
|
23588
23727
|
additionalProperties: { type: { name: "Object" } },
|
|
23589
|
-
polymorphicDiscriminator:
|
|
23728
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23590
23729
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23591
23730
|
serializedName: "query",
|
|
23592
23731
|
type: {
|
|
@@ -23600,9 +23739,9 @@ const PrestoSource = {
|
|
|
23600
23739
|
type: {
|
|
23601
23740
|
name: "Composite",
|
|
23602
23741
|
className: "PrestoSource",
|
|
23603
|
-
uberParent: "
|
|
23742
|
+
uberParent: "TabularSource",
|
|
23604
23743
|
additionalProperties: { type: { name: "Object" } },
|
|
23605
|
-
polymorphicDiscriminator:
|
|
23744
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23606
23745
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23607
23746
|
serializedName: "query",
|
|
23608
23747
|
type: {
|
|
@@ -23616,9 +23755,9 @@ const QuickBooksSource = {
|
|
|
23616
23755
|
type: {
|
|
23617
23756
|
name: "Composite",
|
|
23618
23757
|
className: "QuickBooksSource",
|
|
23619
|
-
uberParent: "
|
|
23758
|
+
uberParent: "TabularSource",
|
|
23620
23759
|
additionalProperties: { type: { name: "Object" } },
|
|
23621
|
-
polymorphicDiscriminator:
|
|
23760
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23622
23761
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23623
23762
|
serializedName: "query",
|
|
23624
23763
|
type: {
|
|
@@ -23632,9 +23771,9 @@ const ServiceNowSource = {
|
|
|
23632
23771
|
type: {
|
|
23633
23772
|
name: "Composite",
|
|
23634
23773
|
className: "ServiceNowSource",
|
|
23635
|
-
uberParent: "
|
|
23774
|
+
uberParent: "TabularSource",
|
|
23636
23775
|
additionalProperties: { type: { name: "Object" } },
|
|
23637
|
-
polymorphicDiscriminator:
|
|
23776
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23638
23777
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23639
23778
|
serializedName: "query",
|
|
23640
23779
|
type: {
|
|
@@ -23648,9 +23787,9 @@ const ShopifySource = {
|
|
|
23648
23787
|
type: {
|
|
23649
23788
|
name: "Composite",
|
|
23650
23789
|
className: "ShopifySource",
|
|
23651
|
-
uberParent: "
|
|
23790
|
+
uberParent: "TabularSource",
|
|
23652
23791
|
additionalProperties: { type: { name: "Object" } },
|
|
23653
|
-
polymorphicDiscriminator:
|
|
23792
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23654
23793
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23655
23794
|
serializedName: "query",
|
|
23656
23795
|
type: {
|
|
@@ -23664,9 +23803,9 @@ const SparkSource = {
|
|
|
23664
23803
|
type: {
|
|
23665
23804
|
name: "Composite",
|
|
23666
23805
|
className: "SparkSource",
|
|
23667
|
-
uberParent: "
|
|
23806
|
+
uberParent: "TabularSource",
|
|
23668
23807
|
additionalProperties: { type: { name: "Object" } },
|
|
23669
|
-
polymorphicDiscriminator:
|
|
23808
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23670
23809
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23671
23810
|
serializedName: "query",
|
|
23672
23811
|
type: {
|
|
@@ -23680,9 +23819,9 @@ const SquareSource = {
|
|
|
23680
23819
|
type: {
|
|
23681
23820
|
name: "Composite",
|
|
23682
23821
|
className: "SquareSource",
|
|
23683
|
-
uberParent: "
|
|
23822
|
+
uberParent: "TabularSource",
|
|
23684
23823
|
additionalProperties: { type: { name: "Object" } },
|
|
23685
|
-
polymorphicDiscriminator:
|
|
23824
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23686
23825
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23687
23826
|
serializedName: "query",
|
|
23688
23827
|
type: {
|
|
@@ -23696,9 +23835,9 @@ const XeroSource = {
|
|
|
23696
23835
|
type: {
|
|
23697
23836
|
name: "Composite",
|
|
23698
23837
|
className: "XeroSource",
|
|
23699
|
-
uberParent: "
|
|
23838
|
+
uberParent: "TabularSource",
|
|
23700
23839
|
additionalProperties: { type: { name: "Object" } },
|
|
23701
|
-
polymorphicDiscriminator:
|
|
23840
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23702
23841
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23703
23842
|
serializedName: "query",
|
|
23704
23843
|
type: {
|
|
@@ -23712,9 +23851,9 @@ const ZohoSource = {
|
|
|
23712
23851
|
type: {
|
|
23713
23852
|
name: "Composite",
|
|
23714
23853
|
className: "ZohoSource",
|
|
23715
|
-
uberParent: "
|
|
23854
|
+
uberParent: "TabularSource",
|
|
23716
23855
|
additionalProperties: { type: { name: "Object" } },
|
|
23717
|
-
polymorphicDiscriminator:
|
|
23856
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23718
23857
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23719
23858
|
serializedName: "query",
|
|
23720
23859
|
type: {
|
|
@@ -23728,9 +23867,9 @@ const NetezzaSource = {
|
|
|
23728
23867
|
type: {
|
|
23729
23868
|
name: "Composite",
|
|
23730
23869
|
className: "NetezzaSource",
|
|
23731
|
-
uberParent: "
|
|
23870
|
+
uberParent: "TabularSource",
|
|
23732
23871
|
additionalProperties: { type: { name: "Object" } },
|
|
23733
|
-
polymorphicDiscriminator:
|
|
23872
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23734
23873
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23735
23874
|
serializedName: "query",
|
|
23736
23875
|
type: {
|
|
@@ -23755,9 +23894,9 @@ const VerticaSource = {
|
|
|
23755
23894
|
type: {
|
|
23756
23895
|
name: "Composite",
|
|
23757
23896
|
className: "VerticaSource",
|
|
23758
|
-
uberParent: "
|
|
23897
|
+
uberParent: "TabularSource",
|
|
23759
23898
|
additionalProperties: { type: { name: "Object" } },
|
|
23760
|
-
polymorphicDiscriminator:
|
|
23899
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23761
23900
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23762
23901
|
serializedName: "query",
|
|
23763
23902
|
type: {
|
|
@@ -23771,9 +23910,9 @@ const SalesforceMarketingCloudSource = {
|
|
|
23771
23910
|
type: {
|
|
23772
23911
|
name: "Composite",
|
|
23773
23912
|
className: "SalesforceMarketingCloudSource",
|
|
23774
|
-
uberParent: "
|
|
23913
|
+
uberParent: "TabularSource",
|
|
23775
23914
|
additionalProperties: { type: { name: "Object" } },
|
|
23776
|
-
polymorphicDiscriminator:
|
|
23915
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23777
23916
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23778
23917
|
serializedName: "query",
|
|
23779
23918
|
type: {
|
|
@@ -23787,9 +23926,9 @@ const ResponsysSource = {
|
|
|
23787
23926
|
type: {
|
|
23788
23927
|
name: "Composite",
|
|
23789
23928
|
className: "ResponsysSource",
|
|
23790
|
-
uberParent: "
|
|
23929
|
+
uberParent: "TabularSource",
|
|
23791
23930
|
additionalProperties: { type: { name: "Object" } },
|
|
23792
|
-
polymorphicDiscriminator:
|
|
23931
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23793
23932
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23794
23933
|
serializedName: "query",
|
|
23795
23934
|
type: {
|
|
@@ -23803,9 +23942,9 @@ const DynamicsAXSource = {
|
|
|
23803
23942
|
type: {
|
|
23804
23943
|
name: "Composite",
|
|
23805
23944
|
className: "DynamicsAXSource",
|
|
23806
|
-
uberParent: "
|
|
23945
|
+
uberParent: "TabularSource",
|
|
23807
23946
|
additionalProperties: { type: { name: "Object" } },
|
|
23808
|
-
polymorphicDiscriminator:
|
|
23947
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23809
23948
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23810
23949
|
serializedName: "query",
|
|
23811
23950
|
type: {
|
|
@@ -23824,9 +23963,9 @@ const OracleServiceCloudSource = {
|
|
|
23824
23963
|
type: {
|
|
23825
23964
|
name: "Composite",
|
|
23826
23965
|
className: "OracleServiceCloudSource",
|
|
23827
|
-
uberParent: "
|
|
23966
|
+
uberParent: "TabularSource",
|
|
23828
23967
|
additionalProperties: { type: { name: "Object" } },
|
|
23829
|
-
polymorphicDiscriminator:
|
|
23968
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23830
23969
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23831
23970
|
serializedName: "query",
|
|
23832
23971
|
type: {
|
|
@@ -23840,9 +23979,9 @@ const GoogleAdWordsSource = {
|
|
|
23840
23979
|
type: {
|
|
23841
23980
|
name: "Composite",
|
|
23842
23981
|
className: "GoogleAdWordsSource",
|
|
23843
|
-
uberParent: "
|
|
23982
|
+
uberParent: "TabularSource",
|
|
23844
23983
|
additionalProperties: { type: { name: "Object" } },
|
|
23845
|
-
polymorphicDiscriminator:
|
|
23984
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23846
23985
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23847
23986
|
serializedName: "query",
|
|
23848
23987
|
type: {
|
|
@@ -23856,9 +23995,9 @@ const AmazonRedshiftSource = {
|
|
|
23856
23995
|
type: {
|
|
23857
23996
|
name: "Composite",
|
|
23858
23997
|
className: "AmazonRedshiftSource",
|
|
23859
|
-
uberParent: "
|
|
23998
|
+
uberParent: "TabularSource",
|
|
23860
23999
|
additionalProperties: { type: { name: "Object" } },
|
|
23861
|
-
polymorphicDiscriminator:
|
|
24000
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23862
24001
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23863
24002
|
serializedName: "query",
|
|
23864
24003
|
type: {
|
|
@@ -23878,8 +24017,8 @@ const TumblingWindowTriggerDependencyReference = {
|
|
|
23878
24017
|
type: {
|
|
23879
24018
|
name: "Composite",
|
|
23880
24019
|
className: "TumblingWindowTriggerDependencyReference",
|
|
23881
|
-
uberParent: "
|
|
23882
|
-
polymorphicDiscriminator:
|
|
24020
|
+
uberParent: "TriggerDependencyReference",
|
|
24021
|
+
polymorphicDiscriminator: TriggerDependencyReference.type.polymorphicDiscriminator,
|
|
23883
24022
|
modelProperties: Object.assign(Object.assign({}, TriggerDependencyReference.type.modelProperties), { offset: {
|
|
23884
24023
|
constraints: {
|
|
23885
24024
|
Pattern: new RegExp("-?((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))"),
|
|
@@ -24355,6 +24494,7 @@ let discriminators = {
|
|
|
24355
24494
|
"LinkedService.Snowflake": SnowflakeLinkedService,
|
|
24356
24495
|
"LinkedService.SharePointOnlineList": SharePointOnlineListLinkedService,
|
|
24357
24496
|
"LinkedService.AzureSynapseArtifacts": AzureSynapseArtifactsLinkedService,
|
|
24497
|
+
"LinkedService.PowerBIWorkspace": PowerBIWorkspaceLinkedService,
|
|
24358
24498
|
"Activity.Container": ControlActivity,
|
|
24359
24499
|
"Activity.Execution": ExecutionActivity,
|
|
24360
24500
|
"Activity.SqlPoolStoredProcedure": SqlPoolStoredProcedureActivity,
|
|
@@ -24493,108 +24633,108 @@ let discriminators = {
|
|
|
24493
24633
|
"DependencyReference.SelfDependencyTumblingWindowTriggerReference": SelfDependencyTumblingWindowTriggerReference,
|
|
24494
24634
|
"LinkedIntegrationRuntimeType.Key": LinkedIntegrationRuntimeKeyAuthorization,
|
|
24495
24635
|
"LinkedIntegrationRuntimeType.RBAC": LinkedIntegrationRuntimeRbacAuthorization,
|
|
24496
|
-
"
|
|
24497
|
-
"
|
|
24498
|
-
"
|
|
24499
|
-
"
|
|
24500
|
-
"
|
|
24501
|
-
"
|
|
24502
|
-
"
|
|
24503
|
-
"
|
|
24504
|
-
"
|
|
24505
|
-
"
|
|
24506
|
-
"
|
|
24507
|
-
"
|
|
24508
|
-
"
|
|
24509
|
-
"
|
|
24510
|
-
"
|
|
24511
|
-
"
|
|
24512
|
-
"
|
|
24513
|
-
"
|
|
24514
|
-
"
|
|
24515
|
-
"
|
|
24516
|
-
"
|
|
24517
|
-
"
|
|
24518
|
-
"
|
|
24519
|
-
"
|
|
24520
|
-
"
|
|
24521
|
-
"
|
|
24522
|
-
"
|
|
24523
|
-
"
|
|
24524
|
-
"
|
|
24525
|
-
"
|
|
24526
|
-
"
|
|
24527
|
-
"
|
|
24528
|
-
"
|
|
24529
|
-
"
|
|
24530
|
-
"
|
|
24531
|
-
"
|
|
24532
|
-
"
|
|
24533
|
-
"
|
|
24534
|
-
"
|
|
24535
|
-
"
|
|
24536
|
-
"
|
|
24537
|
-
"
|
|
24538
|
-
"
|
|
24539
|
-
"
|
|
24540
|
-
"
|
|
24541
|
-
"
|
|
24542
|
-
"
|
|
24543
|
-
"
|
|
24544
|
-
"
|
|
24545
|
-
"
|
|
24546
|
-
"
|
|
24547
|
-
"
|
|
24548
|
-
"
|
|
24549
|
-
"
|
|
24550
|
-
"
|
|
24551
|
-
"
|
|
24552
|
-
"
|
|
24553
|
-
"
|
|
24554
|
-
"
|
|
24555
|
-
"
|
|
24556
|
-
"
|
|
24557
|
-
"
|
|
24558
|
-
"
|
|
24559
|
-
"
|
|
24560
|
-
"
|
|
24561
|
-
"
|
|
24562
|
-
"
|
|
24563
|
-
"
|
|
24564
|
-
"
|
|
24565
|
-
"
|
|
24566
|
-
"
|
|
24567
|
-
"
|
|
24568
|
-
"
|
|
24569
|
-
"
|
|
24570
|
-
"
|
|
24571
|
-
"
|
|
24572
|
-
"
|
|
24573
|
-
"
|
|
24574
|
-
"
|
|
24575
|
-
"
|
|
24576
|
-
"
|
|
24577
|
-
"
|
|
24578
|
-
"
|
|
24579
|
-
"
|
|
24580
|
-
"
|
|
24581
|
-
"
|
|
24582
|
-
"
|
|
24583
|
-
"
|
|
24584
|
-
"
|
|
24585
|
-
"
|
|
24586
|
-
"
|
|
24587
|
-
"
|
|
24588
|
-
"
|
|
24589
|
-
"
|
|
24590
|
-
"
|
|
24591
|
-
"
|
|
24592
|
-
"
|
|
24593
|
-
"
|
|
24594
|
-
"
|
|
24595
|
-
"
|
|
24596
|
-
"
|
|
24597
|
-
"
|
|
24636
|
+
"ControlActivity.ExecutePipeline": ExecutePipelineActivity,
|
|
24637
|
+
"ControlActivity.IfCondition": IfConditionActivity,
|
|
24638
|
+
"ControlActivity.Switch": SwitchActivity,
|
|
24639
|
+
"ControlActivity.ForEach": ForEachActivity,
|
|
24640
|
+
"ControlActivity.Wait": WaitActivity,
|
|
24641
|
+
"ControlActivity.Fail": FailActivity,
|
|
24642
|
+
"ControlActivity.Until": UntilActivity,
|
|
24643
|
+
"ControlActivity.Validation": ValidationActivity,
|
|
24644
|
+
"ControlActivity.Filter": FilterActivity,
|
|
24645
|
+
"ControlActivity.SetVariable": SetVariableActivity,
|
|
24646
|
+
"ControlActivity.AppendVariable": AppendVariableActivity,
|
|
24647
|
+
"ControlActivity.WebHook": WebHookActivity,
|
|
24648
|
+
"ExecutionActivity.Copy": CopyActivity,
|
|
24649
|
+
"ExecutionActivity.HDInsightHive": HDInsightHiveActivity,
|
|
24650
|
+
"ExecutionActivity.HDInsightPig": HDInsightPigActivity,
|
|
24651
|
+
"ExecutionActivity.HDInsightMapReduce": HDInsightMapReduceActivity,
|
|
24652
|
+
"ExecutionActivity.HDInsightStreaming": HDInsightStreamingActivity,
|
|
24653
|
+
"ExecutionActivity.HDInsightSpark": HDInsightSparkActivity,
|
|
24654
|
+
"ExecutionActivity.ExecuteSSISPackage": ExecuteSsisPackageActivity,
|
|
24655
|
+
"ExecutionActivity.Custom": CustomActivity,
|
|
24656
|
+
"ExecutionActivity.SqlServerStoredProcedure": SqlServerStoredProcedureActivity,
|
|
24657
|
+
"ExecutionActivity.Delete": DeleteActivity,
|
|
24658
|
+
"ExecutionActivity.AzureDataExplorerCommand": AzureDataExplorerCommandActivity,
|
|
24659
|
+
"ExecutionActivity.Lookup": LookupActivity,
|
|
24660
|
+
"ExecutionActivity.WebActivity": WebActivity,
|
|
24661
|
+
"ExecutionActivity.GetMetadata": GetMetadataActivity,
|
|
24662
|
+
"ExecutionActivity.AzureMLBatchExecution": AzureMLBatchExecutionActivity,
|
|
24663
|
+
"ExecutionActivity.AzureMLUpdateResource": AzureMLUpdateResourceActivity,
|
|
24664
|
+
"ExecutionActivity.AzureMLExecutePipeline": AzureMLExecutePipelineActivity,
|
|
24665
|
+
"ExecutionActivity.DataLakeAnalyticsU-SQL": DataLakeAnalyticsUsqlActivity,
|
|
24666
|
+
"ExecutionActivity.DatabricksNotebook": DatabricksNotebookActivity,
|
|
24667
|
+
"ExecutionActivity.DatabricksSparkJar": DatabricksSparkJarActivity,
|
|
24668
|
+
"ExecutionActivity.DatabricksSparkPython": DatabricksSparkPythonActivity,
|
|
24669
|
+
"ExecutionActivity.AzureFunctionActivity": AzureFunctionActivity,
|
|
24670
|
+
"ExecutionActivity.ExecuteDataFlow": ExecuteDataFlowActivity,
|
|
24671
|
+
"ExecutionActivity.Script": ScriptActivity,
|
|
24672
|
+
"ExecutionActivity.SynapseNotebook": SynapseNotebookActivity,
|
|
24673
|
+
"ExecutionActivity.SparkJob": SynapseSparkJobDefinitionActivity,
|
|
24674
|
+
"MultiplePipelineTrigger.ScheduleTrigger": ScheduleTrigger,
|
|
24675
|
+
"MultiplePipelineTrigger.BlobTrigger": BlobTrigger,
|
|
24676
|
+
"MultiplePipelineTrigger.BlobEventsTrigger": BlobEventsTrigger,
|
|
24677
|
+
"MultiplePipelineTrigger.CustomEventsTrigger": CustomEventsTrigger,
|
|
24678
|
+
"TabularSource.AzureTableSource": AzureTableSource,
|
|
24679
|
+
"TabularSource.InformixSource": InformixSource,
|
|
24680
|
+
"TabularSource.Db2Source": Db2Source,
|
|
24681
|
+
"TabularSource.OdbcSource": OdbcSource,
|
|
24682
|
+
"TabularSource.MySqlSource": MySqlSource,
|
|
24683
|
+
"TabularSource.PostgreSqlSource": PostgreSqlSource,
|
|
24684
|
+
"TabularSource.SybaseSource": SybaseSource,
|
|
24685
|
+
"TabularSource.SapBwSource": SapBwSource,
|
|
24686
|
+
"TabularSource.SalesforceSource": SalesforceSource,
|
|
24687
|
+
"TabularSource.SapCloudForCustomerSource": SapCloudForCustomerSource,
|
|
24688
|
+
"TabularSource.SapEccSource": SapEccSource,
|
|
24689
|
+
"TabularSource.SapHanaSource": SapHanaSource,
|
|
24690
|
+
"TabularSource.SapOpenHubSource": SapOpenHubSource,
|
|
24691
|
+
"TabularSource.SapOdpSource": SapOdpSource,
|
|
24692
|
+
"TabularSource.SapTableSource": SapTableSource,
|
|
24693
|
+
"TabularSource.SqlSource": SqlSource,
|
|
24694
|
+
"TabularSource.SqlServerSource": SqlServerSource,
|
|
24695
|
+
"TabularSource.AmazonRdsForSqlServerSource": AmazonRdsForSqlServerSource,
|
|
24696
|
+
"TabularSource.AzureSqlSource": AzureSqlSource,
|
|
24697
|
+
"TabularSource.SqlMISource": SqlMISource,
|
|
24698
|
+
"TabularSource.SqlDWSource": SqlDWSource,
|
|
24699
|
+
"TabularSource.AzureMySqlSource": AzureMySqlSource,
|
|
24700
|
+
"TabularSource.TeradataSource": TeradataSource,
|
|
24701
|
+
"TabularSource.CassandraSource": CassandraSource,
|
|
24702
|
+
"TabularSource.AmazonMWSSource": AmazonMWSSource,
|
|
24703
|
+
"TabularSource.AzurePostgreSqlSource": AzurePostgreSqlSource,
|
|
24704
|
+
"TabularSource.ConcurSource": ConcurSource,
|
|
24705
|
+
"TabularSource.CouchbaseSource": CouchbaseSource,
|
|
24706
|
+
"TabularSource.DrillSource": DrillSource,
|
|
24707
|
+
"TabularSource.EloquaSource": EloquaSource,
|
|
24708
|
+
"TabularSource.GoogleBigQuerySource": GoogleBigQuerySource,
|
|
24709
|
+
"TabularSource.GreenplumSource": GreenplumSource,
|
|
24710
|
+
"TabularSource.HBaseSource": HBaseSource,
|
|
24711
|
+
"TabularSource.HiveSource": HiveSource,
|
|
24712
|
+
"TabularSource.HubspotSource": HubspotSource,
|
|
24713
|
+
"TabularSource.ImpalaSource": ImpalaSource,
|
|
24714
|
+
"TabularSource.JiraSource": JiraSource,
|
|
24715
|
+
"TabularSource.MagentoSource": MagentoSource,
|
|
24716
|
+
"TabularSource.MariaDBSource": MariaDBSource,
|
|
24717
|
+
"TabularSource.AzureMariaDBSource": AzureMariaDBSource,
|
|
24718
|
+
"TabularSource.MarketoSource": MarketoSource,
|
|
24719
|
+
"TabularSource.PaypalSource": PaypalSource,
|
|
24720
|
+
"TabularSource.PhoenixSource": PhoenixSource,
|
|
24721
|
+
"TabularSource.PrestoSource": PrestoSource,
|
|
24722
|
+
"TabularSource.QuickBooksSource": QuickBooksSource,
|
|
24723
|
+
"TabularSource.ServiceNowSource": ServiceNowSource,
|
|
24724
|
+
"TabularSource.ShopifySource": ShopifySource,
|
|
24725
|
+
"TabularSource.SparkSource": SparkSource,
|
|
24726
|
+
"TabularSource.SquareSource": SquareSource,
|
|
24727
|
+
"TabularSource.XeroSource": XeroSource,
|
|
24728
|
+
"TabularSource.ZohoSource": ZohoSource,
|
|
24729
|
+
"TabularSource.NetezzaSource": NetezzaSource,
|
|
24730
|
+
"TabularSource.VerticaSource": VerticaSource,
|
|
24731
|
+
"TabularSource.SalesforceMarketingCloudSource": SalesforceMarketingCloudSource,
|
|
24732
|
+
"TabularSource.ResponsysSource": ResponsysSource,
|
|
24733
|
+
"TabularSource.DynamicsAXSource": DynamicsAXSource,
|
|
24734
|
+
"TabularSource.OracleServiceCloudSource": OracleServiceCloudSource,
|
|
24735
|
+
"TabularSource.GoogleAdWordsSource": GoogleAdWordsSource,
|
|
24736
|
+
"TabularSource.AmazonRedshiftSource": AmazonRedshiftSource,
|
|
24737
|
+
"TriggerDependencyReference.TumblingWindowTriggerDependencyReference": TumblingWindowTriggerDependencyReference
|
|
24598
24738
|
};
|
|
24599
24739
|
|
|
24600
24740
|
var Mappers = /*#__PURE__*/Object.freeze({
|
|
@@ -24827,6 +24967,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
24827
24967
|
ScriptActivityScriptBlock: ScriptActivityScriptBlock,
|
|
24828
24968
|
ScriptActivityParameter: ScriptActivityParameter,
|
|
24829
24969
|
ScriptActivityTypePropertiesLogSettings: ScriptActivityTypePropertiesLogSettings,
|
|
24970
|
+
SparkConfigurationParametrizationReference: SparkConfigurationParametrizationReference,
|
|
24830
24971
|
ScheduleTriggerRecurrence: ScheduleTriggerRecurrence,
|
|
24831
24972
|
RecurrenceSchedule: RecurrenceSchedule,
|
|
24832
24973
|
RecurrenceScheduleOccurrence: RecurrenceScheduleOccurrence,
|
|
@@ -25064,6 +25205,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
25064
25205
|
SnowflakeLinkedService: SnowflakeLinkedService,
|
|
25065
25206
|
SharePointOnlineListLinkedService: SharePointOnlineListLinkedService,
|
|
25066
25207
|
AzureSynapseArtifactsLinkedService: AzureSynapseArtifactsLinkedService,
|
|
25208
|
+
PowerBIWorkspaceLinkedService: PowerBIWorkspaceLinkedService,
|
|
25067
25209
|
ControlActivity: ControlActivity,
|
|
25068
25210
|
ExecutionActivity: ExecutionActivity,
|
|
25069
25211
|
SqlPoolStoredProcedureActivity: SqlPoolStoredProcedureActivity,
|
|
@@ -25358,7 +25500,7 @@ const endpoint = {
|
|
|
25358
25500
|
const apiVersion = {
|
|
25359
25501
|
parameterPath: "apiVersion",
|
|
25360
25502
|
mapper: {
|
|
25361
|
-
defaultValue: "2022-
|
|
25503
|
+
defaultValue: "2022-12-01-preview",
|
|
25362
25504
|
isConstant: true,
|
|
25363
25505
|
serializedName: "api-version",
|
|
25364
25506
|
type: {
|
|
@@ -25887,8 +26029,8 @@ class LinkConnectionOperationsImpl {
|
|
|
25887
26029
|
* List link connections
|
|
25888
26030
|
* @param options The options parameters.
|
|
25889
26031
|
*/
|
|
25890
|
-
|
|
25891
|
-
const iter = this.
|
|
26032
|
+
listByWorkspace(options) {
|
|
26033
|
+
const iter = this.listByWorkspacePagingAll(options);
|
|
25892
26034
|
return {
|
|
25893
26035
|
next() {
|
|
25894
26036
|
return iter.next();
|
|
@@ -25896,28 +26038,39 @@ class LinkConnectionOperationsImpl {
|
|
|
25896
26038
|
[Symbol.asyncIterator]() {
|
|
25897
26039
|
return this;
|
|
25898
26040
|
},
|
|
25899
|
-
byPage: () => {
|
|
25900
|
-
|
|
26041
|
+
byPage: (settings) => {
|
|
26042
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
26043
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
26044
|
+
}
|
|
26045
|
+
return this.listByWorkspacePagingPage(options, settings);
|
|
25901
26046
|
}
|
|
25902
26047
|
};
|
|
25903
26048
|
}
|
|
25904
|
-
|
|
25905
|
-
return tslib.__asyncGenerator(this, arguments, function*
|
|
25906
|
-
let result
|
|
25907
|
-
|
|
25908
|
-
|
|
26049
|
+
listByWorkspacePagingPage(options, settings) {
|
|
26050
|
+
return tslib.__asyncGenerator(this, arguments, function* listByWorkspacePagingPage_1() {
|
|
26051
|
+
let result;
|
|
26052
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
26053
|
+
if (!continuationToken) {
|
|
26054
|
+
result = yield tslib.__await(this._listByWorkspace(options));
|
|
26055
|
+
let page = result.value || [];
|
|
26056
|
+
continuationToken = result.nextLink;
|
|
26057
|
+
setContinuationToken(page, continuationToken);
|
|
26058
|
+
yield yield tslib.__await(page);
|
|
26059
|
+
}
|
|
25909
26060
|
while (continuationToken) {
|
|
25910
|
-
result = yield tslib.__await(this.
|
|
26061
|
+
result = yield tslib.__await(this._listByWorkspaceNext(continuationToken, options));
|
|
25911
26062
|
continuationToken = result.nextLink;
|
|
25912
|
-
|
|
26063
|
+
let page = result.value || [];
|
|
26064
|
+
setContinuationToken(page, continuationToken);
|
|
26065
|
+
yield yield tslib.__await(page);
|
|
25913
26066
|
}
|
|
25914
26067
|
});
|
|
25915
26068
|
}
|
|
25916
|
-
|
|
25917
|
-
return tslib.__asyncGenerator(this, arguments, function*
|
|
26069
|
+
listByWorkspacePagingAll(options) {
|
|
26070
|
+
return tslib.__asyncGenerator(this, arguments, function* listByWorkspacePagingAll_1() {
|
|
25918
26071
|
var e_1, _a;
|
|
25919
26072
|
try {
|
|
25920
|
-
for (var _b = tslib.__asyncValues(this.
|
|
26073
|
+
for (var _b = tslib.__asyncValues(this.listByWorkspacePagingPage(options)), _c; _c = yield tslib.__await(_b.next()), !_c.done;) {
|
|
25921
26074
|
const page = _c.value;
|
|
25922
26075
|
yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(page)));
|
|
25923
26076
|
}
|
|
@@ -25935,9 +26088,9 @@ class LinkConnectionOperationsImpl {
|
|
|
25935
26088
|
* List link connections
|
|
25936
26089
|
* @param options The options parameters.
|
|
25937
26090
|
*/
|
|
25938
|
-
async
|
|
25939
|
-
return tracingClient.withSpan("ArtifactsClient.
|
|
25940
|
-
return this.client.sendOperationRequest({ options },
|
|
26091
|
+
async _listByWorkspace(options) {
|
|
26092
|
+
return tracingClient.withSpan("ArtifactsClient._listByWorkspace", options !== null && options !== void 0 ? options : {}, async (options) => {
|
|
26093
|
+
return this.client.sendOperationRequest({ options }, listByWorkspaceOperationSpec);
|
|
25941
26094
|
});
|
|
25942
26095
|
}
|
|
25943
26096
|
/**
|
|
@@ -25946,9 +26099,9 @@ class LinkConnectionOperationsImpl {
|
|
|
25946
26099
|
* @param linkConnection Link connection resource definition
|
|
25947
26100
|
* @param options The options parameters.
|
|
25948
26101
|
*/
|
|
25949
|
-
async
|
|
25950
|
-
return tracingClient.withSpan("ArtifactsClient.
|
|
25951
|
-
return this.client.sendOperationRequest({ linkConnectionName, linkConnection, options },
|
|
26102
|
+
async createOrUpdate(linkConnectionName, linkConnection, options) {
|
|
26103
|
+
return tracingClient.withSpan("ArtifactsClient.createOrUpdate", options !== null && options !== void 0 ? options : {}, async (options) => {
|
|
26104
|
+
return this.client.sendOperationRequest({ linkConnectionName, linkConnection, options }, createOrUpdateOperationSpec$1);
|
|
25952
26105
|
});
|
|
25953
26106
|
}
|
|
25954
26107
|
/**
|
|
@@ -25956,9 +26109,9 @@ class LinkConnectionOperationsImpl {
|
|
|
25956
26109
|
* @param linkConnectionName The link connection name
|
|
25957
26110
|
* @param options The options parameters.
|
|
25958
26111
|
*/
|
|
25959
|
-
async
|
|
25960
|
-
return tracingClient.withSpan("ArtifactsClient.
|
|
25961
|
-
return this.client.sendOperationRequest({ linkConnectionName, options },
|
|
26112
|
+
async get(linkConnectionName, options) {
|
|
26113
|
+
return tracingClient.withSpan("ArtifactsClient.get", options !== null && options !== void 0 ? options : {}, async (options) => {
|
|
26114
|
+
return this.client.sendOperationRequest({ linkConnectionName, options }, getOperationSpec$6);
|
|
25962
26115
|
});
|
|
25963
26116
|
}
|
|
25964
26117
|
/**
|
|
@@ -25966,9 +26119,9 @@ class LinkConnectionOperationsImpl {
|
|
|
25966
26119
|
* @param linkConnectionName The link connection name
|
|
25967
26120
|
* @param options The options parameters.
|
|
25968
26121
|
*/
|
|
25969
|
-
async
|
|
25970
|
-
return tracingClient.withSpan("ArtifactsClient.
|
|
25971
|
-
return this.client.sendOperationRequest({ linkConnectionName, options },
|
|
26122
|
+
async delete(linkConnectionName, options) {
|
|
26123
|
+
return tracingClient.withSpan("ArtifactsClient.delete", options !== null && options !== void 0 ? options : {}, async (options) => {
|
|
26124
|
+
return this.client.sendOperationRequest({ linkConnectionName, options }, deleteOperationSpec$2);
|
|
25972
26125
|
});
|
|
25973
26126
|
}
|
|
25974
26127
|
/**
|
|
@@ -25983,7 +26136,8 @@ class LinkConnectionOperationsImpl {
|
|
|
25983
26136
|
});
|
|
25984
26137
|
}
|
|
25985
26138
|
/**
|
|
25986
|
-
* Start a link connection
|
|
26139
|
+
* Start a link connection. It may take a few minutes from Starting to Running, monitor the status with
|
|
26140
|
+
* LinkConnection_GetDetailedStatus.
|
|
25987
26141
|
* @param linkConnectionName The link connection name
|
|
25988
26142
|
* @param options The options parameters.
|
|
25989
26143
|
*/
|
|
@@ -25993,7 +26147,8 @@ class LinkConnectionOperationsImpl {
|
|
|
25993
26147
|
});
|
|
25994
26148
|
}
|
|
25995
26149
|
/**
|
|
25996
|
-
* Stop a link connection
|
|
26150
|
+
* Stop a link connection. It may take a few minutes from Stopping to stopped, monitor the status with
|
|
26151
|
+
* LinkConnection_GetDetailedStatus.
|
|
25997
26152
|
* @param linkConnectionName The link connection name
|
|
25998
26153
|
* @param options The options parameters.
|
|
25999
26154
|
*/
|
|
@@ -26045,20 +26200,41 @@ class LinkConnectionOperationsImpl {
|
|
|
26045
26200
|
});
|
|
26046
26201
|
}
|
|
26047
26202
|
/**
|
|
26048
|
-
*
|
|
26049
|
-
*
|
|
26050
|
-
*
|
|
26203
|
+
* Pause a link connection. It may take a few minutes from Pausing to Paused, monitor the status with
|
|
26204
|
+
* LinkConnection_GetDetailedStatus.
|
|
26205
|
+
* @param linkConnectionName The link connection name
|
|
26051
26206
|
* @param options The options parameters.
|
|
26052
26207
|
*/
|
|
26053
|
-
async
|
|
26054
|
-
return tracingClient.withSpan("ArtifactsClient.
|
|
26055
|
-
return this.client.sendOperationRequest({
|
|
26208
|
+
async pause(linkConnectionName, options) {
|
|
26209
|
+
return tracingClient.withSpan("ArtifactsClient.pause", options !== null && options !== void 0 ? options : {}, async (options) => {
|
|
26210
|
+
return this.client.sendOperationRequest({ linkConnectionName, options }, pauseOperationSpec);
|
|
26211
|
+
});
|
|
26212
|
+
}
|
|
26213
|
+
/**
|
|
26214
|
+
* Resume a link connection. It may take a few minutes from Resuming to Running, monitor the status
|
|
26215
|
+
* with LinkConnection_GetDetailedStatus.
|
|
26216
|
+
* @param linkConnectionName The link connection name
|
|
26217
|
+
* @param options The options parameters.
|
|
26218
|
+
*/
|
|
26219
|
+
async resume(linkConnectionName, options) {
|
|
26220
|
+
return tracingClient.withSpan("ArtifactsClient.resume", options !== null && options !== void 0 ? options : {}, async (options) => {
|
|
26221
|
+
return this.client.sendOperationRequest({ linkConnectionName, options }, resumeOperationSpec);
|
|
26222
|
+
});
|
|
26223
|
+
}
|
|
26224
|
+
/**
|
|
26225
|
+
* ListByWorkspaceNext
|
|
26226
|
+
* @param nextLink The nextLink from the previous successful call to the ListByWorkspace method.
|
|
26227
|
+
* @param options The options parameters.
|
|
26228
|
+
*/
|
|
26229
|
+
async _listByWorkspaceNext(nextLink, options) {
|
|
26230
|
+
return tracingClient.withSpan("ArtifactsClient._listByWorkspaceNext", options !== null && options !== void 0 ? options : {}, async (options) => {
|
|
26231
|
+
return this.client.sendOperationRequest({ nextLink, options }, listByWorkspaceNextOperationSpec);
|
|
26056
26232
|
});
|
|
26057
26233
|
}
|
|
26058
26234
|
}
|
|
26059
26235
|
// Operation Specifications
|
|
26060
26236
|
const serializer$m = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
26061
|
-
const
|
|
26237
|
+
const listByWorkspaceOperationSpec = {
|
|
26062
26238
|
path: "/linkconnections",
|
|
26063
26239
|
httpMethod: "GET",
|
|
26064
26240
|
responses: {
|
|
@@ -26074,7 +26250,7 @@ const listLinkConnectionsByWorkspaceOperationSpec = {
|
|
|
26074
26250
|
headerParameters: [accept],
|
|
26075
26251
|
serializer: serializer$m
|
|
26076
26252
|
};
|
|
26077
|
-
const
|
|
26253
|
+
const createOrUpdateOperationSpec$1 = {
|
|
26078
26254
|
path: "/linkconnections/{linkConnectionName}",
|
|
26079
26255
|
httpMethod: "PUT",
|
|
26080
26256
|
responses: {
|
|
@@ -26092,7 +26268,7 @@ const createOrUpdateLinkConnectionOperationSpec = {
|
|
|
26092
26268
|
mediaType: "json",
|
|
26093
26269
|
serializer: serializer$m
|
|
26094
26270
|
};
|
|
26095
|
-
const
|
|
26271
|
+
const getOperationSpec$6 = {
|
|
26096
26272
|
path: "/linkconnections/{linkConnectionName}",
|
|
26097
26273
|
httpMethod: "GET",
|
|
26098
26274
|
responses: {
|
|
@@ -26108,7 +26284,7 @@ const getLinkConnectionOperationSpec = {
|
|
|
26108
26284
|
headerParameters: [accept],
|
|
26109
26285
|
serializer: serializer$m
|
|
26110
26286
|
};
|
|
26111
|
-
const
|
|
26287
|
+
const deleteOperationSpec$2 = {
|
|
26112
26288
|
path: "/linkconnections/{linkConnectionName}",
|
|
26113
26289
|
httpMethod: "DELETE",
|
|
26114
26290
|
responses: {
|
|
@@ -26233,7 +26409,35 @@ const updateLandingZoneCredentialOperationSpec = {
|
|
|
26233
26409
|
mediaType: "json",
|
|
26234
26410
|
serializer: serializer$m
|
|
26235
26411
|
};
|
|
26236
|
-
const
|
|
26412
|
+
const pauseOperationSpec = {
|
|
26413
|
+
path: "/linkconnections/{linkConnectionName}/pause",
|
|
26414
|
+
httpMethod: "POST",
|
|
26415
|
+
responses: {
|
|
26416
|
+
200: {},
|
|
26417
|
+
default: {
|
|
26418
|
+
bodyMapper: CloudError
|
|
26419
|
+
}
|
|
26420
|
+
},
|
|
26421
|
+
queryParameters: [apiVersion],
|
|
26422
|
+
urlParameters: [endpoint, linkConnectionName],
|
|
26423
|
+
headerParameters: [accept],
|
|
26424
|
+
serializer: serializer$m
|
|
26425
|
+
};
|
|
26426
|
+
const resumeOperationSpec = {
|
|
26427
|
+
path: "/linkconnections/{linkConnectionName}/resume",
|
|
26428
|
+
httpMethod: "POST",
|
|
26429
|
+
responses: {
|
|
26430
|
+
200: {},
|
|
26431
|
+
default: {
|
|
26432
|
+
bodyMapper: CloudError
|
|
26433
|
+
}
|
|
26434
|
+
},
|
|
26435
|
+
queryParameters: [apiVersion],
|
|
26436
|
+
urlParameters: [endpoint, linkConnectionName],
|
|
26437
|
+
headerParameters: [accept],
|
|
26438
|
+
serializer: serializer$m
|
|
26439
|
+
};
|
|
26440
|
+
const listByWorkspaceNextOperationSpec = {
|
|
26237
26441
|
path: "{nextLink}",
|
|
26238
26442
|
httpMethod: "GET",
|
|
26239
26443
|
responses: {
|
|
@@ -26244,7 +26448,6 @@ const listLinkConnectionsByWorkspaceNextOperationSpec = {
|
|
|
26244
26448
|
bodyMapper: CloudError
|
|
26245
26449
|
}
|
|
26246
26450
|
},
|
|
26247
|
-
queryParameters: [apiVersion],
|
|
26248
26451
|
urlParameters: [endpoint, nextLink],
|
|
26249
26452
|
headerParameters: [accept],
|
|
26250
26453
|
serializer: serializer$m
|
|
@@ -26280,20 +26483,31 @@ class KqlScriptsImpl {
|
|
|
26280
26483
|
[Symbol.asyncIterator]() {
|
|
26281
26484
|
return this;
|
|
26282
26485
|
},
|
|
26283
|
-
byPage: () => {
|
|
26284
|
-
|
|
26486
|
+
byPage: (settings) => {
|
|
26487
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
26488
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
26489
|
+
}
|
|
26490
|
+
return this.getAllPagingPage(options, settings);
|
|
26285
26491
|
}
|
|
26286
26492
|
};
|
|
26287
26493
|
}
|
|
26288
|
-
getAllPagingPage(options) {
|
|
26494
|
+
getAllPagingPage(options, settings) {
|
|
26289
26495
|
return tslib.__asyncGenerator(this, arguments, function* getAllPagingPage_1() {
|
|
26290
|
-
let result
|
|
26291
|
-
|
|
26292
|
-
|
|
26496
|
+
let result;
|
|
26497
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
26498
|
+
if (!continuationToken) {
|
|
26499
|
+
result = yield tslib.__await(this._getAll(options));
|
|
26500
|
+
let page = result.value || [];
|
|
26501
|
+
continuationToken = result.nextLink;
|
|
26502
|
+
setContinuationToken(page, continuationToken);
|
|
26503
|
+
yield yield tslib.__await(page);
|
|
26504
|
+
}
|
|
26293
26505
|
while (continuationToken) {
|
|
26294
26506
|
result = yield tslib.__await(this._getAllNext(continuationToken, options));
|
|
26295
26507
|
continuationToken = result.nextLink;
|
|
26296
|
-
|
|
26508
|
+
let page = result.value || [];
|
|
26509
|
+
setContinuationToken(page, continuationToken);
|
|
26510
|
+
yield yield tslib.__await(page);
|
|
26297
26511
|
}
|
|
26298
26512
|
});
|
|
26299
26513
|
}
|
|
@@ -26364,7 +26578,6 @@ const getAllNextOperationSpec = {
|
|
|
26364
26578
|
bodyMapper: ErrorContract
|
|
26365
26579
|
}
|
|
26366
26580
|
},
|
|
26367
|
-
queryParameters: [apiVersion1],
|
|
26368
26581
|
urlParameters: [endpoint, nextLink],
|
|
26369
26582
|
headerParameters: [accept],
|
|
26370
26583
|
serializer: serializer$l
|
|
@@ -26807,20 +27020,31 @@ class SparkConfigurationOperationsImpl {
|
|
|
26807
27020
|
[Symbol.asyncIterator]() {
|
|
26808
27021
|
return this;
|
|
26809
27022
|
},
|
|
26810
|
-
byPage: () => {
|
|
26811
|
-
|
|
27023
|
+
byPage: (settings) => {
|
|
27024
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
27025
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
27026
|
+
}
|
|
27027
|
+
return this.getSparkConfigurationsByWorkspacePagingPage(options, settings);
|
|
26812
27028
|
}
|
|
26813
27029
|
};
|
|
26814
27030
|
}
|
|
26815
|
-
getSparkConfigurationsByWorkspacePagingPage(options) {
|
|
27031
|
+
getSparkConfigurationsByWorkspacePagingPage(options, settings) {
|
|
26816
27032
|
return tslib.__asyncGenerator(this, arguments, function* getSparkConfigurationsByWorkspacePagingPage_1() {
|
|
26817
|
-
let result
|
|
26818
|
-
|
|
26819
|
-
|
|
27033
|
+
let result;
|
|
27034
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
27035
|
+
if (!continuationToken) {
|
|
27036
|
+
result = yield tslib.__await(this._getSparkConfigurationsByWorkspace(options));
|
|
27037
|
+
let page = result.value || [];
|
|
27038
|
+
continuationToken = result.nextLink;
|
|
27039
|
+
setContinuationToken(page, continuationToken);
|
|
27040
|
+
yield yield tslib.__await(page);
|
|
27041
|
+
}
|
|
26820
27042
|
while (continuationToken) {
|
|
26821
27043
|
result = yield tslib.__await(this._getSparkConfigurationsByWorkspaceNext(continuationToken, options));
|
|
26822
27044
|
continuationToken = result.nextLink;
|
|
26823
|
-
|
|
27045
|
+
let page = result.value || [];
|
|
27046
|
+
setContinuationToken(page, continuationToken);
|
|
27047
|
+
yield yield tslib.__await(page);
|
|
26824
27048
|
}
|
|
26825
27049
|
});
|
|
26826
27050
|
}
|
|
@@ -27131,7 +27355,6 @@ const getSparkConfigurationsByWorkspaceNextOperationSpec = {
|
|
|
27131
27355
|
bodyMapper: CloudError
|
|
27132
27356
|
}
|
|
27133
27357
|
},
|
|
27134
|
-
queryParameters: [apiVersion3],
|
|
27135
27358
|
urlParameters: [endpoint, nextLink],
|
|
27136
27359
|
headerParameters: [accept],
|
|
27137
27360
|
serializer: serializer$i
|
|
@@ -27238,20 +27461,31 @@ class DataFlowOperationsImpl {
|
|
|
27238
27461
|
[Symbol.asyncIterator]() {
|
|
27239
27462
|
return this;
|
|
27240
27463
|
},
|
|
27241
|
-
byPage: () => {
|
|
27242
|
-
|
|
27464
|
+
byPage: (settings) => {
|
|
27465
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
27466
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
27467
|
+
}
|
|
27468
|
+
return this.getDataFlowsByWorkspacePagingPage(options, settings);
|
|
27243
27469
|
}
|
|
27244
27470
|
};
|
|
27245
27471
|
}
|
|
27246
|
-
getDataFlowsByWorkspacePagingPage(options) {
|
|
27472
|
+
getDataFlowsByWorkspacePagingPage(options, settings) {
|
|
27247
27473
|
return tslib.__asyncGenerator(this, arguments, function* getDataFlowsByWorkspacePagingPage_1() {
|
|
27248
|
-
let result
|
|
27249
|
-
|
|
27250
|
-
|
|
27474
|
+
let result;
|
|
27475
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
27476
|
+
if (!continuationToken) {
|
|
27477
|
+
result = yield tslib.__await(this._getDataFlowsByWorkspace(options));
|
|
27478
|
+
let page = result.value || [];
|
|
27479
|
+
continuationToken = result.nextLink;
|
|
27480
|
+
setContinuationToken(page, continuationToken);
|
|
27481
|
+
yield yield tslib.__await(page);
|
|
27482
|
+
}
|
|
27251
27483
|
while (continuationToken) {
|
|
27252
27484
|
result = yield tslib.__await(this._getDataFlowsByWorkspaceNext(continuationToken, options));
|
|
27253
27485
|
continuationToken = result.nextLink;
|
|
27254
|
-
|
|
27486
|
+
let page = result.value || [];
|
|
27487
|
+
setContinuationToken(page, continuationToken);
|
|
27488
|
+
yield yield tslib.__await(page);
|
|
27255
27489
|
}
|
|
27256
27490
|
});
|
|
27257
27491
|
}
|
|
@@ -27561,7 +27795,6 @@ const getDataFlowsByWorkspaceNextOperationSpec = {
|
|
|
27561
27795
|
bodyMapper: CloudError
|
|
27562
27796
|
}
|
|
27563
27797
|
},
|
|
27564
|
-
queryParameters: [apiVersion4],
|
|
27565
27798
|
urlParameters: [endpoint, nextLink],
|
|
27566
27799
|
headerParameters: [accept],
|
|
27567
27800
|
serializer: serializer$g
|
|
@@ -27597,20 +27830,31 @@ class DataFlowDebugSessionImpl {
|
|
|
27597
27830
|
[Symbol.asyncIterator]() {
|
|
27598
27831
|
return this;
|
|
27599
27832
|
},
|
|
27600
|
-
byPage: () => {
|
|
27601
|
-
|
|
27833
|
+
byPage: (settings) => {
|
|
27834
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
27835
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
27836
|
+
}
|
|
27837
|
+
return this.queryDataFlowDebugSessionsByWorkspacePagingPage(options, settings);
|
|
27602
27838
|
}
|
|
27603
27839
|
};
|
|
27604
27840
|
}
|
|
27605
|
-
queryDataFlowDebugSessionsByWorkspacePagingPage(options) {
|
|
27841
|
+
queryDataFlowDebugSessionsByWorkspacePagingPage(options, settings) {
|
|
27606
27842
|
return tslib.__asyncGenerator(this, arguments, function* queryDataFlowDebugSessionsByWorkspacePagingPage_1() {
|
|
27607
|
-
let result
|
|
27608
|
-
|
|
27609
|
-
|
|
27843
|
+
let result;
|
|
27844
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
27845
|
+
if (!continuationToken) {
|
|
27846
|
+
result = yield tslib.__await(this._queryDataFlowDebugSessionsByWorkspace(options));
|
|
27847
|
+
let page = result.value || [];
|
|
27848
|
+
continuationToken = result.nextLink;
|
|
27849
|
+
setContinuationToken(page, continuationToken);
|
|
27850
|
+
yield yield tslib.__await(page);
|
|
27851
|
+
}
|
|
27610
27852
|
while (continuationToken) {
|
|
27611
27853
|
result = yield tslib.__await(this._queryDataFlowDebugSessionsByWorkspaceNext(continuationToken, options));
|
|
27612
27854
|
continuationToken = result.nextLink;
|
|
27613
|
-
|
|
27855
|
+
let page = result.value || [];
|
|
27856
|
+
setContinuationToken(page, continuationToken);
|
|
27857
|
+
yield yield tslib.__await(page);
|
|
27614
27858
|
}
|
|
27615
27859
|
});
|
|
27616
27860
|
}
|
|
@@ -27884,7 +28128,6 @@ const queryDataFlowDebugSessionsByWorkspaceNextOperationSpec = {
|
|
|
27884
28128
|
bodyMapper: CloudError
|
|
27885
28129
|
}
|
|
27886
28130
|
},
|
|
27887
|
-
queryParameters: [apiVersion4],
|
|
27888
28131
|
urlParameters: [endpoint, nextLink],
|
|
27889
28132
|
headerParameters: [accept],
|
|
27890
28133
|
serializer: serializer$f
|
|
@@ -27920,20 +28163,31 @@ class DatasetOperationsImpl {
|
|
|
27920
28163
|
[Symbol.asyncIterator]() {
|
|
27921
28164
|
return this;
|
|
27922
28165
|
},
|
|
27923
|
-
byPage: () => {
|
|
27924
|
-
|
|
28166
|
+
byPage: (settings) => {
|
|
28167
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
28168
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
28169
|
+
}
|
|
28170
|
+
return this.getDatasetsByWorkspacePagingPage(options, settings);
|
|
27925
28171
|
}
|
|
27926
28172
|
};
|
|
27927
28173
|
}
|
|
27928
|
-
getDatasetsByWorkspacePagingPage(options) {
|
|
28174
|
+
getDatasetsByWorkspacePagingPage(options, settings) {
|
|
27929
28175
|
return tslib.__asyncGenerator(this, arguments, function* getDatasetsByWorkspacePagingPage_1() {
|
|
27930
|
-
let result
|
|
27931
|
-
|
|
27932
|
-
|
|
28176
|
+
let result;
|
|
28177
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
28178
|
+
if (!continuationToken) {
|
|
28179
|
+
result = yield tslib.__await(this._getDatasetsByWorkspace(options));
|
|
28180
|
+
let page = result.value || [];
|
|
28181
|
+
continuationToken = result.nextLink;
|
|
28182
|
+
setContinuationToken(page, continuationToken);
|
|
28183
|
+
yield yield tslib.__await(page);
|
|
28184
|
+
}
|
|
27933
28185
|
while (continuationToken) {
|
|
27934
28186
|
result = yield tslib.__await(this._getDatasetsByWorkspaceNext(continuationToken, options));
|
|
27935
28187
|
continuationToken = result.nextLink;
|
|
27936
|
-
|
|
28188
|
+
let page = result.value || [];
|
|
28189
|
+
setContinuationToken(page, continuationToken);
|
|
28190
|
+
yield yield tslib.__await(page);
|
|
27937
28191
|
}
|
|
27938
28192
|
});
|
|
27939
28193
|
}
|
|
@@ -28243,7 +28497,6 @@ const getDatasetsByWorkspaceNextOperationSpec = {
|
|
|
28243
28497
|
bodyMapper: CloudError
|
|
28244
28498
|
}
|
|
28245
28499
|
},
|
|
28246
|
-
queryParameters: [apiVersion4],
|
|
28247
28500
|
urlParameters: [endpoint, nextLink],
|
|
28248
28501
|
headerParameters: [accept],
|
|
28249
28502
|
serializer: serializer$e
|
|
@@ -28399,20 +28652,31 @@ class LibraryImpl {
|
|
|
28399
28652
|
[Symbol.asyncIterator]() {
|
|
28400
28653
|
return this;
|
|
28401
28654
|
},
|
|
28402
|
-
byPage: () => {
|
|
28403
|
-
|
|
28655
|
+
byPage: (settings) => {
|
|
28656
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
28657
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
28658
|
+
}
|
|
28659
|
+
return this.listPagingPage(options, settings);
|
|
28404
28660
|
}
|
|
28405
28661
|
};
|
|
28406
28662
|
}
|
|
28407
|
-
listPagingPage(options) {
|
|
28663
|
+
listPagingPage(options, settings) {
|
|
28408
28664
|
return tslib.__asyncGenerator(this, arguments, function* listPagingPage_1() {
|
|
28409
|
-
let result
|
|
28410
|
-
|
|
28411
|
-
|
|
28665
|
+
let result;
|
|
28666
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
28667
|
+
if (!continuationToken) {
|
|
28668
|
+
result = yield tslib.__await(this._list(options));
|
|
28669
|
+
let page = result.value || [];
|
|
28670
|
+
continuationToken = result.nextLink;
|
|
28671
|
+
setContinuationToken(page, continuationToken);
|
|
28672
|
+
yield yield tslib.__await(page);
|
|
28673
|
+
}
|
|
28412
28674
|
while (continuationToken) {
|
|
28413
28675
|
result = yield tslib.__await(this._listNext(continuationToken, options));
|
|
28414
28676
|
continuationToken = result.nextLink;
|
|
28415
|
-
|
|
28677
|
+
let page = result.value || [];
|
|
28678
|
+
setContinuationToken(page, continuationToken);
|
|
28679
|
+
yield yield tslib.__await(page);
|
|
28416
28680
|
}
|
|
28417
28681
|
});
|
|
28418
28682
|
}
|
|
@@ -28771,7 +29035,6 @@ const listNextOperationSpec = {
|
|
|
28771
29035
|
bodyMapper: CloudError
|
|
28772
29036
|
}
|
|
28773
29037
|
},
|
|
28774
|
-
queryParameters: [apiVersion4],
|
|
28775
29038
|
urlParameters: [endpoint, nextLink],
|
|
28776
29039
|
headerParameters: [accept],
|
|
28777
29040
|
serializer: serializer$b
|
|
@@ -28807,20 +29070,31 @@ class LinkedServiceOperationsImpl {
|
|
|
28807
29070
|
[Symbol.asyncIterator]() {
|
|
28808
29071
|
return this;
|
|
28809
29072
|
},
|
|
28810
|
-
byPage: () => {
|
|
28811
|
-
|
|
29073
|
+
byPage: (settings) => {
|
|
29074
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
29075
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
29076
|
+
}
|
|
29077
|
+
return this.getLinkedServicesByWorkspacePagingPage(options, settings);
|
|
28812
29078
|
}
|
|
28813
29079
|
};
|
|
28814
29080
|
}
|
|
28815
|
-
getLinkedServicesByWorkspacePagingPage(options) {
|
|
29081
|
+
getLinkedServicesByWorkspacePagingPage(options, settings) {
|
|
28816
29082
|
return tslib.__asyncGenerator(this, arguments, function* getLinkedServicesByWorkspacePagingPage_1() {
|
|
28817
|
-
let result
|
|
28818
|
-
|
|
28819
|
-
|
|
29083
|
+
let result;
|
|
29084
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
29085
|
+
if (!continuationToken) {
|
|
29086
|
+
result = yield tslib.__await(this._getLinkedServicesByWorkspace(options));
|
|
29087
|
+
let page = result.value || [];
|
|
29088
|
+
continuationToken = result.nextLink;
|
|
29089
|
+
setContinuationToken(page, continuationToken);
|
|
29090
|
+
yield yield tslib.__await(page);
|
|
29091
|
+
}
|
|
28820
29092
|
while (continuationToken) {
|
|
28821
29093
|
result = yield tslib.__await(this._getLinkedServicesByWorkspaceNext(continuationToken, options));
|
|
28822
29094
|
continuationToken = result.nextLink;
|
|
28823
|
-
|
|
29095
|
+
let page = result.value || [];
|
|
29096
|
+
setContinuationToken(page, continuationToken);
|
|
29097
|
+
yield yield tslib.__await(page);
|
|
28824
29098
|
}
|
|
28825
29099
|
});
|
|
28826
29100
|
}
|
|
@@ -29131,7 +29405,6 @@ const getLinkedServicesByWorkspaceNextOperationSpec = {
|
|
|
29131
29405
|
bodyMapper: CloudError
|
|
29132
29406
|
}
|
|
29133
29407
|
},
|
|
29134
|
-
queryParameters: [apiVersion4],
|
|
29135
29408
|
urlParameters: [endpoint, nextLink],
|
|
29136
29409
|
headerParameters: [accept],
|
|
29137
29410
|
serializer: serializer$a
|
|
@@ -29167,20 +29440,31 @@ class NotebookOperationsImpl {
|
|
|
29167
29440
|
[Symbol.asyncIterator]() {
|
|
29168
29441
|
return this;
|
|
29169
29442
|
},
|
|
29170
|
-
byPage: () => {
|
|
29171
|
-
|
|
29443
|
+
byPage: (settings) => {
|
|
29444
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
29445
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
29446
|
+
}
|
|
29447
|
+
return this.getNotebooksByWorkspacePagingPage(options, settings);
|
|
29172
29448
|
}
|
|
29173
29449
|
};
|
|
29174
29450
|
}
|
|
29175
|
-
getNotebooksByWorkspacePagingPage(options) {
|
|
29451
|
+
getNotebooksByWorkspacePagingPage(options, settings) {
|
|
29176
29452
|
return tslib.__asyncGenerator(this, arguments, function* getNotebooksByWorkspacePagingPage_1() {
|
|
29177
|
-
let result
|
|
29178
|
-
|
|
29179
|
-
|
|
29453
|
+
let result;
|
|
29454
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
29455
|
+
if (!continuationToken) {
|
|
29456
|
+
result = yield tslib.__await(this._getNotebooksByWorkspace(options));
|
|
29457
|
+
let page = result.value || [];
|
|
29458
|
+
continuationToken = result.nextLink;
|
|
29459
|
+
setContinuationToken(page, continuationToken);
|
|
29460
|
+
yield yield tslib.__await(page);
|
|
29461
|
+
}
|
|
29180
29462
|
while (continuationToken) {
|
|
29181
29463
|
result = yield tslib.__await(this._getNotebooksByWorkspaceNext(continuationToken, options));
|
|
29182
29464
|
continuationToken = result.nextLink;
|
|
29183
|
-
|
|
29465
|
+
let page = result.value || [];
|
|
29466
|
+
setContinuationToken(page, continuationToken);
|
|
29467
|
+
yield yield tslib.__await(page);
|
|
29184
29468
|
}
|
|
29185
29469
|
});
|
|
29186
29470
|
}
|
|
@@ -29215,20 +29499,31 @@ class NotebookOperationsImpl {
|
|
|
29215
29499
|
[Symbol.asyncIterator]() {
|
|
29216
29500
|
return this;
|
|
29217
29501
|
},
|
|
29218
|
-
byPage: () => {
|
|
29219
|
-
|
|
29502
|
+
byPage: (settings) => {
|
|
29503
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
29504
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
29505
|
+
}
|
|
29506
|
+
return this.getNotebookSummaryByWorkSpacePagingPage(options, settings);
|
|
29220
29507
|
}
|
|
29221
29508
|
};
|
|
29222
29509
|
}
|
|
29223
|
-
getNotebookSummaryByWorkSpacePagingPage(options) {
|
|
29510
|
+
getNotebookSummaryByWorkSpacePagingPage(options, settings) {
|
|
29224
29511
|
return tslib.__asyncGenerator(this, arguments, function* getNotebookSummaryByWorkSpacePagingPage_1() {
|
|
29225
|
-
let result
|
|
29226
|
-
|
|
29227
|
-
|
|
29512
|
+
let result;
|
|
29513
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
29514
|
+
if (!continuationToken) {
|
|
29515
|
+
result = yield tslib.__await(this._getNotebookSummaryByWorkSpace(options));
|
|
29516
|
+
let page = result.value || [];
|
|
29517
|
+
continuationToken = result.nextLink;
|
|
29518
|
+
setContinuationToken(page, continuationToken);
|
|
29519
|
+
yield yield tslib.__await(page);
|
|
29520
|
+
}
|
|
29228
29521
|
while (continuationToken) {
|
|
29229
29522
|
result = yield tslib.__await(this._getNotebookSummaryByWorkSpaceNext(continuationToken, options));
|
|
29230
29523
|
continuationToken = result.nextLink;
|
|
29231
|
-
|
|
29524
|
+
let page = result.value || [];
|
|
29525
|
+
setContinuationToken(page, continuationToken);
|
|
29526
|
+
yield yield tslib.__await(page);
|
|
29232
29527
|
}
|
|
29233
29528
|
});
|
|
29234
29529
|
}
|
|
@@ -29575,7 +29870,6 @@ const getNotebooksByWorkspaceNextOperationSpec = {
|
|
|
29575
29870
|
bodyMapper: CloudError
|
|
29576
29871
|
}
|
|
29577
29872
|
},
|
|
29578
|
-
queryParameters: [apiVersion4],
|
|
29579
29873
|
urlParameters: [endpoint, nextLink],
|
|
29580
29874
|
headerParameters: [accept],
|
|
29581
29875
|
serializer: serializer$9
|
|
@@ -29591,7 +29885,6 @@ const getNotebookSummaryByWorkSpaceNextOperationSpec = {
|
|
|
29591
29885
|
bodyMapper: CloudError
|
|
29592
29886
|
}
|
|
29593
29887
|
},
|
|
29594
|
-
queryParameters: [apiVersion4],
|
|
29595
29888
|
urlParameters: [endpoint, nextLink],
|
|
29596
29889
|
headerParameters: [accept],
|
|
29597
29890
|
serializer: serializer$9
|
|
@@ -29674,20 +29967,31 @@ class PipelineOperationsImpl {
|
|
|
29674
29967
|
[Symbol.asyncIterator]() {
|
|
29675
29968
|
return this;
|
|
29676
29969
|
},
|
|
29677
|
-
byPage: () => {
|
|
29678
|
-
|
|
29970
|
+
byPage: (settings) => {
|
|
29971
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
29972
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
29973
|
+
}
|
|
29974
|
+
return this.getPipelinesByWorkspacePagingPage(options, settings);
|
|
29679
29975
|
}
|
|
29680
29976
|
};
|
|
29681
29977
|
}
|
|
29682
|
-
getPipelinesByWorkspacePagingPage(options) {
|
|
29978
|
+
getPipelinesByWorkspacePagingPage(options, settings) {
|
|
29683
29979
|
return tslib.__asyncGenerator(this, arguments, function* getPipelinesByWorkspacePagingPage_1() {
|
|
29684
|
-
let result
|
|
29685
|
-
|
|
29686
|
-
|
|
29980
|
+
let result;
|
|
29981
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
29982
|
+
if (!continuationToken) {
|
|
29983
|
+
result = yield tslib.__await(this._getPipelinesByWorkspace(options));
|
|
29984
|
+
let page = result.value || [];
|
|
29985
|
+
continuationToken = result.nextLink;
|
|
29986
|
+
setContinuationToken(page, continuationToken);
|
|
29987
|
+
yield yield tslib.__await(page);
|
|
29988
|
+
}
|
|
29687
29989
|
while (continuationToken) {
|
|
29688
29990
|
result = yield tslib.__await(this._getPipelinesByWorkspaceNext(continuationToken, options));
|
|
29689
29991
|
continuationToken = result.nextLink;
|
|
29690
|
-
|
|
29992
|
+
let page = result.value || [];
|
|
29993
|
+
setContinuationToken(page, continuationToken);
|
|
29994
|
+
yield yield tslib.__await(page);
|
|
29691
29995
|
}
|
|
29692
29996
|
});
|
|
29693
29997
|
}
|
|
@@ -30031,7 +30335,6 @@ const getPipelinesByWorkspaceNextOperationSpec = {
|
|
|
30031
30335
|
bodyMapper: CloudError
|
|
30032
30336
|
}
|
|
30033
30337
|
},
|
|
30034
|
-
queryParameters: [apiVersion4],
|
|
30035
30338
|
urlParameters: [endpoint, nextLink],
|
|
30036
30339
|
headerParameters: [accept],
|
|
30037
30340
|
serializer: serializer$7
|
|
@@ -30199,20 +30502,31 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
30199
30502
|
[Symbol.asyncIterator]() {
|
|
30200
30503
|
return this;
|
|
30201
30504
|
},
|
|
30202
|
-
byPage: () => {
|
|
30203
|
-
|
|
30505
|
+
byPage: (settings) => {
|
|
30506
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
30507
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
30508
|
+
}
|
|
30509
|
+
return this.getSparkJobDefinitionsByWorkspacePagingPage(options, settings);
|
|
30204
30510
|
}
|
|
30205
30511
|
};
|
|
30206
30512
|
}
|
|
30207
|
-
getSparkJobDefinitionsByWorkspacePagingPage(options) {
|
|
30513
|
+
getSparkJobDefinitionsByWorkspacePagingPage(options, settings) {
|
|
30208
30514
|
return tslib.__asyncGenerator(this, arguments, function* getSparkJobDefinitionsByWorkspacePagingPage_1() {
|
|
30209
|
-
let result
|
|
30210
|
-
|
|
30211
|
-
|
|
30515
|
+
let result;
|
|
30516
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
30517
|
+
if (!continuationToken) {
|
|
30518
|
+
result = yield tslib.__await(this._getSparkJobDefinitionsByWorkspace(options));
|
|
30519
|
+
let page = result.value || [];
|
|
30520
|
+
continuationToken = result.nextLink;
|
|
30521
|
+
setContinuationToken(page, continuationToken);
|
|
30522
|
+
yield yield tslib.__await(page);
|
|
30523
|
+
}
|
|
30212
30524
|
while (continuationToken) {
|
|
30213
30525
|
result = yield tslib.__await(this._getSparkJobDefinitionsByWorkspaceNext(continuationToken, options));
|
|
30214
30526
|
continuationToken = result.nextLink;
|
|
30215
|
-
|
|
30527
|
+
let page = result.value || [];
|
|
30528
|
+
setContinuationToken(page, continuationToken);
|
|
30529
|
+
yield yield tslib.__await(page);
|
|
30216
30530
|
}
|
|
30217
30531
|
});
|
|
30218
30532
|
}
|
|
@@ -30671,7 +30985,6 @@ const getSparkJobDefinitionsByWorkspaceNextOperationSpec = {
|
|
|
30671
30985
|
bodyMapper: CloudError
|
|
30672
30986
|
}
|
|
30673
30987
|
},
|
|
30674
|
-
queryParameters: [apiVersion4],
|
|
30675
30988
|
urlParameters: [endpoint, nextLink],
|
|
30676
30989
|
headerParameters: [accept],
|
|
30677
30990
|
serializer: serializer$5
|
|
@@ -30778,20 +31091,31 @@ class SqlScriptOperationsImpl {
|
|
|
30778
31091
|
[Symbol.asyncIterator]() {
|
|
30779
31092
|
return this;
|
|
30780
31093
|
},
|
|
30781
|
-
byPage: () => {
|
|
30782
|
-
|
|
31094
|
+
byPage: (settings) => {
|
|
31095
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
31096
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
31097
|
+
}
|
|
31098
|
+
return this.getSqlScriptsByWorkspacePagingPage(options, settings);
|
|
30783
31099
|
}
|
|
30784
31100
|
};
|
|
30785
31101
|
}
|
|
30786
|
-
getSqlScriptsByWorkspacePagingPage(options) {
|
|
31102
|
+
getSqlScriptsByWorkspacePagingPage(options, settings) {
|
|
30787
31103
|
return tslib.__asyncGenerator(this, arguments, function* getSqlScriptsByWorkspacePagingPage_1() {
|
|
30788
|
-
let result
|
|
30789
|
-
|
|
30790
|
-
|
|
31104
|
+
let result;
|
|
31105
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
31106
|
+
if (!continuationToken) {
|
|
31107
|
+
result = yield tslib.__await(this._getSqlScriptsByWorkspace(options));
|
|
31108
|
+
let page = result.value || [];
|
|
31109
|
+
continuationToken = result.nextLink;
|
|
31110
|
+
setContinuationToken(page, continuationToken);
|
|
31111
|
+
yield yield tslib.__await(page);
|
|
31112
|
+
}
|
|
30791
31113
|
while (continuationToken) {
|
|
30792
31114
|
result = yield tslib.__await(this._getSqlScriptsByWorkspaceNext(continuationToken, options));
|
|
30793
31115
|
continuationToken = result.nextLink;
|
|
30794
|
-
|
|
31116
|
+
let page = result.value || [];
|
|
31117
|
+
setContinuationToken(page, continuationToken);
|
|
31118
|
+
yield yield tslib.__await(page);
|
|
30795
31119
|
}
|
|
30796
31120
|
});
|
|
30797
31121
|
}
|
|
@@ -31102,7 +31426,6 @@ const getSqlScriptsByWorkspaceNextOperationSpec = {
|
|
|
31102
31426
|
bodyMapper: CloudError
|
|
31103
31427
|
}
|
|
31104
31428
|
},
|
|
31105
|
-
queryParameters: [apiVersion4],
|
|
31106
31429
|
urlParameters: [endpoint, nextLink],
|
|
31107
31430
|
headerParameters: [accept],
|
|
31108
31431
|
serializer: serializer$3
|
|
@@ -31138,20 +31461,31 @@ class TriggerOperationsImpl {
|
|
|
31138
31461
|
[Symbol.asyncIterator]() {
|
|
31139
31462
|
return this;
|
|
31140
31463
|
},
|
|
31141
|
-
byPage: () => {
|
|
31142
|
-
|
|
31464
|
+
byPage: (settings) => {
|
|
31465
|
+
if (settings === null || settings === void 0 ? void 0 : settings.maxPageSize) {
|
|
31466
|
+
throw new Error("maxPageSize is not supported by this operation.");
|
|
31467
|
+
}
|
|
31468
|
+
return this.getTriggersByWorkspacePagingPage(options, settings);
|
|
31143
31469
|
}
|
|
31144
31470
|
};
|
|
31145
31471
|
}
|
|
31146
|
-
getTriggersByWorkspacePagingPage(options) {
|
|
31472
|
+
getTriggersByWorkspacePagingPage(options, settings) {
|
|
31147
31473
|
return tslib.__asyncGenerator(this, arguments, function* getTriggersByWorkspacePagingPage_1() {
|
|
31148
|
-
let result
|
|
31149
|
-
|
|
31150
|
-
|
|
31474
|
+
let result;
|
|
31475
|
+
let continuationToken = settings === null || settings === void 0 ? void 0 : settings.continuationToken;
|
|
31476
|
+
if (!continuationToken) {
|
|
31477
|
+
result = yield tslib.__await(this._getTriggersByWorkspace(options));
|
|
31478
|
+
let page = result.value || [];
|
|
31479
|
+
continuationToken = result.nextLink;
|
|
31480
|
+
setContinuationToken(page, continuationToken);
|
|
31481
|
+
yield yield tslib.__await(page);
|
|
31482
|
+
}
|
|
31151
31483
|
while (continuationToken) {
|
|
31152
31484
|
result = yield tslib.__await(this._getTriggersByWorkspaceNext(continuationToken, options));
|
|
31153
31485
|
continuationToken = result.nextLink;
|
|
31154
|
-
|
|
31486
|
+
let page = result.value || [];
|
|
31487
|
+
setContinuationToken(page, continuationToken);
|
|
31488
|
+
yield yield tslib.__await(page);
|
|
31155
31489
|
}
|
|
31156
31490
|
});
|
|
31157
31491
|
}
|
|
@@ -31691,7 +32025,6 @@ const getTriggersByWorkspaceNextOperationSpec = {
|
|
|
31691
32025
|
bodyMapper: CloudError
|
|
31692
32026
|
}
|
|
31693
32027
|
},
|
|
31694
|
-
queryParameters: [apiVersion4],
|
|
31695
32028
|
urlParameters: [endpoint, nextLink],
|
|
31696
32029
|
headerParameters: [accept],
|
|
31697
32030
|
serializer: serializer$2
|
|
@@ -31864,7 +32197,7 @@ class ArtifactsClient extends coreClient__namespace.ServiceClient {
|
|
|
31864
32197
|
* @param options The parameter options
|
|
31865
32198
|
*/
|
|
31866
32199
|
constructor(credentials, endpoint, options) {
|
|
31867
|
-
var _a, _b;
|
|
32200
|
+
var _a, _b, _c;
|
|
31868
32201
|
if (credentials === undefined) {
|
|
31869
32202
|
throw new Error("'credentials' cannot be null");
|
|
31870
32203
|
}
|
|
@@ -31879,7 +32212,7 @@ class ArtifactsClient extends coreClient__namespace.ServiceClient {
|
|
|
31879
32212
|
requestContentType: "application/json; charset=utf-8",
|
|
31880
32213
|
credential: credentials
|
|
31881
32214
|
};
|
|
31882
|
-
const packageDetails = `azsdk-js-synapse-artifacts/1.0.0-beta.
|
|
32215
|
+
const packageDetails = `azsdk-js-synapse-artifacts/1.0.0-beta.12`;
|
|
31883
32216
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
31884
32217
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
31885
32218
|
: `${packageDetails}`;
|
|
@@ -31888,23 +32221,28 @@ class ArtifactsClient extends coreClient__namespace.ServiceClient {
|
|
|
31888
32221
|
}
|
|
31889
32222
|
const optionsWithDefaults = Object.assign(Object.assign(Object.assign({}, defaults), options), { userAgentOptions: {
|
|
31890
32223
|
userAgentPrefix
|
|
31891
|
-
},
|
|
32224
|
+
}, endpoint: (_b = (_a = options.endpoint) !== null && _a !== void 0 ? _a : options.baseUri) !== null && _b !== void 0 ? _b : "{endpoint}" });
|
|
31892
32225
|
super(optionsWithDefaults);
|
|
32226
|
+
let bearerTokenAuthenticationPolicyFound = false;
|
|
31893
32227
|
if ((options === null || options === void 0 ? void 0 : options.pipeline) && options.pipeline.getOrderedPolicies().length > 0) {
|
|
31894
32228
|
const pipelinePolicies = options.pipeline.getOrderedPolicies();
|
|
31895
|
-
|
|
32229
|
+
bearerTokenAuthenticationPolicyFound = pipelinePolicies.some((pipelinePolicy) => pipelinePolicy.name ===
|
|
31896
32230
|
coreRestPipeline__namespace.bearerTokenAuthenticationPolicyName);
|
|
31897
|
-
|
|
31898
|
-
|
|
31899
|
-
|
|
31900
|
-
|
|
31901
|
-
|
|
31902
|
-
|
|
31903
|
-
|
|
31904
|
-
|
|
31905
|
-
|
|
31906
|
-
|
|
31907
|
-
|
|
32231
|
+
}
|
|
32232
|
+
if (!options ||
|
|
32233
|
+
!options.pipeline ||
|
|
32234
|
+
options.pipeline.getOrderedPolicies().length == 0 ||
|
|
32235
|
+
!bearerTokenAuthenticationPolicyFound) {
|
|
32236
|
+
this.pipeline.removePolicy({
|
|
32237
|
+
name: coreRestPipeline__namespace.bearerTokenAuthenticationPolicyName
|
|
32238
|
+
});
|
|
32239
|
+
this.pipeline.addPolicy(coreRestPipeline__namespace.bearerTokenAuthenticationPolicy({
|
|
32240
|
+
credential: credentials,
|
|
32241
|
+
scopes: (_c = optionsWithDefaults.credentialScopes) !== null && _c !== void 0 ? _c : `${optionsWithDefaults.endpoint}/.default`,
|
|
32242
|
+
challengeCallbacks: {
|
|
32243
|
+
authorizeRequestOnChallenge: coreClient__namespace.authorizeRequestOnClaimChallenge
|
|
32244
|
+
}
|
|
32245
|
+
}));
|
|
31908
32246
|
}
|
|
31909
32247
|
// Parameter assignments
|
|
31910
32248
|
this.endpoint = endpoint;
|
|
@@ -31935,4 +32273,5 @@ class ArtifactsClient extends coreClient__namespace.ServiceClient {
|
|
|
31935
32273
|
}
|
|
31936
32274
|
|
|
31937
32275
|
exports.ArtifactsClient = ArtifactsClient;
|
|
32276
|
+
exports.getContinuationToken = getContinuationToken;
|
|
31938
32277
|
//# sourceMappingURL=index.js.map
|