@azure/arm-datafactory 10.7.0 → 10.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/dist/index.js +616 -313
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.d.ts.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +21 -13
- package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +160 -7
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +30 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +112 -100
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +557 -300
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.d.ts +4 -0
- package/dist-esm/test/datafactory_examples.spec.d.ts.map +1 -0
- package/dist-esm/test/datafactory_examples.spec.js +106 -0
- package/dist-esm/test/datafactory_examples.spec.js.map +1 -0
- package/package.json +2 -2
- package/review/arm-datafactory.api.md +107 -5
- package/src/dataFactoryManagementClient.ts +26 -16
- package/src/models/index.ts +184 -7
- package/src/models/mappers.ts +599 -300
- package/types/arm-datafactory.d.ts +176 -7
- package/dist-esm/test/sampleTest.d.ts +0 -2
- package/dist-esm/test/sampleTest.d.ts.map +0 -1
- package/dist-esm/test/sampleTest.js +0 -38
- package/dist-esm/test/sampleTest.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -891,6 +891,36 @@ exports.KnownScriptActivityLogDestination = void 0;
|
|
|
891
891
|
/** ExternalStore */
|
|
892
892
|
KnownScriptActivityLogDestination["ExternalStore"] = "ExternalStore";
|
|
893
893
|
})(exports.KnownScriptActivityLogDestination || (exports.KnownScriptActivityLogDestination = {}));
|
|
894
|
+
/** Known values of {@link NotebookReferenceType} that the service accepts. */
|
|
895
|
+
exports.KnownNotebookReferenceType = void 0;
|
|
896
|
+
(function (KnownNotebookReferenceType) {
|
|
897
|
+
/** NotebookReference */
|
|
898
|
+
KnownNotebookReferenceType["NotebookReference"] = "NotebookReference";
|
|
899
|
+
})(exports.KnownNotebookReferenceType || (exports.KnownNotebookReferenceType = {}));
|
|
900
|
+
/** Known values of {@link BigDataPoolReferenceType} that the service accepts. */
|
|
901
|
+
exports.KnownBigDataPoolReferenceType = void 0;
|
|
902
|
+
(function (KnownBigDataPoolReferenceType) {
|
|
903
|
+
/** BigDataPoolReference */
|
|
904
|
+
KnownBigDataPoolReferenceType["BigDataPoolReference"] = "BigDataPoolReference";
|
|
905
|
+
})(exports.KnownBigDataPoolReferenceType || (exports.KnownBigDataPoolReferenceType = {}));
|
|
906
|
+
/** Known values of {@link NotebookParameterType} that the service accepts. */
|
|
907
|
+
exports.KnownNotebookParameterType = void 0;
|
|
908
|
+
(function (KnownNotebookParameterType) {
|
|
909
|
+
/** String */
|
|
910
|
+
KnownNotebookParameterType["String"] = "string";
|
|
911
|
+
/** Int */
|
|
912
|
+
KnownNotebookParameterType["Int"] = "int";
|
|
913
|
+
/** Float */
|
|
914
|
+
KnownNotebookParameterType["Float"] = "float";
|
|
915
|
+
/** Bool */
|
|
916
|
+
KnownNotebookParameterType["Bool"] = "bool";
|
|
917
|
+
})(exports.KnownNotebookParameterType || (exports.KnownNotebookParameterType = {}));
|
|
918
|
+
/** Known values of {@link SparkJobReferenceType} that the service accepts. */
|
|
919
|
+
exports.KnownSparkJobReferenceType = void 0;
|
|
920
|
+
(function (KnownSparkJobReferenceType) {
|
|
921
|
+
/** SparkJobDefinitionReference */
|
|
922
|
+
KnownSparkJobReferenceType["SparkJobDefinitionReference"] = "SparkJobDefinitionReference";
|
|
923
|
+
})(exports.KnownSparkJobReferenceType || (exports.KnownSparkJobReferenceType = {}));
|
|
894
924
|
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
895
925
|
exports.KnownRecurrenceFrequency = void 0;
|
|
896
926
|
(function (KnownRecurrenceFrequency) {
|
|
@@ -7674,6 +7704,93 @@ const ScriptActivityTypePropertiesLogSettings = {
|
|
|
7674
7704
|
}
|
|
7675
7705
|
}
|
|
7676
7706
|
};
|
|
7707
|
+
const SynapseNotebookReference = {
|
|
7708
|
+
type: {
|
|
7709
|
+
name: "Composite",
|
|
7710
|
+
className: "SynapseNotebookReference",
|
|
7711
|
+
modelProperties: {
|
|
7712
|
+
type: {
|
|
7713
|
+
serializedName: "type",
|
|
7714
|
+
required: true,
|
|
7715
|
+
type: {
|
|
7716
|
+
name: "String"
|
|
7717
|
+
}
|
|
7718
|
+
},
|
|
7719
|
+
referenceName: {
|
|
7720
|
+
serializedName: "referenceName",
|
|
7721
|
+
required: true,
|
|
7722
|
+
type: {
|
|
7723
|
+
name: "any"
|
|
7724
|
+
}
|
|
7725
|
+
}
|
|
7726
|
+
}
|
|
7727
|
+
}
|
|
7728
|
+
};
|
|
7729
|
+
const BigDataPoolParametrizationReference = {
|
|
7730
|
+
type: {
|
|
7731
|
+
name: "Composite",
|
|
7732
|
+
className: "BigDataPoolParametrizationReference",
|
|
7733
|
+
modelProperties: {
|
|
7734
|
+
type: {
|
|
7735
|
+
serializedName: "type",
|
|
7736
|
+
required: true,
|
|
7737
|
+
type: {
|
|
7738
|
+
name: "String"
|
|
7739
|
+
}
|
|
7740
|
+
},
|
|
7741
|
+
referenceName: {
|
|
7742
|
+
serializedName: "referenceName",
|
|
7743
|
+
required: true,
|
|
7744
|
+
type: {
|
|
7745
|
+
name: "any"
|
|
7746
|
+
}
|
|
7747
|
+
}
|
|
7748
|
+
}
|
|
7749
|
+
}
|
|
7750
|
+
};
|
|
7751
|
+
const NotebookParameter = {
|
|
7752
|
+
type: {
|
|
7753
|
+
name: "Composite",
|
|
7754
|
+
className: "NotebookParameter",
|
|
7755
|
+
modelProperties: {
|
|
7756
|
+
value: {
|
|
7757
|
+
serializedName: "value",
|
|
7758
|
+
nullable: true,
|
|
7759
|
+
type: {
|
|
7760
|
+
name: "any"
|
|
7761
|
+
}
|
|
7762
|
+
},
|
|
7763
|
+
type: {
|
|
7764
|
+
serializedName: "type",
|
|
7765
|
+
type: {
|
|
7766
|
+
name: "String"
|
|
7767
|
+
}
|
|
7768
|
+
}
|
|
7769
|
+
}
|
|
7770
|
+
}
|
|
7771
|
+
};
|
|
7772
|
+
const SynapseSparkJobReference = {
|
|
7773
|
+
type: {
|
|
7774
|
+
name: "Composite",
|
|
7775
|
+
className: "SynapseSparkJobReference",
|
|
7776
|
+
modelProperties: {
|
|
7777
|
+
type: {
|
|
7778
|
+
serializedName: "type",
|
|
7779
|
+
required: true,
|
|
7780
|
+
type: {
|
|
7781
|
+
name: "String"
|
|
7782
|
+
}
|
|
7783
|
+
},
|
|
7784
|
+
referenceName: {
|
|
7785
|
+
serializedName: "referenceName",
|
|
7786
|
+
required: true,
|
|
7787
|
+
type: {
|
|
7788
|
+
name: "String"
|
|
7789
|
+
}
|
|
7790
|
+
}
|
|
7791
|
+
}
|
|
7792
|
+
}
|
|
7793
|
+
};
|
|
7677
7794
|
const ScheduleTriggerRecurrence = {
|
|
7678
7795
|
type: {
|
|
7679
7796
|
name: "Composite",
|
|
@@ -11306,6 +11423,28 @@ const TwilioLinkedService = {
|
|
|
11306
11423
|
} })
|
|
11307
11424
|
}
|
|
11308
11425
|
};
|
|
11426
|
+
const GoogleSheetsLinkedService = {
|
|
11427
|
+
serializedName: "GoogleSheets",
|
|
11428
|
+
type: {
|
|
11429
|
+
name: "Composite",
|
|
11430
|
+
className: "GoogleSheetsLinkedService",
|
|
11431
|
+
uberParent: "LinkedService",
|
|
11432
|
+
additionalProperties: { type: { name: "Object" } },
|
|
11433
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
11434
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { apiToken: {
|
|
11435
|
+
serializedName: "typeProperties.apiToken",
|
|
11436
|
+
type: {
|
|
11437
|
+
name: "Composite",
|
|
11438
|
+
className: "SecretBase"
|
|
11439
|
+
}
|
|
11440
|
+
}, encryptedCredential: {
|
|
11441
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
11442
|
+
type: {
|
|
11443
|
+
name: "any"
|
|
11444
|
+
}
|
|
11445
|
+
} })
|
|
11446
|
+
}
|
|
11447
|
+
};
|
|
11309
11448
|
const AmazonS3LinkedService = {
|
|
11310
11449
|
serializedName: "AmazonS3",
|
|
11311
11450
|
type: {
|
|
@@ -14152,6 +14291,28 @@ const SharePointOnlineListLinkedService = {
|
|
|
14152
14291
|
} })
|
|
14153
14292
|
}
|
|
14154
14293
|
};
|
|
14294
|
+
const AzureSynapseArtifactsLinkedService = {
|
|
14295
|
+
serializedName: "AzureSynapseArtifacts",
|
|
14296
|
+
type: {
|
|
14297
|
+
name: "Composite",
|
|
14298
|
+
className: "AzureSynapseArtifactsLinkedService",
|
|
14299
|
+
uberParent: "LinkedService",
|
|
14300
|
+
additionalProperties: { type: { name: "Object" } },
|
|
14301
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
14302
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { endpoint: {
|
|
14303
|
+
serializedName: "typeProperties.endpoint",
|
|
14304
|
+
required: true,
|
|
14305
|
+
type: {
|
|
14306
|
+
name: "any"
|
|
14307
|
+
}
|
|
14308
|
+
}, authentication: {
|
|
14309
|
+
serializedName: "typeProperties.authentication",
|
|
14310
|
+
type: {
|
|
14311
|
+
name: "any"
|
|
14312
|
+
}
|
|
14313
|
+
} })
|
|
14314
|
+
}
|
|
14315
|
+
};
|
|
14155
14316
|
const AmazonS3Dataset = {
|
|
14156
14317
|
serializedName: "AmazonS3Object",
|
|
14157
14318
|
type: {
|
|
@@ -20736,9 +20897,9 @@ const ExecutePipelineActivity = {
|
|
|
20736
20897
|
type: {
|
|
20737
20898
|
name: "Composite",
|
|
20738
20899
|
className: "ExecutePipelineActivity",
|
|
20739
|
-
uberParent: "
|
|
20900
|
+
uberParent: "ControlActivity",
|
|
20740
20901
|
additionalProperties: { type: { name: "Object" } },
|
|
20741
|
-
polymorphicDiscriminator:
|
|
20902
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20742
20903
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { policy: {
|
|
20743
20904
|
serializedName: "policy",
|
|
20744
20905
|
type: {
|
|
@@ -20770,9 +20931,9 @@ const IfConditionActivity = {
|
|
|
20770
20931
|
type: {
|
|
20771
20932
|
name: "Composite",
|
|
20772
20933
|
className: "IfConditionActivity",
|
|
20773
|
-
uberParent: "
|
|
20934
|
+
uberParent: "ControlActivity",
|
|
20774
20935
|
additionalProperties: { type: { name: "Object" } },
|
|
20775
|
-
polymorphicDiscriminator:
|
|
20936
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20776
20937
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { expression: {
|
|
20777
20938
|
serializedName: "typeProperties.expression",
|
|
20778
20939
|
type: {
|
|
@@ -20809,9 +20970,9 @@ const SwitchActivity = {
|
|
|
20809
20970
|
type: {
|
|
20810
20971
|
name: "Composite",
|
|
20811
20972
|
className: "SwitchActivity",
|
|
20812
|
-
uberParent: "
|
|
20973
|
+
uberParent: "ControlActivity",
|
|
20813
20974
|
additionalProperties: { type: { name: "Object" } },
|
|
20814
|
-
polymorphicDiscriminator:
|
|
20975
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20815
20976
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { on: {
|
|
20816
20977
|
serializedName: "typeProperties.on",
|
|
20817
20978
|
type: {
|
|
@@ -20848,9 +21009,9 @@ const ForEachActivity = {
|
|
|
20848
21009
|
type: {
|
|
20849
21010
|
name: "Composite",
|
|
20850
21011
|
className: "ForEachActivity",
|
|
20851
|
-
uberParent: "
|
|
21012
|
+
uberParent: "ControlActivity",
|
|
20852
21013
|
additionalProperties: { type: { name: "Object" } },
|
|
20853
|
-
polymorphicDiscriminator:
|
|
21014
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20854
21015
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { isSequential: {
|
|
20855
21016
|
serializedName: "typeProperties.isSequential",
|
|
20856
21017
|
type: {
|
|
@@ -20890,9 +21051,9 @@ const WaitActivity = {
|
|
|
20890
21051
|
type: {
|
|
20891
21052
|
name: "Composite",
|
|
20892
21053
|
className: "WaitActivity",
|
|
20893
|
-
uberParent: "
|
|
21054
|
+
uberParent: "ControlActivity",
|
|
20894
21055
|
additionalProperties: { type: { name: "Object" } },
|
|
20895
|
-
polymorphicDiscriminator:
|
|
21056
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20896
21057
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { waitTimeInSeconds: {
|
|
20897
21058
|
serializedName: "typeProperties.waitTimeInSeconds",
|
|
20898
21059
|
required: true,
|
|
@@ -20907,9 +21068,9 @@ const FailActivity = {
|
|
|
20907
21068
|
type: {
|
|
20908
21069
|
name: "Composite",
|
|
20909
21070
|
className: "FailActivity",
|
|
20910
|
-
uberParent: "
|
|
21071
|
+
uberParent: "ControlActivity",
|
|
20911
21072
|
additionalProperties: { type: { name: "Object" } },
|
|
20912
|
-
polymorphicDiscriminator:
|
|
21073
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20913
21074
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { message: {
|
|
20914
21075
|
serializedName: "typeProperties.message",
|
|
20915
21076
|
required: true,
|
|
@@ -20930,9 +21091,9 @@ const UntilActivity = {
|
|
|
20930
21091
|
type: {
|
|
20931
21092
|
name: "Composite",
|
|
20932
21093
|
className: "UntilActivity",
|
|
20933
|
-
uberParent: "
|
|
21094
|
+
uberParent: "ControlActivity",
|
|
20934
21095
|
additionalProperties: { type: { name: "Object" } },
|
|
20935
|
-
polymorphicDiscriminator:
|
|
21096
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20936
21097
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { expression: {
|
|
20937
21098
|
serializedName: "typeProperties.expression",
|
|
20938
21099
|
type: {
|
|
@@ -20964,9 +21125,9 @@ const ValidationActivity = {
|
|
|
20964
21125
|
type: {
|
|
20965
21126
|
name: "Composite",
|
|
20966
21127
|
className: "ValidationActivity",
|
|
20967
|
-
uberParent: "
|
|
21128
|
+
uberParent: "ControlActivity",
|
|
20968
21129
|
additionalProperties: { type: { name: "Object" } },
|
|
20969
|
-
polymorphicDiscriminator:
|
|
21130
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20970
21131
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { timeout: {
|
|
20971
21132
|
serializedName: "typeProperties.timeout",
|
|
20972
21133
|
type: {
|
|
@@ -21001,9 +21162,9 @@ const FilterActivity = {
|
|
|
21001
21162
|
type: {
|
|
21002
21163
|
name: "Composite",
|
|
21003
21164
|
className: "FilterActivity",
|
|
21004
|
-
uberParent: "
|
|
21165
|
+
uberParent: "ControlActivity",
|
|
21005
21166
|
additionalProperties: { type: { name: "Object" } },
|
|
21006
|
-
polymorphicDiscriminator:
|
|
21167
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
21007
21168
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { items: {
|
|
21008
21169
|
serializedName: "typeProperties.items",
|
|
21009
21170
|
type: {
|
|
@@ -21024,9 +21185,9 @@ const SetVariableActivity = {
|
|
|
21024
21185
|
type: {
|
|
21025
21186
|
name: "Composite",
|
|
21026
21187
|
className: "SetVariableActivity",
|
|
21027
|
-
uberParent: "
|
|
21188
|
+
uberParent: "ControlActivity",
|
|
21028
21189
|
additionalProperties: { type: { name: "Object" } },
|
|
21029
|
-
polymorphicDiscriminator:
|
|
21190
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
21030
21191
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { variableName: {
|
|
21031
21192
|
serializedName: "typeProperties.variableName",
|
|
21032
21193
|
type: {
|
|
@@ -21045,9 +21206,9 @@ const AppendVariableActivity = {
|
|
|
21045
21206
|
type: {
|
|
21046
21207
|
name: "Composite",
|
|
21047
21208
|
className: "AppendVariableActivity",
|
|
21048
|
-
uberParent: "
|
|
21209
|
+
uberParent: "ControlActivity",
|
|
21049
21210
|
additionalProperties: { type: { name: "Object" } },
|
|
21050
|
-
polymorphicDiscriminator:
|
|
21211
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
21051
21212
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { variableName: {
|
|
21052
21213
|
serializedName: "typeProperties.variableName",
|
|
21053
21214
|
type: {
|
|
@@ -21066,9 +21227,9 @@ const WebHookActivity = {
|
|
|
21066
21227
|
type: {
|
|
21067
21228
|
name: "Composite",
|
|
21068
21229
|
className: "WebHookActivity",
|
|
21069
|
-
uberParent: "
|
|
21230
|
+
uberParent: "ControlActivity",
|
|
21070
21231
|
additionalProperties: { type: { name: "Object" } },
|
|
21071
|
-
polymorphicDiscriminator:
|
|
21232
|
+
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
21072
21233
|
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { method: {
|
|
21073
21234
|
serializedName: "typeProperties.method",
|
|
21074
21235
|
required: true,
|
|
@@ -21115,9 +21276,9 @@ const CopyActivity = {
|
|
|
21115
21276
|
type: {
|
|
21116
21277
|
name: "Composite",
|
|
21117
21278
|
className: "CopyActivity",
|
|
21118
|
-
uberParent: "
|
|
21279
|
+
uberParent: "ExecutionActivity",
|
|
21119
21280
|
additionalProperties: { type: { name: "Object" } },
|
|
21120
|
-
polymorphicDiscriminator:
|
|
21281
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21121
21282
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { inputs: {
|
|
21122
21283
|
serializedName: "inputs",
|
|
21123
21284
|
type: {
|
|
@@ -21240,9 +21401,9 @@ const HDInsightHiveActivity = {
|
|
|
21240
21401
|
type: {
|
|
21241
21402
|
name: "Composite",
|
|
21242
21403
|
className: "HDInsightHiveActivity",
|
|
21243
|
-
uberParent: "
|
|
21404
|
+
uberParent: "ExecutionActivity",
|
|
21244
21405
|
additionalProperties: { type: { name: "Object" } },
|
|
21245
|
-
polymorphicDiscriminator:
|
|
21406
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21246
21407
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { storageLinkedServices: {
|
|
21247
21408
|
serializedName: "typeProperties.storageLinkedServices",
|
|
21248
21409
|
type: {
|
|
@@ -21309,9 +21470,9 @@ const HDInsightPigActivity = {
|
|
|
21309
21470
|
type: {
|
|
21310
21471
|
name: "Composite",
|
|
21311
21472
|
className: "HDInsightPigActivity",
|
|
21312
|
-
uberParent: "
|
|
21473
|
+
uberParent: "ExecutionActivity",
|
|
21313
21474
|
additionalProperties: { type: { name: "Object" } },
|
|
21314
|
-
polymorphicDiscriminator:
|
|
21475
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21315
21476
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { storageLinkedServices: {
|
|
21316
21477
|
serializedName: "typeProperties.storageLinkedServices",
|
|
21317
21478
|
type: {
|
|
@@ -21358,9 +21519,9 @@ const HDInsightMapReduceActivity = {
|
|
|
21358
21519
|
type: {
|
|
21359
21520
|
name: "Composite",
|
|
21360
21521
|
className: "HDInsightMapReduceActivity",
|
|
21361
|
-
uberParent: "
|
|
21522
|
+
uberParent: "ExecutionActivity",
|
|
21362
21523
|
additionalProperties: { type: { name: "Object" } },
|
|
21363
|
-
polymorphicDiscriminator:
|
|
21524
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21364
21525
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { storageLinkedServices: {
|
|
21365
21526
|
serializedName: "typeProperties.storageLinkedServices",
|
|
21366
21527
|
type: {
|
|
@@ -21429,9 +21590,9 @@ const HDInsightStreamingActivity = {
|
|
|
21429
21590
|
type: {
|
|
21430
21591
|
name: "Composite",
|
|
21431
21592
|
className: "HDInsightStreamingActivity",
|
|
21432
|
-
uberParent: "
|
|
21593
|
+
uberParent: "ExecutionActivity",
|
|
21433
21594
|
additionalProperties: { type: { name: "Object" } },
|
|
21434
|
-
polymorphicDiscriminator:
|
|
21595
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21435
21596
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { storageLinkedServices: {
|
|
21436
21597
|
serializedName: "typeProperties.storageLinkedServices",
|
|
21437
21598
|
type: {
|
|
@@ -21528,9 +21689,9 @@ const HDInsightSparkActivity = {
|
|
|
21528
21689
|
type: {
|
|
21529
21690
|
name: "Composite",
|
|
21530
21691
|
className: "HDInsightSparkActivity",
|
|
21531
|
-
uberParent: "
|
|
21692
|
+
uberParent: "ExecutionActivity",
|
|
21532
21693
|
additionalProperties: { type: { name: "Object" } },
|
|
21533
|
-
polymorphicDiscriminator:
|
|
21694
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21534
21695
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { rootPath: {
|
|
21535
21696
|
serializedName: "typeProperties.rootPath",
|
|
21536
21697
|
required: true,
|
|
@@ -21588,9 +21749,9 @@ const ExecuteSsisPackageActivity = {
|
|
|
21588
21749
|
type: {
|
|
21589
21750
|
name: "Composite",
|
|
21590
21751
|
className: "ExecuteSsisPackageActivity",
|
|
21591
|
-
uberParent: "
|
|
21752
|
+
uberParent: "ExecutionActivity",
|
|
21592
21753
|
additionalProperties: { type: { name: "Object" } },
|
|
21593
|
-
polymorphicDiscriminator:
|
|
21754
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21594
21755
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { packageLocation: {
|
|
21595
21756
|
serializedName: "typeProperties.packageLocation",
|
|
21596
21757
|
type: {
|
|
@@ -21688,9 +21849,9 @@ const CustomActivity = {
|
|
|
21688
21849
|
type: {
|
|
21689
21850
|
name: "Composite",
|
|
21690
21851
|
className: "CustomActivity",
|
|
21691
|
-
uberParent: "
|
|
21852
|
+
uberParent: "ExecutionActivity",
|
|
21692
21853
|
additionalProperties: { type: { name: "Object" } },
|
|
21693
|
-
polymorphicDiscriminator:
|
|
21854
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21694
21855
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { command: {
|
|
21695
21856
|
serializedName: "typeProperties.command",
|
|
21696
21857
|
required: true,
|
|
@@ -21738,9 +21899,9 @@ const SqlServerStoredProcedureActivity = {
|
|
|
21738
21899
|
type: {
|
|
21739
21900
|
name: "Composite",
|
|
21740
21901
|
className: "SqlServerStoredProcedureActivity",
|
|
21741
|
-
uberParent: "
|
|
21902
|
+
uberParent: "ExecutionActivity",
|
|
21742
21903
|
additionalProperties: { type: { name: "Object" } },
|
|
21743
|
-
polymorphicDiscriminator:
|
|
21904
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21744
21905
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { storedProcedureName: {
|
|
21745
21906
|
serializedName: "typeProperties.storedProcedureName",
|
|
21746
21907
|
required: true,
|
|
@@ -21760,9 +21921,9 @@ const DeleteActivity = {
|
|
|
21760
21921
|
type: {
|
|
21761
21922
|
name: "Composite",
|
|
21762
21923
|
className: "DeleteActivity",
|
|
21763
|
-
uberParent: "
|
|
21924
|
+
uberParent: "ExecutionActivity",
|
|
21764
21925
|
additionalProperties: { type: { name: "Object" } },
|
|
21765
|
-
polymorphicDiscriminator:
|
|
21926
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21766
21927
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { recursive: {
|
|
21767
21928
|
serializedName: "typeProperties.recursive",
|
|
21768
21929
|
type: {
|
|
@@ -21807,9 +21968,9 @@ const AzureDataExplorerCommandActivity = {
|
|
|
21807
21968
|
type: {
|
|
21808
21969
|
name: "Composite",
|
|
21809
21970
|
className: "AzureDataExplorerCommandActivity",
|
|
21810
|
-
uberParent: "
|
|
21971
|
+
uberParent: "ExecutionActivity",
|
|
21811
21972
|
additionalProperties: { type: { name: "Object" } },
|
|
21812
|
-
polymorphicDiscriminator:
|
|
21973
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21813
21974
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { command: {
|
|
21814
21975
|
serializedName: "typeProperties.command",
|
|
21815
21976
|
required: true,
|
|
@@ -21829,9 +21990,9 @@ const LookupActivity = {
|
|
|
21829
21990
|
type: {
|
|
21830
21991
|
name: "Composite",
|
|
21831
21992
|
className: "LookupActivity",
|
|
21832
|
-
uberParent: "
|
|
21993
|
+
uberParent: "ExecutionActivity",
|
|
21833
21994
|
additionalProperties: { type: { name: "Object" } },
|
|
21834
|
-
polymorphicDiscriminator:
|
|
21995
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21835
21996
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { source: {
|
|
21836
21997
|
serializedName: "typeProperties.source",
|
|
21837
21998
|
type: {
|
|
@@ -21857,9 +22018,9 @@ const WebActivity = {
|
|
|
21857
22018
|
type: {
|
|
21858
22019
|
name: "Composite",
|
|
21859
22020
|
className: "WebActivity",
|
|
21860
|
-
uberParent: "
|
|
22021
|
+
uberParent: "ExecutionActivity",
|
|
21861
22022
|
additionalProperties: { type: { name: "Object" } },
|
|
21862
|
-
polymorphicDiscriminator:
|
|
22023
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21863
22024
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { method: {
|
|
21864
22025
|
serializedName: "typeProperties.method",
|
|
21865
22026
|
required: true,
|
|
@@ -21929,9 +22090,9 @@ const GetMetadataActivity = {
|
|
|
21929
22090
|
type: {
|
|
21930
22091
|
name: "Composite",
|
|
21931
22092
|
className: "GetMetadataActivity",
|
|
21932
|
-
uberParent: "
|
|
22093
|
+
uberParent: "ExecutionActivity",
|
|
21933
22094
|
additionalProperties: { type: { name: "Object" } },
|
|
21934
|
-
polymorphicDiscriminator:
|
|
22095
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21935
22096
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { dataset: {
|
|
21936
22097
|
serializedName: "typeProperties.dataset",
|
|
21937
22098
|
type: {
|
|
@@ -21968,9 +22129,9 @@ const AzureMLBatchExecutionActivity = {
|
|
|
21968
22129
|
type: {
|
|
21969
22130
|
name: "Composite",
|
|
21970
22131
|
className: "AzureMLBatchExecutionActivity",
|
|
21971
|
-
uberParent: "
|
|
22132
|
+
uberParent: "ExecutionActivity",
|
|
21972
22133
|
additionalProperties: { type: { name: "Object" } },
|
|
21973
|
-
polymorphicDiscriminator:
|
|
22134
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
21974
22135
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { globalParameters: {
|
|
21975
22136
|
serializedName: "typeProperties.globalParameters",
|
|
21976
22137
|
type: {
|
|
@@ -22001,9 +22162,9 @@ const AzureMLUpdateResourceActivity = {
|
|
|
22001
22162
|
type: {
|
|
22002
22163
|
name: "Composite",
|
|
22003
22164
|
className: "AzureMLUpdateResourceActivity",
|
|
22004
|
-
uberParent: "
|
|
22165
|
+
uberParent: "ExecutionActivity",
|
|
22005
22166
|
additionalProperties: { type: { name: "Object" } },
|
|
22006
|
-
polymorphicDiscriminator:
|
|
22167
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22007
22168
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { trainedModelName: {
|
|
22008
22169
|
serializedName: "typeProperties.trainedModelName",
|
|
22009
22170
|
required: true,
|
|
@@ -22030,9 +22191,9 @@ const AzureMLExecutePipelineActivity = {
|
|
|
22030
22191
|
type: {
|
|
22031
22192
|
name: "Composite",
|
|
22032
22193
|
className: "AzureMLExecutePipelineActivity",
|
|
22033
|
-
uberParent: "
|
|
22194
|
+
uberParent: "ExecutionActivity",
|
|
22034
22195
|
additionalProperties: { type: { name: "Object" } },
|
|
22035
|
-
polymorphicDiscriminator:
|
|
22196
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22036
22197
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { mlPipelineId: {
|
|
22037
22198
|
serializedName: "typeProperties.mlPipelineId",
|
|
22038
22199
|
type: {
|
|
@@ -22081,9 +22242,9 @@ const DataLakeAnalyticsUsqlActivity = {
|
|
|
22081
22242
|
type: {
|
|
22082
22243
|
name: "Composite",
|
|
22083
22244
|
className: "DataLakeAnalyticsUsqlActivity",
|
|
22084
|
-
uberParent: "
|
|
22245
|
+
uberParent: "ExecutionActivity",
|
|
22085
22246
|
additionalProperties: { type: { name: "Object" } },
|
|
22086
|
-
polymorphicDiscriminator:
|
|
22247
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22087
22248
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { scriptPath: {
|
|
22088
22249
|
serializedName: "typeProperties.scriptPath",
|
|
22089
22250
|
required: true,
|
|
@@ -22130,9 +22291,9 @@ const DatabricksNotebookActivity = {
|
|
|
22130
22291
|
type: {
|
|
22131
22292
|
name: "Composite",
|
|
22132
22293
|
className: "DatabricksNotebookActivity",
|
|
22133
|
-
uberParent: "
|
|
22294
|
+
uberParent: "ExecutionActivity",
|
|
22134
22295
|
additionalProperties: { type: { name: "Object" } },
|
|
22135
|
-
polymorphicDiscriminator:
|
|
22296
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22136
22297
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { notebookPath: {
|
|
22137
22298
|
serializedName: "typeProperties.notebookPath",
|
|
22138
22299
|
required: true,
|
|
@@ -22164,9 +22325,9 @@ const DatabricksSparkJarActivity = {
|
|
|
22164
22325
|
type: {
|
|
22165
22326
|
name: "Composite",
|
|
22166
22327
|
className: "DatabricksSparkJarActivity",
|
|
22167
|
-
uberParent: "
|
|
22328
|
+
uberParent: "ExecutionActivity",
|
|
22168
22329
|
additionalProperties: { type: { name: "Object" } },
|
|
22169
|
-
polymorphicDiscriminator:
|
|
22330
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22170
22331
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { mainClassName: {
|
|
22171
22332
|
serializedName: "typeProperties.mainClassName",
|
|
22172
22333
|
required: true,
|
|
@@ -22202,9 +22363,9 @@ const DatabricksSparkPythonActivity = {
|
|
|
22202
22363
|
type: {
|
|
22203
22364
|
name: "Composite",
|
|
22204
22365
|
className: "DatabricksSparkPythonActivity",
|
|
22205
|
-
uberParent: "
|
|
22366
|
+
uberParent: "ExecutionActivity",
|
|
22206
22367
|
additionalProperties: { type: { name: "Object" } },
|
|
22207
|
-
polymorphicDiscriminator:
|
|
22368
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22208
22369
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { pythonFile: {
|
|
22209
22370
|
serializedName: "typeProperties.pythonFile",
|
|
22210
22371
|
required: true,
|
|
@@ -22240,9 +22401,9 @@ const AzureFunctionActivity = {
|
|
|
22240
22401
|
type: {
|
|
22241
22402
|
name: "Composite",
|
|
22242
22403
|
className: "AzureFunctionActivity",
|
|
22243
|
-
uberParent: "
|
|
22404
|
+
uberParent: "ExecutionActivity",
|
|
22244
22405
|
additionalProperties: { type: { name: "Object" } },
|
|
22245
|
-
polymorphicDiscriminator:
|
|
22406
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22246
22407
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { method: {
|
|
22247
22408
|
serializedName: "typeProperties.method",
|
|
22248
22409
|
required: true,
|
|
@@ -22273,9 +22434,9 @@ const ExecuteDataFlowActivity = {
|
|
|
22273
22434
|
type: {
|
|
22274
22435
|
name: "Composite",
|
|
22275
22436
|
className: "ExecuteDataFlowActivity",
|
|
22276
|
-
uberParent: "
|
|
22437
|
+
uberParent: "ExecutionActivity",
|
|
22277
22438
|
additionalProperties: { type: { name: "Object" } },
|
|
22278
|
-
polymorphicDiscriminator:
|
|
22439
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22279
22440
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { dataFlow: {
|
|
22280
22441
|
serializedName: "typeProperties.dataFlow",
|
|
22281
22442
|
type: {
|
|
@@ -22328,9 +22489,9 @@ const ScriptActivity = {
|
|
|
22328
22489
|
type: {
|
|
22329
22490
|
name: "Composite",
|
|
22330
22491
|
className: "ScriptActivity",
|
|
22331
|
-
uberParent: "
|
|
22492
|
+
uberParent: "ExecutionActivity",
|
|
22332
22493
|
additionalProperties: { type: { name: "Object" } },
|
|
22333
|
-
polymorphicDiscriminator:
|
|
22494
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22334
22495
|
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { scripts: {
|
|
22335
22496
|
serializedName: "typeProperties.scripts",
|
|
22336
22497
|
type: {
|
|
@@ -22351,14 +22512,136 @@ const ScriptActivity = {
|
|
|
22351
22512
|
} })
|
|
22352
22513
|
}
|
|
22353
22514
|
};
|
|
22515
|
+
const SynapseNotebookActivity = {
|
|
22516
|
+
serializedName: "SynapseNotebook",
|
|
22517
|
+
type: {
|
|
22518
|
+
name: "Composite",
|
|
22519
|
+
className: "SynapseNotebookActivity",
|
|
22520
|
+
uberParent: "ExecutionActivity",
|
|
22521
|
+
additionalProperties: { type: { name: "Object" } },
|
|
22522
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22523
|
+
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { notebook: {
|
|
22524
|
+
serializedName: "typeProperties.notebook",
|
|
22525
|
+
type: {
|
|
22526
|
+
name: "Composite",
|
|
22527
|
+
className: "SynapseNotebookReference"
|
|
22528
|
+
}
|
|
22529
|
+
}, sparkPool: {
|
|
22530
|
+
serializedName: "typeProperties.sparkPool",
|
|
22531
|
+
type: {
|
|
22532
|
+
name: "Composite",
|
|
22533
|
+
className: "BigDataPoolParametrizationReference"
|
|
22534
|
+
}
|
|
22535
|
+
}, parameters: {
|
|
22536
|
+
serializedName: "typeProperties.parameters",
|
|
22537
|
+
type: {
|
|
22538
|
+
name: "Dictionary",
|
|
22539
|
+
value: { type: { name: "Composite", className: "NotebookParameter" } }
|
|
22540
|
+
}
|
|
22541
|
+
}, executorSize: {
|
|
22542
|
+
serializedName: "typeProperties.executorSize",
|
|
22543
|
+
type: {
|
|
22544
|
+
name: "any"
|
|
22545
|
+
}
|
|
22546
|
+
}, conf: {
|
|
22547
|
+
serializedName: "typeProperties.conf",
|
|
22548
|
+
type: {
|
|
22549
|
+
name: "any"
|
|
22550
|
+
}
|
|
22551
|
+
}, driverSize: {
|
|
22552
|
+
serializedName: "typeProperties.driverSize",
|
|
22553
|
+
type: {
|
|
22554
|
+
name: "any"
|
|
22555
|
+
}
|
|
22556
|
+
}, numExecutors: {
|
|
22557
|
+
serializedName: "typeProperties.numExecutors",
|
|
22558
|
+
type: {
|
|
22559
|
+
name: "Number"
|
|
22560
|
+
}
|
|
22561
|
+
} })
|
|
22562
|
+
}
|
|
22563
|
+
};
|
|
22564
|
+
const SynapseSparkJobDefinitionActivity = {
|
|
22565
|
+
serializedName: "SparkJob",
|
|
22566
|
+
type: {
|
|
22567
|
+
name: "Composite",
|
|
22568
|
+
className: "SynapseSparkJobDefinitionActivity",
|
|
22569
|
+
uberParent: "ExecutionActivity",
|
|
22570
|
+
additionalProperties: { type: { name: "Object" } },
|
|
22571
|
+
polymorphicDiscriminator: ExecutionActivity.type.polymorphicDiscriminator,
|
|
22572
|
+
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { sparkJob: {
|
|
22573
|
+
serializedName: "typeProperties.sparkJob",
|
|
22574
|
+
type: {
|
|
22575
|
+
name: "Composite",
|
|
22576
|
+
className: "SynapseSparkJobReference"
|
|
22577
|
+
}
|
|
22578
|
+
}, arguments: {
|
|
22579
|
+
serializedName: "typeProperties.args",
|
|
22580
|
+
type: {
|
|
22581
|
+
name: "Sequence",
|
|
22582
|
+
element: {
|
|
22583
|
+
type: {
|
|
22584
|
+
name: "any"
|
|
22585
|
+
}
|
|
22586
|
+
}
|
|
22587
|
+
}
|
|
22588
|
+
}, file: {
|
|
22589
|
+
serializedName: "typeProperties.file",
|
|
22590
|
+
type: {
|
|
22591
|
+
name: "any"
|
|
22592
|
+
}
|
|
22593
|
+
}, className: {
|
|
22594
|
+
serializedName: "typeProperties.className",
|
|
22595
|
+
type: {
|
|
22596
|
+
name: "any"
|
|
22597
|
+
}
|
|
22598
|
+
}, files: {
|
|
22599
|
+
serializedName: "typeProperties.files",
|
|
22600
|
+
type: {
|
|
22601
|
+
name: "Sequence",
|
|
22602
|
+
element: {
|
|
22603
|
+
type: {
|
|
22604
|
+
name: "any"
|
|
22605
|
+
}
|
|
22606
|
+
}
|
|
22607
|
+
}
|
|
22608
|
+
}, targetBigDataPool: {
|
|
22609
|
+
serializedName: "typeProperties.targetBigDataPool",
|
|
22610
|
+
type: {
|
|
22611
|
+
name: "Composite",
|
|
22612
|
+
className: "BigDataPoolParametrizationReference"
|
|
22613
|
+
}
|
|
22614
|
+
}, executorSize: {
|
|
22615
|
+
serializedName: "typeProperties.executorSize",
|
|
22616
|
+
type: {
|
|
22617
|
+
name: "any"
|
|
22618
|
+
}
|
|
22619
|
+
}, conf: {
|
|
22620
|
+
serializedName: "typeProperties.conf",
|
|
22621
|
+
type: {
|
|
22622
|
+
name: "any"
|
|
22623
|
+
}
|
|
22624
|
+
}, driverSize: {
|
|
22625
|
+
serializedName: "typeProperties.driverSize",
|
|
22626
|
+
type: {
|
|
22627
|
+
name: "any"
|
|
22628
|
+
}
|
|
22629
|
+
}, numExecutors: {
|
|
22630
|
+
serializedName: "typeProperties.numExecutors",
|
|
22631
|
+
type: {
|
|
22632
|
+
name: "Number"
|
|
22633
|
+
}
|
|
22634
|
+
} })
|
|
22635
|
+
}
|
|
22636
|
+
};
|
|
22354
22637
|
const ScheduleTrigger = {
|
|
22355
22638
|
serializedName: "ScheduleTrigger",
|
|
22356
22639
|
type: {
|
|
22357
22640
|
name: "Composite",
|
|
22358
22641
|
className: "ScheduleTrigger",
|
|
22359
|
-
uberParent: "
|
|
22642
|
+
uberParent: "MultiplePipelineTrigger",
|
|
22360
22643
|
additionalProperties: { type: { name: "Object" } },
|
|
22361
|
-
polymorphicDiscriminator:
|
|
22644
|
+
polymorphicDiscriminator: MultiplePipelineTrigger.type.polymorphicDiscriminator,
|
|
22362
22645
|
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { recurrence: {
|
|
22363
22646
|
serializedName: "typeProperties.recurrence",
|
|
22364
22647
|
type: {
|
|
@@ -22373,9 +22656,9 @@ const BlobTrigger = {
|
|
|
22373
22656
|
type: {
|
|
22374
22657
|
name: "Composite",
|
|
22375
22658
|
className: "BlobTrigger",
|
|
22376
|
-
uberParent: "
|
|
22659
|
+
uberParent: "MultiplePipelineTrigger",
|
|
22377
22660
|
additionalProperties: { type: { name: "Object" } },
|
|
22378
|
-
polymorphicDiscriminator:
|
|
22661
|
+
polymorphicDiscriminator: MultiplePipelineTrigger.type.polymorphicDiscriminator,
|
|
22379
22662
|
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { folderPath: {
|
|
22380
22663
|
serializedName: "typeProperties.folderPath",
|
|
22381
22664
|
required: true,
|
|
@@ -22402,9 +22685,9 @@ const BlobEventsTrigger = {
|
|
|
22402
22685
|
type: {
|
|
22403
22686
|
name: "Composite",
|
|
22404
22687
|
className: "BlobEventsTrigger",
|
|
22405
|
-
uberParent: "
|
|
22688
|
+
uberParent: "MultiplePipelineTrigger",
|
|
22406
22689
|
additionalProperties: { type: { name: "Object" } },
|
|
22407
|
-
polymorphicDiscriminator:
|
|
22690
|
+
polymorphicDiscriminator: MultiplePipelineTrigger.type.polymorphicDiscriminator,
|
|
22408
22691
|
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { blobPathBeginsWith: {
|
|
22409
22692
|
serializedName: "typeProperties.blobPathBeginsWith",
|
|
22410
22693
|
type: {
|
|
@@ -22445,9 +22728,9 @@ const CustomEventsTrigger = {
|
|
|
22445
22728
|
type: {
|
|
22446
22729
|
name: "Composite",
|
|
22447
22730
|
className: "CustomEventsTrigger",
|
|
22448
|
-
uberParent: "
|
|
22731
|
+
uberParent: "MultiplePipelineTrigger",
|
|
22449
22732
|
additionalProperties: { type: { name: "Object" } },
|
|
22450
|
-
polymorphicDiscriminator:
|
|
22733
|
+
polymorphicDiscriminator: MultiplePipelineTrigger.type.polymorphicDiscriminator,
|
|
22451
22734
|
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { subjectBeginsWith: {
|
|
22452
22735
|
serializedName: "typeProperties.subjectBeginsWith",
|
|
22453
22736
|
type: {
|
|
@@ -22507,9 +22790,9 @@ const AzureTableSource = {
|
|
|
22507
22790
|
type: {
|
|
22508
22791
|
name: "Composite",
|
|
22509
22792
|
className: "AzureTableSource",
|
|
22510
|
-
uberParent: "
|
|
22793
|
+
uberParent: "TabularSource",
|
|
22511
22794
|
additionalProperties: { type: { name: "Object" } },
|
|
22512
|
-
polymorphicDiscriminator:
|
|
22795
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22513
22796
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { azureTableSourceQuery: {
|
|
22514
22797
|
serializedName: "azureTableSourceQuery",
|
|
22515
22798
|
type: {
|
|
@@ -22528,9 +22811,9 @@ const InformixSource = {
|
|
|
22528
22811
|
type: {
|
|
22529
22812
|
name: "Composite",
|
|
22530
22813
|
className: "InformixSource",
|
|
22531
|
-
uberParent: "
|
|
22814
|
+
uberParent: "TabularSource",
|
|
22532
22815
|
additionalProperties: { type: { name: "Object" } },
|
|
22533
|
-
polymorphicDiscriminator:
|
|
22816
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22534
22817
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22535
22818
|
serializedName: "query",
|
|
22536
22819
|
type: {
|
|
@@ -22544,9 +22827,9 @@ const Db2Source = {
|
|
|
22544
22827
|
type: {
|
|
22545
22828
|
name: "Composite",
|
|
22546
22829
|
className: "Db2Source",
|
|
22547
|
-
uberParent: "
|
|
22830
|
+
uberParent: "TabularSource",
|
|
22548
22831
|
additionalProperties: { type: { name: "Object" } },
|
|
22549
|
-
polymorphicDiscriminator:
|
|
22832
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22550
22833
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22551
22834
|
serializedName: "query",
|
|
22552
22835
|
type: {
|
|
@@ -22560,9 +22843,9 @@ const OdbcSource = {
|
|
|
22560
22843
|
type: {
|
|
22561
22844
|
name: "Composite",
|
|
22562
22845
|
className: "OdbcSource",
|
|
22563
|
-
uberParent: "
|
|
22846
|
+
uberParent: "TabularSource",
|
|
22564
22847
|
additionalProperties: { type: { name: "Object" } },
|
|
22565
|
-
polymorphicDiscriminator:
|
|
22848
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22566
22849
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22567
22850
|
serializedName: "query",
|
|
22568
22851
|
type: {
|
|
@@ -22576,9 +22859,9 @@ const MySqlSource = {
|
|
|
22576
22859
|
type: {
|
|
22577
22860
|
name: "Composite",
|
|
22578
22861
|
className: "MySqlSource",
|
|
22579
|
-
uberParent: "
|
|
22862
|
+
uberParent: "TabularSource",
|
|
22580
22863
|
additionalProperties: { type: { name: "Object" } },
|
|
22581
|
-
polymorphicDiscriminator:
|
|
22864
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22582
22865
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22583
22866
|
serializedName: "query",
|
|
22584
22867
|
type: {
|
|
@@ -22592,9 +22875,9 @@ const PostgreSqlSource = {
|
|
|
22592
22875
|
type: {
|
|
22593
22876
|
name: "Composite",
|
|
22594
22877
|
className: "PostgreSqlSource",
|
|
22595
|
-
uberParent: "
|
|
22878
|
+
uberParent: "TabularSource",
|
|
22596
22879
|
additionalProperties: { type: { name: "Object" } },
|
|
22597
|
-
polymorphicDiscriminator:
|
|
22880
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22598
22881
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22599
22882
|
serializedName: "query",
|
|
22600
22883
|
type: {
|
|
@@ -22608,9 +22891,9 @@ const SybaseSource = {
|
|
|
22608
22891
|
type: {
|
|
22609
22892
|
name: "Composite",
|
|
22610
22893
|
className: "SybaseSource",
|
|
22611
|
-
uberParent: "
|
|
22894
|
+
uberParent: "TabularSource",
|
|
22612
22895
|
additionalProperties: { type: { name: "Object" } },
|
|
22613
|
-
polymorphicDiscriminator:
|
|
22896
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22614
22897
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22615
22898
|
serializedName: "query",
|
|
22616
22899
|
type: {
|
|
@@ -22624,9 +22907,9 @@ const SapBwSource = {
|
|
|
22624
22907
|
type: {
|
|
22625
22908
|
name: "Composite",
|
|
22626
22909
|
className: "SapBwSource",
|
|
22627
|
-
uberParent: "
|
|
22910
|
+
uberParent: "TabularSource",
|
|
22628
22911
|
additionalProperties: { type: { name: "Object" } },
|
|
22629
|
-
polymorphicDiscriminator:
|
|
22912
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22630
22913
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22631
22914
|
serializedName: "query",
|
|
22632
22915
|
type: {
|
|
@@ -22640,9 +22923,9 @@ const SalesforceSource = {
|
|
|
22640
22923
|
type: {
|
|
22641
22924
|
name: "Composite",
|
|
22642
22925
|
className: "SalesforceSource",
|
|
22643
|
-
uberParent: "
|
|
22926
|
+
uberParent: "TabularSource",
|
|
22644
22927
|
additionalProperties: { type: { name: "Object" } },
|
|
22645
|
-
polymorphicDiscriminator:
|
|
22928
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22646
22929
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22647
22930
|
serializedName: "query",
|
|
22648
22931
|
type: {
|
|
@@ -22661,9 +22944,9 @@ const SapCloudForCustomerSource = {
|
|
|
22661
22944
|
type: {
|
|
22662
22945
|
name: "Composite",
|
|
22663
22946
|
className: "SapCloudForCustomerSource",
|
|
22664
|
-
uberParent: "
|
|
22947
|
+
uberParent: "TabularSource",
|
|
22665
22948
|
additionalProperties: { type: { name: "Object" } },
|
|
22666
|
-
polymorphicDiscriminator:
|
|
22949
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22667
22950
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22668
22951
|
serializedName: "query",
|
|
22669
22952
|
type: {
|
|
@@ -22682,9 +22965,9 @@ const SapEccSource = {
|
|
|
22682
22965
|
type: {
|
|
22683
22966
|
name: "Composite",
|
|
22684
22967
|
className: "SapEccSource",
|
|
22685
|
-
uberParent: "
|
|
22968
|
+
uberParent: "TabularSource",
|
|
22686
22969
|
additionalProperties: { type: { name: "Object" } },
|
|
22687
|
-
polymorphicDiscriminator:
|
|
22970
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22688
22971
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22689
22972
|
serializedName: "query",
|
|
22690
22973
|
type: {
|
|
@@ -22703,9 +22986,9 @@ const SapHanaSource = {
|
|
|
22703
22986
|
type: {
|
|
22704
22987
|
name: "Composite",
|
|
22705
22988
|
className: "SapHanaSource",
|
|
22706
|
-
uberParent: "
|
|
22989
|
+
uberParent: "TabularSource",
|
|
22707
22990
|
additionalProperties: { type: { name: "Object" } },
|
|
22708
|
-
polymorphicDiscriminator:
|
|
22991
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22709
22992
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
22710
22993
|
serializedName: "query",
|
|
22711
22994
|
type: {
|
|
@@ -22735,9 +23018,9 @@ const SapOpenHubSource = {
|
|
|
22735
23018
|
type: {
|
|
22736
23019
|
name: "Composite",
|
|
22737
23020
|
className: "SapOpenHubSource",
|
|
22738
|
-
uberParent: "
|
|
23021
|
+
uberParent: "TabularSource",
|
|
22739
23022
|
additionalProperties: { type: { name: "Object" } },
|
|
22740
|
-
polymorphicDiscriminator:
|
|
23023
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22741
23024
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { excludeLastRequest: {
|
|
22742
23025
|
serializedName: "excludeLastRequest",
|
|
22743
23026
|
type: {
|
|
@@ -22766,9 +23049,9 @@ const SapOdpSource = {
|
|
|
22766
23049
|
type: {
|
|
22767
23050
|
name: "Composite",
|
|
22768
23051
|
className: "SapOdpSource",
|
|
22769
|
-
uberParent: "
|
|
23052
|
+
uberParent: "TabularSource",
|
|
22770
23053
|
additionalProperties: { type: { name: "Object" } },
|
|
22771
|
-
polymorphicDiscriminator:
|
|
23054
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22772
23055
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { extractionMode: {
|
|
22773
23056
|
serializedName: "extractionMode",
|
|
22774
23057
|
type: {
|
|
@@ -22797,9 +23080,9 @@ const SapTableSource = {
|
|
|
22797
23080
|
type: {
|
|
22798
23081
|
name: "Composite",
|
|
22799
23082
|
className: "SapTableSource",
|
|
22800
|
-
uberParent: "
|
|
23083
|
+
uberParent: "TabularSource",
|
|
22801
23084
|
additionalProperties: { type: { name: "Object" } },
|
|
22802
|
-
polymorphicDiscriminator:
|
|
23085
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22803
23086
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { rowCount: {
|
|
22804
23087
|
serializedName: "rowCount",
|
|
22805
23088
|
type: {
|
|
@@ -22854,9 +23137,9 @@ const SqlSource = {
|
|
|
22854
23137
|
type: {
|
|
22855
23138
|
name: "Composite",
|
|
22856
23139
|
className: "SqlSource",
|
|
22857
|
-
uberParent: "
|
|
23140
|
+
uberParent: "TabularSource",
|
|
22858
23141
|
additionalProperties: { type: { name: "Object" } },
|
|
22859
|
-
polymorphicDiscriminator:
|
|
23142
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22860
23143
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
22861
23144
|
serializedName: "sqlReaderQuery",
|
|
22862
23145
|
type: {
|
|
@@ -22899,9 +23182,9 @@ const SqlServerSource = {
|
|
|
22899
23182
|
type: {
|
|
22900
23183
|
name: "Composite",
|
|
22901
23184
|
className: "SqlServerSource",
|
|
22902
|
-
uberParent: "
|
|
23185
|
+
uberParent: "TabularSource",
|
|
22903
23186
|
additionalProperties: { type: { name: "Object" } },
|
|
22904
|
-
polymorphicDiscriminator:
|
|
23187
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22905
23188
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
22906
23189
|
serializedName: "sqlReaderQuery",
|
|
22907
23190
|
type: {
|
|
@@ -22944,9 +23227,9 @@ const AmazonRdsForSqlServerSource = {
|
|
|
22944
23227
|
type: {
|
|
22945
23228
|
name: "Composite",
|
|
22946
23229
|
className: "AmazonRdsForSqlServerSource",
|
|
22947
|
-
uberParent: "
|
|
23230
|
+
uberParent: "TabularSource",
|
|
22948
23231
|
additionalProperties: { type: { name: "Object" } },
|
|
22949
|
-
polymorphicDiscriminator:
|
|
23232
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22950
23233
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
22951
23234
|
serializedName: "sqlReaderQuery",
|
|
22952
23235
|
type: {
|
|
@@ -22989,9 +23272,9 @@ const AzureSqlSource = {
|
|
|
22989
23272
|
type: {
|
|
22990
23273
|
name: "Composite",
|
|
22991
23274
|
className: "AzureSqlSource",
|
|
22992
|
-
uberParent: "
|
|
23275
|
+
uberParent: "TabularSource",
|
|
22993
23276
|
additionalProperties: { type: { name: "Object" } },
|
|
22994
|
-
polymorphicDiscriminator:
|
|
23277
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
22995
23278
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
22996
23279
|
serializedName: "sqlReaderQuery",
|
|
22997
23280
|
type: {
|
|
@@ -23034,9 +23317,9 @@ const SqlMISource = {
|
|
|
23034
23317
|
type: {
|
|
23035
23318
|
name: "Composite",
|
|
23036
23319
|
className: "SqlMISource",
|
|
23037
|
-
uberParent: "
|
|
23320
|
+
uberParent: "TabularSource",
|
|
23038
23321
|
additionalProperties: { type: { name: "Object" } },
|
|
23039
|
-
polymorphicDiscriminator:
|
|
23322
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23040
23323
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
23041
23324
|
serializedName: "sqlReaderQuery",
|
|
23042
23325
|
type: {
|
|
@@ -23079,9 +23362,9 @@ const SqlDWSource = {
|
|
|
23079
23362
|
type: {
|
|
23080
23363
|
name: "Composite",
|
|
23081
23364
|
className: "SqlDWSource",
|
|
23082
|
-
uberParent: "
|
|
23365
|
+
uberParent: "TabularSource",
|
|
23083
23366
|
additionalProperties: { type: { name: "Object" } },
|
|
23084
|
-
polymorphicDiscriminator:
|
|
23367
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23085
23368
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { sqlReaderQuery: {
|
|
23086
23369
|
serializedName: "sqlReaderQuery",
|
|
23087
23370
|
type: {
|
|
@@ -23116,9 +23399,9 @@ const AzureMySqlSource = {
|
|
|
23116
23399
|
type: {
|
|
23117
23400
|
name: "Composite",
|
|
23118
23401
|
className: "AzureMySqlSource",
|
|
23119
|
-
uberParent: "
|
|
23402
|
+
uberParent: "TabularSource",
|
|
23120
23403
|
additionalProperties: { type: { name: "Object" } },
|
|
23121
|
-
polymorphicDiscriminator:
|
|
23404
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23122
23405
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23123
23406
|
serializedName: "query",
|
|
23124
23407
|
type: {
|
|
@@ -23132,9 +23415,9 @@ const TeradataSource = {
|
|
|
23132
23415
|
type: {
|
|
23133
23416
|
name: "Composite",
|
|
23134
23417
|
className: "TeradataSource",
|
|
23135
|
-
uberParent: "
|
|
23418
|
+
uberParent: "TabularSource",
|
|
23136
23419
|
additionalProperties: { type: { name: "Object" } },
|
|
23137
|
-
polymorphicDiscriminator:
|
|
23420
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23138
23421
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23139
23422
|
serializedName: "query",
|
|
23140
23423
|
type: {
|
|
@@ -23159,9 +23442,9 @@ const CassandraSource = {
|
|
|
23159
23442
|
type: {
|
|
23160
23443
|
name: "Composite",
|
|
23161
23444
|
className: "CassandraSource",
|
|
23162
|
-
uberParent: "
|
|
23445
|
+
uberParent: "TabularSource",
|
|
23163
23446
|
additionalProperties: { type: { name: "Object" } },
|
|
23164
|
-
polymorphicDiscriminator:
|
|
23447
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23165
23448
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23166
23449
|
serializedName: "query",
|
|
23167
23450
|
type: {
|
|
@@ -23180,9 +23463,9 @@ const AmazonMWSSource = {
|
|
|
23180
23463
|
type: {
|
|
23181
23464
|
name: "Composite",
|
|
23182
23465
|
className: "AmazonMWSSource",
|
|
23183
|
-
uberParent: "
|
|
23466
|
+
uberParent: "TabularSource",
|
|
23184
23467
|
additionalProperties: { type: { name: "Object" } },
|
|
23185
|
-
polymorphicDiscriminator:
|
|
23468
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23186
23469
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23187
23470
|
serializedName: "query",
|
|
23188
23471
|
type: {
|
|
@@ -23196,9 +23479,9 @@ const AzurePostgreSqlSource = {
|
|
|
23196
23479
|
type: {
|
|
23197
23480
|
name: "Composite",
|
|
23198
23481
|
className: "AzurePostgreSqlSource",
|
|
23199
|
-
uberParent: "
|
|
23482
|
+
uberParent: "TabularSource",
|
|
23200
23483
|
additionalProperties: { type: { name: "Object" } },
|
|
23201
|
-
polymorphicDiscriminator:
|
|
23484
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23202
23485
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23203
23486
|
serializedName: "query",
|
|
23204
23487
|
type: {
|
|
@@ -23212,9 +23495,9 @@ const ConcurSource = {
|
|
|
23212
23495
|
type: {
|
|
23213
23496
|
name: "Composite",
|
|
23214
23497
|
className: "ConcurSource",
|
|
23215
|
-
uberParent: "
|
|
23498
|
+
uberParent: "TabularSource",
|
|
23216
23499
|
additionalProperties: { type: { name: "Object" } },
|
|
23217
|
-
polymorphicDiscriminator:
|
|
23500
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23218
23501
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23219
23502
|
serializedName: "query",
|
|
23220
23503
|
type: {
|
|
@@ -23228,9 +23511,9 @@ const CouchbaseSource = {
|
|
|
23228
23511
|
type: {
|
|
23229
23512
|
name: "Composite",
|
|
23230
23513
|
className: "CouchbaseSource",
|
|
23231
|
-
uberParent: "
|
|
23514
|
+
uberParent: "TabularSource",
|
|
23232
23515
|
additionalProperties: { type: { name: "Object" } },
|
|
23233
|
-
polymorphicDiscriminator:
|
|
23516
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23234
23517
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23235
23518
|
serializedName: "query",
|
|
23236
23519
|
type: {
|
|
@@ -23244,9 +23527,9 @@ const DrillSource = {
|
|
|
23244
23527
|
type: {
|
|
23245
23528
|
name: "Composite",
|
|
23246
23529
|
className: "DrillSource",
|
|
23247
|
-
uberParent: "
|
|
23530
|
+
uberParent: "TabularSource",
|
|
23248
23531
|
additionalProperties: { type: { name: "Object" } },
|
|
23249
|
-
polymorphicDiscriminator:
|
|
23532
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23250
23533
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23251
23534
|
serializedName: "query",
|
|
23252
23535
|
type: {
|
|
@@ -23260,9 +23543,9 @@ const EloquaSource = {
|
|
|
23260
23543
|
type: {
|
|
23261
23544
|
name: "Composite",
|
|
23262
23545
|
className: "EloquaSource",
|
|
23263
|
-
uberParent: "
|
|
23546
|
+
uberParent: "TabularSource",
|
|
23264
23547
|
additionalProperties: { type: { name: "Object" } },
|
|
23265
|
-
polymorphicDiscriminator:
|
|
23548
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23266
23549
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23267
23550
|
serializedName: "query",
|
|
23268
23551
|
type: {
|
|
@@ -23276,9 +23559,9 @@ const GoogleBigQuerySource = {
|
|
|
23276
23559
|
type: {
|
|
23277
23560
|
name: "Composite",
|
|
23278
23561
|
className: "GoogleBigQuerySource",
|
|
23279
|
-
uberParent: "
|
|
23562
|
+
uberParent: "TabularSource",
|
|
23280
23563
|
additionalProperties: { type: { name: "Object" } },
|
|
23281
|
-
polymorphicDiscriminator:
|
|
23564
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23282
23565
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23283
23566
|
serializedName: "query",
|
|
23284
23567
|
type: {
|
|
@@ -23292,9 +23575,9 @@ const GreenplumSource = {
|
|
|
23292
23575
|
type: {
|
|
23293
23576
|
name: "Composite",
|
|
23294
23577
|
className: "GreenplumSource",
|
|
23295
|
-
uberParent: "
|
|
23578
|
+
uberParent: "TabularSource",
|
|
23296
23579
|
additionalProperties: { type: { name: "Object" } },
|
|
23297
|
-
polymorphicDiscriminator:
|
|
23580
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23298
23581
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23299
23582
|
serializedName: "query",
|
|
23300
23583
|
type: {
|
|
@@ -23308,9 +23591,9 @@ const HBaseSource = {
|
|
|
23308
23591
|
type: {
|
|
23309
23592
|
name: "Composite",
|
|
23310
23593
|
className: "HBaseSource",
|
|
23311
|
-
uberParent: "
|
|
23594
|
+
uberParent: "TabularSource",
|
|
23312
23595
|
additionalProperties: { type: { name: "Object" } },
|
|
23313
|
-
polymorphicDiscriminator:
|
|
23596
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23314
23597
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23315
23598
|
serializedName: "query",
|
|
23316
23599
|
type: {
|
|
@@ -23324,9 +23607,9 @@ const HiveSource = {
|
|
|
23324
23607
|
type: {
|
|
23325
23608
|
name: "Composite",
|
|
23326
23609
|
className: "HiveSource",
|
|
23327
|
-
uberParent: "
|
|
23610
|
+
uberParent: "TabularSource",
|
|
23328
23611
|
additionalProperties: { type: { name: "Object" } },
|
|
23329
|
-
polymorphicDiscriminator:
|
|
23612
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23330
23613
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23331
23614
|
serializedName: "query",
|
|
23332
23615
|
type: {
|
|
@@ -23340,9 +23623,9 @@ const HubspotSource = {
|
|
|
23340
23623
|
type: {
|
|
23341
23624
|
name: "Composite",
|
|
23342
23625
|
className: "HubspotSource",
|
|
23343
|
-
uberParent: "
|
|
23626
|
+
uberParent: "TabularSource",
|
|
23344
23627
|
additionalProperties: { type: { name: "Object" } },
|
|
23345
|
-
polymorphicDiscriminator:
|
|
23628
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23346
23629
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23347
23630
|
serializedName: "query",
|
|
23348
23631
|
type: {
|
|
@@ -23356,9 +23639,9 @@ const ImpalaSource = {
|
|
|
23356
23639
|
type: {
|
|
23357
23640
|
name: "Composite",
|
|
23358
23641
|
className: "ImpalaSource",
|
|
23359
|
-
uberParent: "
|
|
23642
|
+
uberParent: "TabularSource",
|
|
23360
23643
|
additionalProperties: { type: { name: "Object" } },
|
|
23361
|
-
polymorphicDiscriminator:
|
|
23644
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23362
23645
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23363
23646
|
serializedName: "query",
|
|
23364
23647
|
type: {
|
|
@@ -23372,9 +23655,9 @@ const JiraSource = {
|
|
|
23372
23655
|
type: {
|
|
23373
23656
|
name: "Composite",
|
|
23374
23657
|
className: "JiraSource",
|
|
23375
|
-
uberParent: "
|
|
23658
|
+
uberParent: "TabularSource",
|
|
23376
23659
|
additionalProperties: { type: { name: "Object" } },
|
|
23377
|
-
polymorphicDiscriminator:
|
|
23660
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23378
23661
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23379
23662
|
serializedName: "query",
|
|
23380
23663
|
type: {
|
|
@@ -23388,9 +23671,9 @@ const MagentoSource = {
|
|
|
23388
23671
|
type: {
|
|
23389
23672
|
name: "Composite",
|
|
23390
23673
|
className: "MagentoSource",
|
|
23391
|
-
uberParent: "
|
|
23674
|
+
uberParent: "TabularSource",
|
|
23392
23675
|
additionalProperties: { type: { name: "Object" } },
|
|
23393
|
-
polymorphicDiscriminator:
|
|
23676
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23394
23677
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23395
23678
|
serializedName: "query",
|
|
23396
23679
|
type: {
|
|
@@ -23404,9 +23687,9 @@ const MariaDBSource = {
|
|
|
23404
23687
|
type: {
|
|
23405
23688
|
name: "Composite",
|
|
23406
23689
|
className: "MariaDBSource",
|
|
23407
|
-
uberParent: "
|
|
23690
|
+
uberParent: "TabularSource",
|
|
23408
23691
|
additionalProperties: { type: { name: "Object" } },
|
|
23409
|
-
polymorphicDiscriminator:
|
|
23692
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23410
23693
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23411
23694
|
serializedName: "query",
|
|
23412
23695
|
type: {
|
|
@@ -23420,9 +23703,9 @@ const AzureMariaDBSource = {
|
|
|
23420
23703
|
type: {
|
|
23421
23704
|
name: "Composite",
|
|
23422
23705
|
className: "AzureMariaDBSource",
|
|
23423
|
-
uberParent: "
|
|
23706
|
+
uberParent: "TabularSource",
|
|
23424
23707
|
additionalProperties: { type: { name: "Object" } },
|
|
23425
|
-
polymorphicDiscriminator:
|
|
23708
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23426
23709
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23427
23710
|
serializedName: "query",
|
|
23428
23711
|
type: {
|
|
@@ -23436,9 +23719,9 @@ const MarketoSource = {
|
|
|
23436
23719
|
type: {
|
|
23437
23720
|
name: "Composite",
|
|
23438
23721
|
className: "MarketoSource",
|
|
23439
|
-
uberParent: "
|
|
23722
|
+
uberParent: "TabularSource",
|
|
23440
23723
|
additionalProperties: { type: { name: "Object" } },
|
|
23441
|
-
polymorphicDiscriminator:
|
|
23724
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23442
23725
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23443
23726
|
serializedName: "query",
|
|
23444
23727
|
type: {
|
|
@@ -23452,9 +23735,9 @@ const PaypalSource = {
|
|
|
23452
23735
|
type: {
|
|
23453
23736
|
name: "Composite",
|
|
23454
23737
|
className: "PaypalSource",
|
|
23455
|
-
uberParent: "
|
|
23738
|
+
uberParent: "TabularSource",
|
|
23456
23739
|
additionalProperties: { type: { name: "Object" } },
|
|
23457
|
-
polymorphicDiscriminator:
|
|
23740
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23458
23741
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23459
23742
|
serializedName: "query",
|
|
23460
23743
|
type: {
|
|
@@ -23468,9 +23751,9 @@ const PhoenixSource = {
|
|
|
23468
23751
|
type: {
|
|
23469
23752
|
name: "Composite",
|
|
23470
23753
|
className: "PhoenixSource",
|
|
23471
|
-
uberParent: "
|
|
23754
|
+
uberParent: "TabularSource",
|
|
23472
23755
|
additionalProperties: { type: { name: "Object" } },
|
|
23473
|
-
polymorphicDiscriminator:
|
|
23756
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23474
23757
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23475
23758
|
serializedName: "query",
|
|
23476
23759
|
type: {
|
|
@@ -23484,9 +23767,9 @@ const PrestoSource = {
|
|
|
23484
23767
|
type: {
|
|
23485
23768
|
name: "Composite",
|
|
23486
23769
|
className: "PrestoSource",
|
|
23487
|
-
uberParent: "
|
|
23770
|
+
uberParent: "TabularSource",
|
|
23488
23771
|
additionalProperties: { type: { name: "Object" } },
|
|
23489
|
-
polymorphicDiscriminator:
|
|
23772
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23490
23773
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23491
23774
|
serializedName: "query",
|
|
23492
23775
|
type: {
|
|
@@ -23500,9 +23783,9 @@ const QuickBooksSource = {
|
|
|
23500
23783
|
type: {
|
|
23501
23784
|
name: "Composite",
|
|
23502
23785
|
className: "QuickBooksSource",
|
|
23503
|
-
uberParent: "
|
|
23786
|
+
uberParent: "TabularSource",
|
|
23504
23787
|
additionalProperties: { type: { name: "Object" } },
|
|
23505
|
-
polymorphicDiscriminator:
|
|
23788
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23506
23789
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23507
23790
|
serializedName: "query",
|
|
23508
23791
|
type: {
|
|
@@ -23516,9 +23799,9 @@ const ServiceNowSource = {
|
|
|
23516
23799
|
type: {
|
|
23517
23800
|
name: "Composite",
|
|
23518
23801
|
className: "ServiceNowSource",
|
|
23519
|
-
uberParent: "
|
|
23802
|
+
uberParent: "TabularSource",
|
|
23520
23803
|
additionalProperties: { type: { name: "Object" } },
|
|
23521
|
-
polymorphicDiscriminator:
|
|
23804
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23522
23805
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23523
23806
|
serializedName: "query",
|
|
23524
23807
|
type: {
|
|
@@ -23532,9 +23815,9 @@ const ShopifySource = {
|
|
|
23532
23815
|
type: {
|
|
23533
23816
|
name: "Composite",
|
|
23534
23817
|
className: "ShopifySource",
|
|
23535
|
-
uberParent: "
|
|
23818
|
+
uberParent: "TabularSource",
|
|
23536
23819
|
additionalProperties: { type: { name: "Object" } },
|
|
23537
|
-
polymorphicDiscriminator:
|
|
23820
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23538
23821
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23539
23822
|
serializedName: "query",
|
|
23540
23823
|
type: {
|
|
@@ -23548,9 +23831,9 @@ const SparkSource = {
|
|
|
23548
23831
|
type: {
|
|
23549
23832
|
name: "Composite",
|
|
23550
23833
|
className: "SparkSource",
|
|
23551
|
-
uberParent: "
|
|
23834
|
+
uberParent: "TabularSource",
|
|
23552
23835
|
additionalProperties: { type: { name: "Object" } },
|
|
23553
|
-
polymorphicDiscriminator:
|
|
23836
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23554
23837
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23555
23838
|
serializedName: "query",
|
|
23556
23839
|
type: {
|
|
@@ -23564,9 +23847,9 @@ const SquareSource = {
|
|
|
23564
23847
|
type: {
|
|
23565
23848
|
name: "Composite",
|
|
23566
23849
|
className: "SquareSource",
|
|
23567
|
-
uberParent: "
|
|
23850
|
+
uberParent: "TabularSource",
|
|
23568
23851
|
additionalProperties: { type: { name: "Object" } },
|
|
23569
|
-
polymorphicDiscriminator:
|
|
23852
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23570
23853
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23571
23854
|
serializedName: "query",
|
|
23572
23855
|
type: {
|
|
@@ -23580,9 +23863,9 @@ const XeroSource = {
|
|
|
23580
23863
|
type: {
|
|
23581
23864
|
name: "Composite",
|
|
23582
23865
|
className: "XeroSource",
|
|
23583
|
-
uberParent: "
|
|
23866
|
+
uberParent: "TabularSource",
|
|
23584
23867
|
additionalProperties: { type: { name: "Object" } },
|
|
23585
|
-
polymorphicDiscriminator:
|
|
23868
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23586
23869
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23587
23870
|
serializedName: "query",
|
|
23588
23871
|
type: {
|
|
@@ -23596,9 +23879,9 @@ const ZohoSource = {
|
|
|
23596
23879
|
type: {
|
|
23597
23880
|
name: "Composite",
|
|
23598
23881
|
className: "ZohoSource",
|
|
23599
|
-
uberParent: "
|
|
23882
|
+
uberParent: "TabularSource",
|
|
23600
23883
|
additionalProperties: { type: { name: "Object" } },
|
|
23601
|
-
polymorphicDiscriminator:
|
|
23884
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23602
23885
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23603
23886
|
serializedName: "query",
|
|
23604
23887
|
type: {
|
|
@@ -23612,9 +23895,9 @@ const NetezzaSource = {
|
|
|
23612
23895
|
type: {
|
|
23613
23896
|
name: "Composite",
|
|
23614
23897
|
className: "NetezzaSource",
|
|
23615
|
-
uberParent: "
|
|
23898
|
+
uberParent: "TabularSource",
|
|
23616
23899
|
additionalProperties: { type: { name: "Object" } },
|
|
23617
|
-
polymorphicDiscriminator:
|
|
23900
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23618
23901
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23619
23902
|
serializedName: "query",
|
|
23620
23903
|
type: {
|
|
@@ -23639,9 +23922,9 @@ const VerticaSource = {
|
|
|
23639
23922
|
type: {
|
|
23640
23923
|
name: "Composite",
|
|
23641
23924
|
className: "VerticaSource",
|
|
23642
|
-
uberParent: "
|
|
23925
|
+
uberParent: "TabularSource",
|
|
23643
23926
|
additionalProperties: { type: { name: "Object" } },
|
|
23644
|
-
polymorphicDiscriminator:
|
|
23927
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23645
23928
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23646
23929
|
serializedName: "query",
|
|
23647
23930
|
type: {
|
|
@@ -23655,9 +23938,9 @@ const SalesforceMarketingCloudSource = {
|
|
|
23655
23938
|
type: {
|
|
23656
23939
|
name: "Composite",
|
|
23657
23940
|
className: "SalesforceMarketingCloudSource",
|
|
23658
|
-
uberParent: "
|
|
23941
|
+
uberParent: "TabularSource",
|
|
23659
23942
|
additionalProperties: { type: { name: "Object" } },
|
|
23660
|
-
polymorphicDiscriminator:
|
|
23943
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23661
23944
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23662
23945
|
serializedName: "query",
|
|
23663
23946
|
type: {
|
|
@@ -23671,9 +23954,9 @@ const ResponsysSource = {
|
|
|
23671
23954
|
type: {
|
|
23672
23955
|
name: "Composite",
|
|
23673
23956
|
className: "ResponsysSource",
|
|
23674
|
-
uberParent: "
|
|
23957
|
+
uberParent: "TabularSource",
|
|
23675
23958
|
additionalProperties: { type: { name: "Object" } },
|
|
23676
|
-
polymorphicDiscriminator:
|
|
23959
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23677
23960
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23678
23961
|
serializedName: "query",
|
|
23679
23962
|
type: {
|
|
@@ -23687,9 +23970,9 @@ const DynamicsAXSource = {
|
|
|
23687
23970
|
type: {
|
|
23688
23971
|
name: "Composite",
|
|
23689
23972
|
className: "DynamicsAXSource",
|
|
23690
|
-
uberParent: "
|
|
23973
|
+
uberParent: "TabularSource",
|
|
23691
23974
|
additionalProperties: { type: { name: "Object" } },
|
|
23692
|
-
polymorphicDiscriminator:
|
|
23975
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23693
23976
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23694
23977
|
serializedName: "query",
|
|
23695
23978
|
type: {
|
|
@@ -23708,9 +23991,9 @@ const OracleServiceCloudSource = {
|
|
|
23708
23991
|
type: {
|
|
23709
23992
|
name: "Composite",
|
|
23710
23993
|
className: "OracleServiceCloudSource",
|
|
23711
|
-
uberParent: "
|
|
23994
|
+
uberParent: "TabularSource",
|
|
23712
23995
|
additionalProperties: { type: { name: "Object" } },
|
|
23713
|
-
polymorphicDiscriminator:
|
|
23996
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23714
23997
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23715
23998
|
serializedName: "query",
|
|
23716
23999
|
type: {
|
|
@@ -23724,9 +24007,9 @@ const GoogleAdWordsSource = {
|
|
|
23724
24007
|
type: {
|
|
23725
24008
|
name: "Composite",
|
|
23726
24009
|
className: "GoogleAdWordsSource",
|
|
23727
|
-
uberParent: "
|
|
24010
|
+
uberParent: "TabularSource",
|
|
23728
24011
|
additionalProperties: { type: { name: "Object" } },
|
|
23729
|
-
polymorphicDiscriminator:
|
|
24012
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23730
24013
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23731
24014
|
serializedName: "query",
|
|
23732
24015
|
type: {
|
|
@@ -23740,9 +24023,9 @@ const AmazonRedshiftSource = {
|
|
|
23740
24023
|
type: {
|
|
23741
24024
|
name: "Composite",
|
|
23742
24025
|
className: "AmazonRedshiftSource",
|
|
23743
|
-
uberParent: "
|
|
24026
|
+
uberParent: "TabularSource",
|
|
23744
24027
|
additionalProperties: { type: { name: "Object" } },
|
|
23745
|
-
polymorphicDiscriminator:
|
|
24028
|
+
polymorphicDiscriminator: TabularSource.type.polymorphicDiscriminator,
|
|
23746
24029
|
modelProperties: Object.assign(Object.assign({}, TabularSource.type.modelProperties), { query: {
|
|
23747
24030
|
serializedName: "query",
|
|
23748
24031
|
type: {
|
|
@@ -23762,8 +24045,8 @@ const TumblingWindowTriggerDependencyReference = {
|
|
|
23762
24045
|
type: {
|
|
23763
24046
|
name: "Composite",
|
|
23764
24047
|
className: "TumblingWindowTriggerDependencyReference",
|
|
23765
|
-
uberParent: "
|
|
23766
|
-
polymorphicDiscriminator:
|
|
24048
|
+
uberParent: "TriggerDependencyReference",
|
|
24049
|
+
polymorphicDiscriminator: TriggerDependencyReference.type.polymorphicDiscriminator,
|
|
23767
24050
|
modelProperties: Object.assign(Object.assign({}, TriggerDependencyReference.type.modelProperties), { offset: {
|
|
23768
24051
|
constraints: {
|
|
23769
24052
|
Pattern: new RegExp("-?((\\d+)\\.)?(\\d\\d):(60|([0-5][0-9])):(60|([0-5][0-9]))"),
|
|
@@ -23912,6 +24195,7 @@ let discriminators = {
|
|
|
23912
24195
|
"LinkedService.AppFigures": AppFiguresLinkedService,
|
|
23913
24196
|
"LinkedService.Asana": AsanaLinkedService,
|
|
23914
24197
|
"LinkedService.Twilio": TwilioLinkedService,
|
|
24198
|
+
"LinkedService.GoogleSheets": GoogleSheetsLinkedService,
|
|
23915
24199
|
"LinkedService.AmazonS3": AmazonS3LinkedService,
|
|
23916
24200
|
"LinkedService.AmazonRedshift": AmazonRedshiftLinkedService,
|
|
23917
24201
|
"LinkedService.CustomDataSource": CustomDataSourceLinkedService,
|
|
@@ -23964,6 +24248,7 @@ let discriminators = {
|
|
|
23964
24248
|
"LinkedService.AzureFunction": AzureFunctionLinkedService,
|
|
23965
24249
|
"LinkedService.Snowflake": SnowflakeLinkedService,
|
|
23966
24250
|
"LinkedService.SharePointOnlineList": SharePointOnlineListLinkedService,
|
|
24251
|
+
"LinkedService.AzureSynapseArtifacts": AzureSynapseArtifactsLinkedService,
|
|
23967
24252
|
"Dataset.AmazonS3Object": AmazonS3Dataset,
|
|
23968
24253
|
"Dataset.Avro": AvroDataset,
|
|
23969
24254
|
"Dataset.Excel": ExcelDataset,
|
|
@@ -24215,106 +24500,108 @@ let discriminators = {
|
|
|
24215
24500
|
"CopyTranslator.TabularTranslator": TabularTranslator,
|
|
24216
24501
|
"DependencyReference.TriggerDependencyReference": TriggerDependencyReference,
|
|
24217
24502
|
"DependencyReference.SelfDependencyTumblingWindowTriggerReference": SelfDependencyTumblingWindowTriggerReference,
|
|
24218
|
-
"
|
|
24219
|
-
"
|
|
24220
|
-
"
|
|
24221
|
-
"
|
|
24222
|
-
"
|
|
24223
|
-
"
|
|
24224
|
-
"
|
|
24225
|
-
"
|
|
24226
|
-
"
|
|
24227
|
-
"
|
|
24228
|
-
"
|
|
24229
|
-
"
|
|
24230
|
-
"
|
|
24231
|
-
"
|
|
24232
|
-
"
|
|
24233
|
-
"
|
|
24234
|
-
"
|
|
24235
|
-
"
|
|
24236
|
-
"
|
|
24237
|
-
"
|
|
24238
|
-
"
|
|
24239
|
-
"
|
|
24240
|
-
"
|
|
24241
|
-
"
|
|
24242
|
-
"
|
|
24243
|
-
"
|
|
24244
|
-
"
|
|
24245
|
-
"
|
|
24246
|
-
"
|
|
24247
|
-
"
|
|
24248
|
-
"
|
|
24249
|
-
"
|
|
24250
|
-
"
|
|
24251
|
-
"
|
|
24252
|
-
"
|
|
24253
|
-
"
|
|
24254
|
-
"
|
|
24255
|
-
"
|
|
24256
|
-
"
|
|
24257
|
-
"
|
|
24258
|
-
"
|
|
24259
|
-
"
|
|
24260
|
-
"
|
|
24261
|
-
"
|
|
24262
|
-
"
|
|
24263
|
-
"
|
|
24264
|
-
"
|
|
24265
|
-
"
|
|
24266
|
-
"
|
|
24267
|
-
"
|
|
24268
|
-
"
|
|
24269
|
-
"
|
|
24270
|
-
"
|
|
24271
|
-
"
|
|
24272
|
-
"
|
|
24273
|
-
"
|
|
24274
|
-
"
|
|
24275
|
-
"
|
|
24276
|
-
"
|
|
24277
|
-
"
|
|
24278
|
-
"
|
|
24279
|
-
"
|
|
24280
|
-
"
|
|
24281
|
-
"
|
|
24282
|
-
"
|
|
24283
|
-
"
|
|
24284
|
-
"
|
|
24285
|
-
"
|
|
24286
|
-
"
|
|
24287
|
-
"
|
|
24288
|
-
"
|
|
24289
|
-
"
|
|
24290
|
-
"
|
|
24291
|
-
"
|
|
24292
|
-
"
|
|
24293
|
-
"
|
|
24294
|
-
"
|
|
24295
|
-
"
|
|
24296
|
-
"
|
|
24297
|
-
"
|
|
24298
|
-
"
|
|
24299
|
-
"
|
|
24300
|
-
"
|
|
24301
|
-
"
|
|
24302
|
-
"
|
|
24303
|
-
"
|
|
24304
|
-
"
|
|
24305
|
-
"
|
|
24306
|
-
"
|
|
24307
|
-
"
|
|
24308
|
-
"
|
|
24309
|
-
"
|
|
24310
|
-
"
|
|
24311
|
-
"
|
|
24312
|
-
"
|
|
24313
|
-
"
|
|
24314
|
-
"
|
|
24315
|
-
"
|
|
24316
|
-
"
|
|
24317
|
-
"
|
|
24503
|
+
"ControlActivity.ExecutePipeline": ExecutePipelineActivity,
|
|
24504
|
+
"ControlActivity.IfCondition": IfConditionActivity,
|
|
24505
|
+
"ControlActivity.Switch": SwitchActivity,
|
|
24506
|
+
"ControlActivity.ForEach": ForEachActivity,
|
|
24507
|
+
"ControlActivity.Wait": WaitActivity,
|
|
24508
|
+
"ControlActivity.Fail": FailActivity,
|
|
24509
|
+
"ControlActivity.Until": UntilActivity,
|
|
24510
|
+
"ControlActivity.Validation": ValidationActivity,
|
|
24511
|
+
"ControlActivity.Filter": FilterActivity,
|
|
24512
|
+
"ControlActivity.SetVariable": SetVariableActivity,
|
|
24513
|
+
"ControlActivity.AppendVariable": AppendVariableActivity,
|
|
24514
|
+
"ControlActivity.WebHook": WebHookActivity,
|
|
24515
|
+
"ExecutionActivity.Copy": CopyActivity,
|
|
24516
|
+
"ExecutionActivity.HDInsightHive": HDInsightHiveActivity,
|
|
24517
|
+
"ExecutionActivity.HDInsightPig": HDInsightPigActivity,
|
|
24518
|
+
"ExecutionActivity.HDInsightMapReduce": HDInsightMapReduceActivity,
|
|
24519
|
+
"ExecutionActivity.HDInsightStreaming": HDInsightStreamingActivity,
|
|
24520
|
+
"ExecutionActivity.HDInsightSpark": HDInsightSparkActivity,
|
|
24521
|
+
"ExecutionActivity.ExecuteSSISPackage": ExecuteSsisPackageActivity,
|
|
24522
|
+
"ExecutionActivity.Custom": CustomActivity,
|
|
24523
|
+
"ExecutionActivity.SqlServerStoredProcedure": SqlServerStoredProcedureActivity,
|
|
24524
|
+
"ExecutionActivity.Delete": DeleteActivity,
|
|
24525
|
+
"ExecutionActivity.AzureDataExplorerCommand": AzureDataExplorerCommandActivity,
|
|
24526
|
+
"ExecutionActivity.Lookup": LookupActivity,
|
|
24527
|
+
"ExecutionActivity.WebActivity": WebActivity,
|
|
24528
|
+
"ExecutionActivity.GetMetadata": GetMetadataActivity,
|
|
24529
|
+
"ExecutionActivity.AzureMLBatchExecution": AzureMLBatchExecutionActivity,
|
|
24530
|
+
"ExecutionActivity.AzureMLUpdateResource": AzureMLUpdateResourceActivity,
|
|
24531
|
+
"ExecutionActivity.AzureMLExecutePipeline": AzureMLExecutePipelineActivity,
|
|
24532
|
+
"ExecutionActivity.DataLakeAnalyticsU-SQL": DataLakeAnalyticsUsqlActivity,
|
|
24533
|
+
"ExecutionActivity.DatabricksNotebook": DatabricksNotebookActivity,
|
|
24534
|
+
"ExecutionActivity.DatabricksSparkJar": DatabricksSparkJarActivity,
|
|
24535
|
+
"ExecutionActivity.DatabricksSparkPython": DatabricksSparkPythonActivity,
|
|
24536
|
+
"ExecutionActivity.AzureFunctionActivity": AzureFunctionActivity,
|
|
24537
|
+
"ExecutionActivity.ExecuteDataFlow": ExecuteDataFlowActivity,
|
|
24538
|
+
"ExecutionActivity.Script": ScriptActivity,
|
|
24539
|
+
"ExecutionActivity.SynapseNotebook": SynapseNotebookActivity,
|
|
24540
|
+
"ExecutionActivity.SparkJob": SynapseSparkJobDefinitionActivity,
|
|
24541
|
+
"MultiplePipelineTrigger.ScheduleTrigger": ScheduleTrigger,
|
|
24542
|
+
"MultiplePipelineTrigger.BlobTrigger": BlobTrigger,
|
|
24543
|
+
"MultiplePipelineTrigger.BlobEventsTrigger": BlobEventsTrigger,
|
|
24544
|
+
"MultiplePipelineTrigger.CustomEventsTrigger": CustomEventsTrigger,
|
|
24545
|
+
"TabularSource.AzureTableSource": AzureTableSource,
|
|
24546
|
+
"TabularSource.InformixSource": InformixSource,
|
|
24547
|
+
"TabularSource.Db2Source": Db2Source,
|
|
24548
|
+
"TabularSource.OdbcSource": OdbcSource,
|
|
24549
|
+
"TabularSource.MySqlSource": MySqlSource,
|
|
24550
|
+
"TabularSource.PostgreSqlSource": PostgreSqlSource,
|
|
24551
|
+
"TabularSource.SybaseSource": SybaseSource,
|
|
24552
|
+
"TabularSource.SapBwSource": SapBwSource,
|
|
24553
|
+
"TabularSource.SalesforceSource": SalesforceSource,
|
|
24554
|
+
"TabularSource.SapCloudForCustomerSource": SapCloudForCustomerSource,
|
|
24555
|
+
"TabularSource.SapEccSource": SapEccSource,
|
|
24556
|
+
"TabularSource.SapHanaSource": SapHanaSource,
|
|
24557
|
+
"TabularSource.SapOpenHubSource": SapOpenHubSource,
|
|
24558
|
+
"TabularSource.SapOdpSource": SapOdpSource,
|
|
24559
|
+
"TabularSource.SapTableSource": SapTableSource,
|
|
24560
|
+
"TabularSource.SqlSource": SqlSource,
|
|
24561
|
+
"TabularSource.SqlServerSource": SqlServerSource,
|
|
24562
|
+
"TabularSource.AmazonRdsForSqlServerSource": AmazonRdsForSqlServerSource,
|
|
24563
|
+
"TabularSource.AzureSqlSource": AzureSqlSource,
|
|
24564
|
+
"TabularSource.SqlMISource": SqlMISource,
|
|
24565
|
+
"TabularSource.SqlDWSource": SqlDWSource,
|
|
24566
|
+
"TabularSource.AzureMySqlSource": AzureMySqlSource,
|
|
24567
|
+
"TabularSource.TeradataSource": TeradataSource,
|
|
24568
|
+
"TabularSource.CassandraSource": CassandraSource,
|
|
24569
|
+
"TabularSource.AmazonMWSSource": AmazonMWSSource,
|
|
24570
|
+
"TabularSource.AzurePostgreSqlSource": AzurePostgreSqlSource,
|
|
24571
|
+
"TabularSource.ConcurSource": ConcurSource,
|
|
24572
|
+
"TabularSource.CouchbaseSource": CouchbaseSource,
|
|
24573
|
+
"TabularSource.DrillSource": DrillSource,
|
|
24574
|
+
"TabularSource.EloquaSource": EloquaSource,
|
|
24575
|
+
"TabularSource.GoogleBigQuerySource": GoogleBigQuerySource,
|
|
24576
|
+
"TabularSource.GreenplumSource": GreenplumSource,
|
|
24577
|
+
"TabularSource.HBaseSource": HBaseSource,
|
|
24578
|
+
"TabularSource.HiveSource": HiveSource,
|
|
24579
|
+
"TabularSource.HubspotSource": HubspotSource,
|
|
24580
|
+
"TabularSource.ImpalaSource": ImpalaSource,
|
|
24581
|
+
"TabularSource.JiraSource": JiraSource,
|
|
24582
|
+
"TabularSource.MagentoSource": MagentoSource,
|
|
24583
|
+
"TabularSource.MariaDBSource": MariaDBSource,
|
|
24584
|
+
"TabularSource.AzureMariaDBSource": AzureMariaDBSource,
|
|
24585
|
+
"TabularSource.MarketoSource": MarketoSource,
|
|
24586
|
+
"TabularSource.PaypalSource": PaypalSource,
|
|
24587
|
+
"TabularSource.PhoenixSource": PhoenixSource,
|
|
24588
|
+
"TabularSource.PrestoSource": PrestoSource,
|
|
24589
|
+
"TabularSource.QuickBooksSource": QuickBooksSource,
|
|
24590
|
+
"TabularSource.ServiceNowSource": ServiceNowSource,
|
|
24591
|
+
"TabularSource.ShopifySource": ShopifySource,
|
|
24592
|
+
"TabularSource.SparkSource": SparkSource,
|
|
24593
|
+
"TabularSource.SquareSource": SquareSource,
|
|
24594
|
+
"TabularSource.XeroSource": XeroSource,
|
|
24595
|
+
"TabularSource.ZohoSource": ZohoSource,
|
|
24596
|
+
"TabularSource.NetezzaSource": NetezzaSource,
|
|
24597
|
+
"TabularSource.VerticaSource": VerticaSource,
|
|
24598
|
+
"TabularSource.SalesforceMarketingCloudSource": SalesforceMarketingCloudSource,
|
|
24599
|
+
"TabularSource.ResponsysSource": ResponsysSource,
|
|
24600
|
+
"TabularSource.DynamicsAXSource": DynamicsAXSource,
|
|
24601
|
+
"TabularSource.OracleServiceCloudSource": OracleServiceCloudSource,
|
|
24602
|
+
"TabularSource.GoogleAdWordsSource": GoogleAdWordsSource,
|
|
24603
|
+
"TabularSource.AmazonRedshiftSource": AmazonRedshiftSource,
|
|
24604
|
+
"TriggerDependencyReference.TumblingWindowTriggerDependencyReference": TumblingWindowTriggerDependencyReference
|
|
24318
24605
|
};
|
|
24319
24606
|
|
|
24320
24607
|
var Mappers = /*#__PURE__*/Object.freeze({
|
|
@@ -24528,6 +24815,10 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
24528
24815
|
ScriptActivityScriptBlock: ScriptActivityScriptBlock,
|
|
24529
24816
|
ScriptActivityParameter: ScriptActivityParameter,
|
|
24530
24817
|
ScriptActivityTypePropertiesLogSettings: ScriptActivityTypePropertiesLogSettings,
|
|
24818
|
+
SynapseNotebookReference: SynapseNotebookReference,
|
|
24819
|
+
BigDataPoolParametrizationReference: BigDataPoolParametrizationReference,
|
|
24820
|
+
NotebookParameter: NotebookParameter,
|
|
24821
|
+
SynapseSparkJobReference: SynapseSparkJobReference,
|
|
24531
24822
|
ScheduleTriggerRecurrence: ScheduleTriggerRecurrence,
|
|
24532
24823
|
RecurrenceSchedule: RecurrenceSchedule,
|
|
24533
24824
|
RecurrenceScheduleOccurrence: RecurrenceScheduleOccurrence,
|
|
@@ -24617,6 +24908,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
24617
24908
|
AppFiguresLinkedService: AppFiguresLinkedService,
|
|
24618
24909
|
AsanaLinkedService: AsanaLinkedService,
|
|
24619
24910
|
TwilioLinkedService: TwilioLinkedService,
|
|
24911
|
+
GoogleSheetsLinkedService: GoogleSheetsLinkedService,
|
|
24620
24912
|
AmazonS3LinkedService: AmazonS3LinkedService,
|
|
24621
24913
|
AmazonRedshiftLinkedService: AmazonRedshiftLinkedService,
|
|
24622
24914
|
CustomDataSourceLinkedService: CustomDataSourceLinkedService,
|
|
@@ -24669,6 +24961,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
24669
24961
|
AzureFunctionLinkedService: AzureFunctionLinkedService,
|
|
24670
24962
|
SnowflakeLinkedService: SnowflakeLinkedService,
|
|
24671
24963
|
SharePointOnlineListLinkedService: SharePointOnlineListLinkedService,
|
|
24964
|
+
AzureSynapseArtifactsLinkedService: AzureSynapseArtifactsLinkedService,
|
|
24672
24965
|
AmazonS3Dataset: AmazonS3Dataset,
|
|
24673
24966
|
AvroDataset: AvroDataset,
|
|
24674
24967
|
ExcelDataset: ExcelDataset,
|
|
@@ -24963,6 +25256,8 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
24963
25256
|
AzureFunctionActivity: AzureFunctionActivity,
|
|
24964
25257
|
ExecuteDataFlowActivity: ExecuteDataFlowActivity,
|
|
24965
25258
|
ScriptActivity: ScriptActivity,
|
|
25259
|
+
SynapseNotebookActivity: SynapseNotebookActivity,
|
|
25260
|
+
SynapseSparkJobDefinitionActivity: SynapseSparkJobDefinitionActivity,
|
|
24966
25261
|
ScheduleTrigger: ScheduleTrigger,
|
|
24967
25262
|
BlobTrigger: BlobTrigger,
|
|
24968
25263
|
BlobEventsTrigger: BlobEventsTrigger,
|
|
@@ -30667,29 +30962,37 @@ class DataFactoryManagementClient extends coreClient__namespace.ServiceClient {
|
|
|
30667
30962
|
requestContentType: "application/json; charset=utf-8",
|
|
30668
30963
|
credential: credentials
|
|
30669
30964
|
};
|
|
30670
|
-
const packageDetails = `azsdk-js-arm-datafactory/10.
|
|
30965
|
+
const packageDetails = `azsdk-js-arm-datafactory/10.8.0`;
|
|
30671
30966
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
30672
30967
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
30673
30968
|
: `${packageDetails}`;
|
|
30969
|
+
if (!options.credentialScopes) {
|
|
30970
|
+
options.credentialScopes = ["https://management.azure.com/.default"];
|
|
30971
|
+
}
|
|
30674
30972
|
const optionsWithDefaults = Object.assign(Object.assign(Object.assign({}, defaults), options), { userAgentOptions: {
|
|
30675
30973
|
userAgentPrefix
|
|
30676
30974
|
}, baseUri: (_b = (_a = options.endpoint) !== null && _a !== void 0 ? _a : options.baseUri) !== null && _b !== void 0 ? _b : "https://management.azure.com" });
|
|
30677
30975
|
super(optionsWithDefaults);
|
|
30976
|
+
let bearerTokenAuthenticationPolicyFound = false;
|
|
30678
30977
|
if ((options === null || options === void 0 ? void 0 : options.pipeline) && options.pipeline.getOrderedPolicies().length > 0) {
|
|
30679
30978
|
const pipelinePolicies = options.pipeline.getOrderedPolicies();
|
|
30680
|
-
|
|
30979
|
+
bearerTokenAuthenticationPolicyFound = pipelinePolicies.some((pipelinePolicy) => pipelinePolicy.name ===
|
|
30681
30980
|
coreRestPipeline__namespace.bearerTokenAuthenticationPolicyName);
|
|
30682
|
-
|
|
30683
|
-
|
|
30684
|
-
|
|
30685
|
-
|
|
30686
|
-
|
|
30687
|
-
|
|
30688
|
-
|
|
30689
|
-
|
|
30690
|
-
|
|
30691
|
-
|
|
30692
|
-
|
|
30981
|
+
}
|
|
30982
|
+
if (!options ||
|
|
30983
|
+
!options.pipeline ||
|
|
30984
|
+
options.pipeline.getOrderedPolicies().length == 0 ||
|
|
30985
|
+
!bearerTokenAuthenticationPolicyFound) {
|
|
30986
|
+
this.pipeline.removePolicy({
|
|
30987
|
+
name: coreRestPipeline__namespace.bearerTokenAuthenticationPolicyName
|
|
30988
|
+
});
|
|
30989
|
+
this.pipeline.addPolicy(coreRestPipeline__namespace.bearerTokenAuthenticationPolicy({
|
|
30990
|
+
credential: credentials,
|
|
30991
|
+
scopes: `${optionsWithDefaults.credentialScopes}`,
|
|
30992
|
+
challengeCallbacks: {
|
|
30993
|
+
authorizeRequestOnChallenge: coreClient__namespace.authorizeRequestOnClaimChallenge
|
|
30994
|
+
}
|
|
30995
|
+
}));
|
|
30693
30996
|
}
|
|
30694
30997
|
// Parameter assignments
|
|
30695
30998
|
this.subscriptionId = subscriptionId;
|