@azure/arm-datafactory 11.1.1-alpha.20231113.1 → 12.0.0-alpha.20231121.1
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 +273 -8
- package/dist/index.js +2077 -727
- 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/samples-dev/changeDataCaptureCreateOrUpdateSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.js +75 -0
- package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.js +55 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.js.map +1 -0
- package/dist-esm/src/dataFactoryManagementClient.d.ts +2 -1
- package/dist-esm/src/dataFactoryManagementClient.d.ts.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +3 -2
- package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +787 -361
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +58 -22
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +36 -1
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +1063 -141
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.d.ts +2 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -1
- package/dist-esm/src/models/parameters.js +20 -1
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/changeDataCapture.d.ts +87 -0
- package/dist-esm/src/operations/changeDataCapture.d.ts.map +1 -0
- package/dist-esm/src/operations/changeDataCapture.js +350 -0
- package/dist-esm/src/operations/changeDataCapture.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +1 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -1
- package/dist-esm/src/operations/index.js +1 -0
- package/dist-esm/src/operations/index.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/changeDataCapture.d.ts +62 -0
- package/dist-esm/src/operationsInterfaces/changeDataCapture.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/changeDataCapture.js +9 -0
- package/dist-esm/src/operationsInterfaces/changeDataCapture.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -1
- package/dist-esm/src/operationsInterfaces/index.js +1 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.js +1 -1
- package/package.json +8 -6
- package/review/arm-datafactory.api.md +480 -150
- package/src/dataFactoryManagementClient.ts +7 -3
- package/src/models/index.ts +848 -364
- package/src/models/mappers.ts +1176 -155
- package/src/models/parameters.ts +23 -1
- package/src/operations/changeDataCapture.ts +472 -0
- package/src/operations/index.ts +1 -0
- package/src/operationsInterfaces/changeDataCapture.ts +118 -0
- package/src/operationsInterfaces/index.ts +1 -0
- package/types/arm-datafactory.d.ts +862 -327
|
@@ -1937,6 +1937,18 @@ export const Activity = {
|
|
|
1937
1937
|
name: "String"
|
|
1938
1938
|
}
|
|
1939
1939
|
},
|
|
1940
|
+
state: {
|
|
1941
|
+
serializedName: "state",
|
|
1942
|
+
type: {
|
|
1943
|
+
name: "String"
|
|
1944
|
+
}
|
|
1945
|
+
},
|
|
1946
|
+
onInactiveMarkAs: {
|
|
1947
|
+
serializedName: "onInactiveMarkAs",
|
|
1948
|
+
type: {
|
|
1949
|
+
name: "String"
|
|
1950
|
+
}
|
|
1951
|
+
},
|
|
1940
1952
|
dependsOn: {
|
|
1941
1953
|
serializedName: "dependsOn",
|
|
1942
1954
|
type: {
|
|
@@ -3698,6 +3710,447 @@ export const GlobalParameterListResponse = {
|
|
|
3698
3710
|
}
|
|
3699
3711
|
}
|
|
3700
3712
|
};
|
|
3713
|
+
export const ChangeDataCaptureListResponse = {
|
|
3714
|
+
type: {
|
|
3715
|
+
name: "Composite",
|
|
3716
|
+
className: "ChangeDataCaptureListResponse",
|
|
3717
|
+
modelProperties: {
|
|
3718
|
+
value: {
|
|
3719
|
+
serializedName: "value",
|
|
3720
|
+
required: true,
|
|
3721
|
+
type: {
|
|
3722
|
+
name: "Sequence",
|
|
3723
|
+
element: {
|
|
3724
|
+
type: {
|
|
3725
|
+
name: "Composite",
|
|
3726
|
+
className: "ChangeDataCaptureResource"
|
|
3727
|
+
}
|
|
3728
|
+
}
|
|
3729
|
+
}
|
|
3730
|
+
},
|
|
3731
|
+
nextLink: {
|
|
3732
|
+
serializedName: "nextLink",
|
|
3733
|
+
type: {
|
|
3734
|
+
name: "String"
|
|
3735
|
+
}
|
|
3736
|
+
}
|
|
3737
|
+
}
|
|
3738
|
+
}
|
|
3739
|
+
};
|
|
3740
|
+
export const ChangeDataCaptureFolder = {
|
|
3741
|
+
type: {
|
|
3742
|
+
name: "Composite",
|
|
3743
|
+
className: "ChangeDataCaptureFolder",
|
|
3744
|
+
modelProperties: {
|
|
3745
|
+
name: {
|
|
3746
|
+
serializedName: "name",
|
|
3747
|
+
type: {
|
|
3748
|
+
name: "String"
|
|
3749
|
+
}
|
|
3750
|
+
}
|
|
3751
|
+
}
|
|
3752
|
+
}
|
|
3753
|
+
};
|
|
3754
|
+
export const MapperSourceConnectionsInfo = {
|
|
3755
|
+
type: {
|
|
3756
|
+
name: "Composite",
|
|
3757
|
+
className: "MapperSourceConnectionsInfo",
|
|
3758
|
+
modelProperties: {
|
|
3759
|
+
sourceEntities: {
|
|
3760
|
+
serializedName: "sourceEntities",
|
|
3761
|
+
type: {
|
|
3762
|
+
name: "Sequence",
|
|
3763
|
+
element: {
|
|
3764
|
+
type: {
|
|
3765
|
+
name: "Composite",
|
|
3766
|
+
className: "MapperTable"
|
|
3767
|
+
}
|
|
3768
|
+
}
|
|
3769
|
+
}
|
|
3770
|
+
},
|
|
3771
|
+
connection: {
|
|
3772
|
+
serializedName: "connection",
|
|
3773
|
+
type: {
|
|
3774
|
+
name: "Composite",
|
|
3775
|
+
className: "MapperConnection"
|
|
3776
|
+
}
|
|
3777
|
+
}
|
|
3778
|
+
}
|
|
3779
|
+
}
|
|
3780
|
+
};
|
|
3781
|
+
export const MapperTable = {
|
|
3782
|
+
type: {
|
|
3783
|
+
name: "Composite",
|
|
3784
|
+
className: "MapperTable",
|
|
3785
|
+
modelProperties: {
|
|
3786
|
+
name: {
|
|
3787
|
+
serializedName: "name",
|
|
3788
|
+
type: {
|
|
3789
|
+
name: "String"
|
|
3790
|
+
}
|
|
3791
|
+
},
|
|
3792
|
+
schema: {
|
|
3793
|
+
serializedName: "properties.schema",
|
|
3794
|
+
type: {
|
|
3795
|
+
name: "Sequence",
|
|
3796
|
+
element: {
|
|
3797
|
+
type: {
|
|
3798
|
+
name: "Composite",
|
|
3799
|
+
className: "MapperTableSchema"
|
|
3800
|
+
}
|
|
3801
|
+
}
|
|
3802
|
+
}
|
|
3803
|
+
},
|
|
3804
|
+
dslConnectorProperties: {
|
|
3805
|
+
serializedName: "properties.dslConnectorProperties",
|
|
3806
|
+
type: {
|
|
3807
|
+
name: "Sequence",
|
|
3808
|
+
element: {
|
|
3809
|
+
type: {
|
|
3810
|
+
name: "Composite",
|
|
3811
|
+
className: "MapperDslConnectorProperties"
|
|
3812
|
+
}
|
|
3813
|
+
}
|
|
3814
|
+
}
|
|
3815
|
+
}
|
|
3816
|
+
}
|
|
3817
|
+
}
|
|
3818
|
+
};
|
|
3819
|
+
export const MapperTableSchema = {
|
|
3820
|
+
type: {
|
|
3821
|
+
name: "Composite",
|
|
3822
|
+
className: "MapperTableSchema",
|
|
3823
|
+
modelProperties: {
|
|
3824
|
+
name: {
|
|
3825
|
+
serializedName: "name",
|
|
3826
|
+
type: {
|
|
3827
|
+
name: "String"
|
|
3828
|
+
}
|
|
3829
|
+
},
|
|
3830
|
+
dataType: {
|
|
3831
|
+
serializedName: "dataType",
|
|
3832
|
+
type: {
|
|
3833
|
+
name: "String"
|
|
3834
|
+
}
|
|
3835
|
+
}
|
|
3836
|
+
}
|
|
3837
|
+
}
|
|
3838
|
+
};
|
|
3839
|
+
export const MapperDslConnectorProperties = {
|
|
3840
|
+
type: {
|
|
3841
|
+
name: "Composite",
|
|
3842
|
+
className: "MapperDslConnectorProperties",
|
|
3843
|
+
modelProperties: {
|
|
3844
|
+
name: {
|
|
3845
|
+
serializedName: "name",
|
|
3846
|
+
type: {
|
|
3847
|
+
name: "String"
|
|
3848
|
+
}
|
|
3849
|
+
},
|
|
3850
|
+
value: {
|
|
3851
|
+
serializedName: "value",
|
|
3852
|
+
type: {
|
|
3853
|
+
name: "any"
|
|
3854
|
+
}
|
|
3855
|
+
}
|
|
3856
|
+
}
|
|
3857
|
+
}
|
|
3858
|
+
};
|
|
3859
|
+
export const MapperConnection = {
|
|
3860
|
+
type: {
|
|
3861
|
+
name: "Composite",
|
|
3862
|
+
className: "MapperConnection",
|
|
3863
|
+
modelProperties: {
|
|
3864
|
+
linkedService: {
|
|
3865
|
+
serializedName: "linkedService",
|
|
3866
|
+
type: {
|
|
3867
|
+
name: "Composite",
|
|
3868
|
+
className: "LinkedServiceReference"
|
|
3869
|
+
}
|
|
3870
|
+
},
|
|
3871
|
+
linkedServiceType: {
|
|
3872
|
+
serializedName: "linkedServiceType",
|
|
3873
|
+
type: {
|
|
3874
|
+
name: "String"
|
|
3875
|
+
}
|
|
3876
|
+
},
|
|
3877
|
+
type: {
|
|
3878
|
+
serializedName: "type",
|
|
3879
|
+
required: true,
|
|
3880
|
+
type: {
|
|
3881
|
+
name: "String"
|
|
3882
|
+
}
|
|
3883
|
+
},
|
|
3884
|
+
isInlineDataset: {
|
|
3885
|
+
serializedName: "isInlineDataset",
|
|
3886
|
+
type: {
|
|
3887
|
+
name: "Boolean"
|
|
3888
|
+
}
|
|
3889
|
+
},
|
|
3890
|
+
commonDslConnectorProperties: {
|
|
3891
|
+
serializedName: "commonDslConnectorProperties",
|
|
3892
|
+
type: {
|
|
3893
|
+
name: "Sequence",
|
|
3894
|
+
element: {
|
|
3895
|
+
type: {
|
|
3896
|
+
name: "Composite",
|
|
3897
|
+
className: "MapperDslConnectorProperties"
|
|
3898
|
+
}
|
|
3899
|
+
}
|
|
3900
|
+
}
|
|
3901
|
+
}
|
|
3902
|
+
}
|
|
3903
|
+
}
|
|
3904
|
+
};
|
|
3905
|
+
export const MapperTargetConnectionsInfo = {
|
|
3906
|
+
type: {
|
|
3907
|
+
name: "Composite",
|
|
3908
|
+
className: "MapperTargetConnectionsInfo",
|
|
3909
|
+
modelProperties: {
|
|
3910
|
+
targetEntities: {
|
|
3911
|
+
serializedName: "targetEntities",
|
|
3912
|
+
type: {
|
|
3913
|
+
name: "Sequence",
|
|
3914
|
+
element: {
|
|
3915
|
+
type: {
|
|
3916
|
+
name: "Composite",
|
|
3917
|
+
className: "MapperTable"
|
|
3918
|
+
}
|
|
3919
|
+
}
|
|
3920
|
+
}
|
|
3921
|
+
},
|
|
3922
|
+
connection: {
|
|
3923
|
+
serializedName: "connection",
|
|
3924
|
+
type: {
|
|
3925
|
+
name: "Composite",
|
|
3926
|
+
className: "MapperConnection"
|
|
3927
|
+
}
|
|
3928
|
+
},
|
|
3929
|
+
dataMapperMappings: {
|
|
3930
|
+
serializedName: "dataMapperMappings",
|
|
3931
|
+
type: {
|
|
3932
|
+
name: "Sequence",
|
|
3933
|
+
element: {
|
|
3934
|
+
type: {
|
|
3935
|
+
name: "Composite",
|
|
3936
|
+
className: "DataMapperMapping"
|
|
3937
|
+
}
|
|
3938
|
+
}
|
|
3939
|
+
}
|
|
3940
|
+
},
|
|
3941
|
+
relationships: {
|
|
3942
|
+
serializedName: "relationships",
|
|
3943
|
+
type: {
|
|
3944
|
+
name: "Sequence",
|
|
3945
|
+
element: {
|
|
3946
|
+
type: {
|
|
3947
|
+
name: "any"
|
|
3948
|
+
}
|
|
3949
|
+
}
|
|
3950
|
+
}
|
|
3951
|
+
}
|
|
3952
|
+
}
|
|
3953
|
+
}
|
|
3954
|
+
};
|
|
3955
|
+
export const DataMapperMapping = {
|
|
3956
|
+
type: {
|
|
3957
|
+
name: "Composite",
|
|
3958
|
+
className: "DataMapperMapping",
|
|
3959
|
+
modelProperties: {
|
|
3960
|
+
targetEntityName: {
|
|
3961
|
+
serializedName: "targetEntityName",
|
|
3962
|
+
type: {
|
|
3963
|
+
name: "String"
|
|
3964
|
+
}
|
|
3965
|
+
},
|
|
3966
|
+
sourceEntityName: {
|
|
3967
|
+
serializedName: "sourceEntityName",
|
|
3968
|
+
type: {
|
|
3969
|
+
name: "String"
|
|
3970
|
+
}
|
|
3971
|
+
},
|
|
3972
|
+
sourceConnectionReference: {
|
|
3973
|
+
serializedName: "sourceConnectionReference",
|
|
3974
|
+
type: {
|
|
3975
|
+
name: "Composite",
|
|
3976
|
+
className: "MapperConnectionReference"
|
|
3977
|
+
}
|
|
3978
|
+
},
|
|
3979
|
+
attributeMappingInfo: {
|
|
3980
|
+
serializedName: "attributeMappingInfo",
|
|
3981
|
+
type: {
|
|
3982
|
+
name: "Composite",
|
|
3983
|
+
className: "MapperAttributeMappings"
|
|
3984
|
+
}
|
|
3985
|
+
},
|
|
3986
|
+
sourceDenormalizeInfo: {
|
|
3987
|
+
serializedName: "sourceDenormalizeInfo",
|
|
3988
|
+
type: {
|
|
3989
|
+
name: "any"
|
|
3990
|
+
}
|
|
3991
|
+
}
|
|
3992
|
+
}
|
|
3993
|
+
}
|
|
3994
|
+
};
|
|
3995
|
+
export const MapperConnectionReference = {
|
|
3996
|
+
type: {
|
|
3997
|
+
name: "Composite",
|
|
3998
|
+
className: "MapperConnectionReference",
|
|
3999
|
+
modelProperties: {
|
|
4000
|
+
connectionName: {
|
|
4001
|
+
serializedName: "connectionName",
|
|
4002
|
+
type: {
|
|
4003
|
+
name: "String"
|
|
4004
|
+
}
|
|
4005
|
+
},
|
|
4006
|
+
type: {
|
|
4007
|
+
serializedName: "type",
|
|
4008
|
+
type: {
|
|
4009
|
+
name: "String"
|
|
4010
|
+
}
|
|
4011
|
+
}
|
|
4012
|
+
}
|
|
4013
|
+
}
|
|
4014
|
+
};
|
|
4015
|
+
export const MapperAttributeMappings = {
|
|
4016
|
+
type: {
|
|
4017
|
+
name: "Composite",
|
|
4018
|
+
className: "MapperAttributeMappings",
|
|
4019
|
+
modelProperties: {
|
|
4020
|
+
attributeMappings: {
|
|
4021
|
+
serializedName: "attributeMappings",
|
|
4022
|
+
type: {
|
|
4023
|
+
name: "Sequence",
|
|
4024
|
+
element: {
|
|
4025
|
+
type: {
|
|
4026
|
+
name: "Composite",
|
|
4027
|
+
className: "MapperAttributeMapping"
|
|
4028
|
+
}
|
|
4029
|
+
}
|
|
4030
|
+
}
|
|
4031
|
+
}
|
|
4032
|
+
}
|
|
4033
|
+
}
|
|
4034
|
+
};
|
|
4035
|
+
export const MapperAttributeMapping = {
|
|
4036
|
+
type: {
|
|
4037
|
+
name: "Composite",
|
|
4038
|
+
className: "MapperAttributeMapping",
|
|
4039
|
+
modelProperties: {
|
|
4040
|
+
name: {
|
|
4041
|
+
serializedName: "name",
|
|
4042
|
+
type: {
|
|
4043
|
+
name: "String"
|
|
4044
|
+
}
|
|
4045
|
+
},
|
|
4046
|
+
type: {
|
|
4047
|
+
serializedName: "type",
|
|
4048
|
+
type: {
|
|
4049
|
+
name: "String"
|
|
4050
|
+
}
|
|
4051
|
+
},
|
|
4052
|
+
functionName: {
|
|
4053
|
+
serializedName: "functionName",
|
|
4054
|
+
type: {
|
|
4055
|
+
name: "String"
|
|
4056
|
+
}
|
|
4057
|
+
},
|
|
4058
|
+
expression: {
|
|
4059
|
+
serializedName: "expression",
|
|
4060
|
+
type: {
|
|
4061
|
+
name: "String"
|
|
4062
|
+
}
|
|
4063
|
+
},
|
|
4064
|
+
attributeReference: {
|
|
4065
|
+
serializedName: "attributeReference",
|
|
4066
|
+
type: {
|
|
4067
|
+
name: "Composite",
|
|
4068
|
+
className: "MapperAttributeReference"
|
|
4069
|
+
}
|
|
4070
|
+
},
|
|
4071
|
+
attributeReferences: {
|
|
4072
|
+
serializedName: "attributeReferences",
|
|
4073
|
+
type: {
|
|
4074
|
+
name: "Sequence",
|
|
4075
|
+
element: {
|
|
4076
|
+
type: {
|
|
4077
|
+
name: "Composite",
|
|
4078
|
+
className: "MapperAttributeReference"
|
|
4079
|
+
}
|
|
4080
|
+
}
|
|
4081
|
+
}
|
|
4082
|
+
}
|
|
4083
|
+
}
|
|
4084
|
+
}
|
|
4085
|
+
};
|
|
4086
|
+
export const MapperAttributeReference = {
|
|
4087
|
+
type: {
|
|
4088
|
+
name: "Composite",
|
|
4089
|
+
className: "MapperAttributeReference",
|
|
4090
|
+
modelProperties: {
|
|
4091
|
+
name: {
|
|
4092
|
+
serializedName: "name",
|
|
4093
|
+
type: {
|
|
4094
|
+
name: "String"
|
|
4095
|
+
}
|
|
4096
|
+
},
|
|
4097
|
+
entity: {
|
|
4098
|
+
serializedName: "entity",
|
|
4099
|
+
type: {
|
|
4100
|
+
name: "String"
|
|
4101
|
+
}
|
|
4102
|
+
},
|
|
4103
|
+
entityConnectionReference: {
|
|
4104
|
+
serializedName: "entityConnectionReference",
|
|
4105
|
+
type: {
|
|
4106
|
+
name: "Composite",
|
|
4107
|
+
className: "MapperConnectionReference"
|
|
4108
|
+
}
|
|
4109
|
+
}
|
|
4110
|
+
}
|
|
4111
|
+
}
|
|
4112
|
+
};
|
|
4113
|
+
export const MapperPolicy = {
|
|
4114
|
+
type: {
|
|
4115
|
+
name: "Composite",
|
|
4116
|
+
className: "MapperPolicy",
|
|
4117
|
+
modelProperties: {
|
|
4118
|
+
mode: {
|
|
4119
|
+
serializedName: "mode",
|
|
4120
|
+
type: {
|
|
4121
|
+
name: "String"
|
|
4122
|
+
}
|
|
4123
|
+
},
|
|
4124
|
+
recurrence: {
|
|
4125
|
+
serializedName: "recurrence",
|
|
4126
|
+
type: {
|
|
4127
|
+
name: "Composite",
|
|
4128
|
+
className: "MapperPolicyRecurrence"
|
|
4129
|
+
}
|
|
4130
|
+
}
|
|
4131
|
+
}
|
|
4132
|
+
}
|
|
4133
|
+
};
|
|
4134
|
+
export const MapperPolicyRecurrence = {
|
|
4135
|
+
type: {
|
|
4136
|
+
name: "Composite",
|
|
4137
|
+
className: "MapperPolicyRecurrence",
|
|
4138
|
+
modelProperties: {
|
|
4139
|
+
frequency: {
|
|
4140
|
+
serializedName: "frequency",
|
|
4141
|
+
type: {
|
|
4142
|
+
name: "String"
|
|
4143
|
+
}
|
|
4144
|
+
},
|
|
4145
|
+
interval: {
|
|
4146
|
+
serializedName: "interval",
|
|
4147
|
+
type: {
|
|
4148
|
+
name: "Number"
|
|
4149
|
+
}
|
|
4150
|
+
}
|
|
4151
|
+
}
|
|
4152
|
+
}
|
|
4153
|
+
};
|
|
3701
4154
|
export const Expression = {
|
|
3702
4155
|
type: {
|
|
3703
4156
|
name: "Composite",
|
|
@@ -4217,6 +4670,38 @@ export const IntegrationRuntimeDataFlowProperties = {
|
|
|
4217
4670
|
type: {
|
|
4218
4671
|
name: "Boolean"
|
|
4219
4672
|
}
|
|
4673
|
+
},
|
|
4674
|
+
customProperties: {
|
|
4675
|
+
serializedName: "customProperties",
|
|
4676
|
+
type: {
|
|
4677
|
+
name: "Sequence",
|
|
4678
|
+
element: {
|
|
4679
|
+
type: {
|
|
4680
|
+
name: "Composite",
|
|
4681
|
+
className: "IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem"
|
|
4682
|
+
}
|
|
4683
|
+
}
|
|
4684
|
+
}
|
|
4685
|
+
}
|
|
4686
|
+
}
|
|
4687
|
+
}
|
|
4688
|
+
};
|
|
4689
|
+
export const IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem = {
|
|
4690
|
+
type: {
|
|
4691
|
+
name: "Composite",
|
|
4692
|
+
className: "IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem",
|
|
4693
|
+
modelProperties: {
|
|
4694
|
+
name: {
|
|
4695
|
+
serializedName: "name",
|
|
4696
|
+
type: {
|
|
4697
|
+
name: "String"
|
|
4698
|
+
}
|
|
4699
|
+
},
|
|
4700
|
+
value: {
|
|
4701
|
+
serializedName: "value",
|
|
4702
|
+
type: {
|
|
4703
|
+
name: "String"
|
|
4704
|
+
}
|
|
4220
4705
|
}
|
|
4221
4706
|
}
|
|
4222
4707
|
}
|
|
@@ -4300,6 +4785,26 @@ export const PipelineExternalComputeScaleProperties = {
|
|
|
4300
4785
|
type: {
|
|
4301
4786
|
name: "Number"
|
|
4302
4787
|
}
|
|
4788
|
+
},
|
|
4789
|
+
numberOfPipelineNodes: {
|
|
4790
|
+
constraints: {
|
|
4791
|
+
InclusiveMaximum: 10,
|
|
4792
|
+
InclusiveMinimum: 1
|
|
4793
|
+
},
|
|
4794
|
+
serializedName: "numberOfPipelineNodes",
|
|
4795
|
+
type: {
|
|
4796
|
+
name: "Number"
|
|
4797
|
+
}
|
|
4798
|
+
},
|
|
4799
|
+
numberOfExternalNodes: {
|
|
4800
|
+
constraints: {
|
|
4801
|
+
InclusiveMaximum: 10,
|
|
4802
|
+
InclusiveMinimum: 1
|
|
4803
|
+
},
|
|
4804
|
+
serializedName: "numberOfExternalNodes",
|
|
4805
|
+
type: {
|
|
4806
|
+
name: "Number"
|
|
4807
|
+
}
|
|
4303
4808
|
}
|
|
4304
4809
|
}
|
|
4305
4810
|
}
|
|
@@ -5684,6 +6189,20 @@ export const MongoDbCursorMethodsProperties = {
|
|
|
5684
6189
|
}
|
|
5685
6190
|
}
|
|
5686
6191
|
};
|
|
6192
|
+
export const OutputColumn = {
|
|
6193
|
+
type: {
|
|
6194
|
+
name: "Composite",
|
|
6195
|
+
className: "OutputColumn",
|
|
6196
|
+
modelProperties: {
|
|
6197
|
+
name: {
|
|
6198
|
+
serializedName: "name",
|
|
6199
|
+
type: {
|
|
6200
|
+
name: "String"
|
|
6201
|
+
}
|
|
6202
|
+
}
|
|
6203
|
+
}
|
|
6204
|
+
}
|
|
6205
|
+
};
|
|
5687
6206
|
export const NetezzaPartitionSettings = {
|
|
5688
6207
|
type: {
|
|
5689
6208
|
name: "Composite",
|
|
@@ -6416,6 +6935,26 @@ export const AzureMLWebServiceFile = {
|
|
|
6416
6935
|
}
|
|
6417
6936
|
}
|
|
6418
6937
|
};
|
|
6938
|
+
export const SecureInputOutputPolicy = {
|
|
6939
|
+
type: {
|
|
6940
|
+
name: "Composite",
|
|
6941
|
+
className: "SecureInputOutputPolicy",
|
|
6942
|
+
modelProperties: {
|
|
6943
|
+
secureInput: {
|
|
6944
|
+
serializedName: "secureInput",
|
|
6945
|
+
type: {
|
|
6946
|
+
name: "Boolean"
|
|
6947
|
+
}
|
|
6948
|
+
},
|
|
6949
|
+
secureOutput: {
|
|
6950
|
+
serializedName: "secureOutput",
|
|
6951
|
+
type: {
|
|
6952
|
+
name: "Boolean"
|
|
6953
|
+
}
|
|
6954
|
+
}
|
|
6955
|
+
}
|
|
6956
|
+
}
|
|
6957
|
+
};
|
|
6419
6958
|
export const ExecuteDataFlowActivityTypeProperties = {
|
|
6420
6959
|
type: {
|
|
6421
6960
|
name: "Composite",
|
|
@@ -6681,10 +7220,10 @@ export const NotebookParameter = {
|
|
|
6681
7220
|
}
|
|
6682
7221
|
}
|
|
6683
7222
|
};
|
|
6684
|
-
export const
|
|
7223
|
+
export const SparkConfigurationParametrizationReference = {
|
|
6685
7224
|
type: {
|
|
6686
7225
|
name: "Composite",
|
|
6687
|
-
className: "
|
|
7226
|
+
className: "SparkConfigurationParametrizationReference",
|
|
6688
7227
|
modelProperties: {
|
|
6689
7228
|
type: {
|
|
6690
7229
|
serializedName: "type",
|
|
@@ -6703,10 +7242,10 @@ export const SynapseSparkJobReference = {
|
|
|
6703
7242
|
}
|
|
6704
7243
|
}
|
|
6705
7244
|
};
|
|
6706
|
-
export const
|
|
7245
|
+
export const SynapseSparkJobReference = {
|
|
6707
7246
|
type: {
|
|
6708
7247
|
name: "Composite",
|
|
6709
|
-
className: "
|
|
7248
|
+
className: "SynapseSparkJobReference",
|
|
6710
7249
|
modelProperties: {
|
|
6711
7250
|
type: {
|
|
6712
7251
|
serializedName: "type",
|
|
@@ -7109,6 +7648,11 @@ export const SelfHostedIntegrationRuntime = {
|
|
|
7109
7648
|
name: "Composite",
|
|
7110
7649
|
className: "LinkedIntegrationRuntimeType"
|
|
7111
7650
|
}
|
|
7651
|
+
}, selfContainedInteractiveAuthoringEnabled: {
|
|
7652
|
+
serializedName: "typeProperties.selfContainedInteractiveAuthoringEnabled",
|
|
7653
|
+
type: {
|
|
7654
|
+
name: "Boolean"
|
|
7655
|
+
}
|
|
7112
7656
|
} })
|
|
7113
7657
|
}
|
|
7114
7658
|
};
|
|
@@ -7350,6 +7894,65 @@ export const GlobalParameterResource = {
|
|
|
7350
7894
|
} })
|
|
7351
7895
|
}
|
|
7352
7896
|
};
|
|
7897
|
+
export const ChangeDataCaptureResource = {
|
|
7898
|
+
type: {
|
|
7899
|
+
name: "Composite",
|
|
7900
|
+
className: "ChangeDataCaptureResource",
|
|
7901
|
+
additionalProperties: { type: { name: "Object" } },
|
|
7902
|
+
modelProperties: Object.assign(Object.assign({}, SubResource.type.modelProperties), { folder: {
|
|
7903
|
+
serializedName: "properties.folder",
|
|
7904
|
+
type: {
|
|
7905
|
+
name: "Composite",
|
|
7906
|
+
className: "ChangeDataCaptureFolder"
|
|
7907
|
+
}
|
|
7908
|
+
}, description: {
|
|
7909
|
+
serializedName: "properties.description",
|
|
7910
|
+
type: {
|
|
7911
|
+
name: "String"
|
|
7912
|
+
}
|
|
7913
|
+
}, sourceConnectionsInfo: {
|
|
7914
|
+
serializedName: "properties.sourceConnectionsInfo",
|
|
7915
|
+
required: true,
|
|
7916
|
+
type: {
|
|
7917
|
+
name: "Sequence",
|
|
7918
|
+
element: {
|
|
7919
|
+
type: {
|
|
7920
|
+
name: "Composite",
|
|
7921
|
+
className: "MapperSourceConnectionsInfo"
|
|
7922
|
+
}
|
|
7923
|
+
}
|
|
7924
|
+
}
|
|
7925
|
+
}, targetConnectionsInfo: {
|
|
7926
|
+
serializedName: "properties.targetConnectionsInfo",
|
|
7927
|
+
required: true,
|
|
7928
|
+
type: {
|
|
7929
|
+
name: "Sequence",
|
|
7930
|
+
element: {
|
|
7931
|
+
type: {
|
|
7932
|
+
name: "Composite",
|
|
7933
|
+
className: "MapperTargetConnectionsInfo"
|
|
7934
|
+
}
|
|
7935
|
+
}
|
|
7936
|
+
}
|
|
7937
|
+
}, policy: {
|
|
7938
|
+
serializedName: "properties.policy",
|
|
7939
|
+
type: {
|
|
7940
|
+
name: "Composite",
|
|
7941
|
+
className: "MapperPolicy"
|
|
7942
|
+
}
|
|
7943
|
+
}, allowVNetOverride: {
|
|
7944
|
+
serializedName: "properties.allowVNetOverride",
|
|
7945
|
+
type: {
|
|
7946
|
+
name: "Boolean"
|
|
7947
|
+
}
|
|
7948
|
+
}, status: {
|
|
7949
|
+
serializedName: "properties.status",
|
|
7950
|
+
type: {
|
|
7951
|
+
name: "String"
|
|
7952
|
+
}
|
|
7953
|
+
} })
|
|
7954
|
+
}
|
|
7955
|
+
};
|
|
7353
7956
|
export const CredentialResource = {
|
|
7354
7957
|
type: {
|
|
7355
7958
|
name: "Composite",
|
|
@@ -7530,6 +8133,12 @@ export const SelfHostedIntegrationRuntimeStatus = {
|
|
|
7530
8133
|
type: {
|
|
7531
8134
|
name: "DateTime"
|
|
7532
8135
|
}
|
|
8136
|
+
}, selfContainedInteractiveAuthoringEnabled: {
|
|
8137
|
+
serializedName: "typeProperties.selfContainedInteractiveAuthoringEnabled",
|
|
8138
|
+
readOnly: true,
|
|
8139
|
+
type: {
|
|
8140
|
+
name: "Boolean"
|
|
8141
|
+
}
|
|
7533
8142
|
} })
|
|
7534
8143
|
}
|
|
7535
8144
|
};
|
|
@@ -7718,7 +8327,7 @@ export const AzureBlobStorageLinkedService = {
|
|
|
7718
8327
|
}, serviceEndpoint: {
|
|
7719
8328
|
serializedName: "typeProperties.serviceEndpoint",
|
|
7720
8329
|
type: {
|
|
7721
|
-
name: "
|
|
8330
|
+
name: "any"
|
|
7722
8331
|
}
|
|
7723
8332
|
}, servicePrincipalId: {
|
|
7724
8333
|
serializedName: "typeProperties.servicePrincipalId",
|
|
@@ -7744,7 +8353,7 @@ export const AzureBlobStorageLinkedService = {
|
|
|
7744
8353
|
}, accountKind: {
|
|
7745
8354
|
serializedName: "typeProperties.accountKind",
|
|
7746
8355
|
type: {
|
|
7747
|
-
name: "
|
|
8356
|
+
name: "any"
|
|
7748
8357
|
}
|
|
7749
8358
|
}, encryptedCredential: {
|
|
7750
8359
|
serializedName: "typeProperties.encryptedCredential",
|
|
@@ -7852,7 +8461,7 @@ export const AzureSqlDWLinkedService = {
|
|
|
7852
8461
|
}, encryptedCredential: {
|
|
7853
8462
|
serializedName: "typeProperties.encryptedCredential",
|
|
7854
8463
|
type: {
|
|
7855
|
-
name: "
|
|
8464
|
+
name: "String"
|
|
7856
8465
|
}
|
|
7857
8466
|
}, credential: {
|
|
7858
8467
|
serializedName: "typeProperties.credential",
|
|
@@ -7891,7 +8500,7 @@ export const SqlServerLinkedService = {
|
|
|
7891
8500
|
}, encryptedCredential: {
|
|
7892
8501
|
serializedName: "typeProperties.encryptedCredential",
|
|
7893
8502
|
type: {
|
|
7894
|
-
name: "
|
|
8503
|
+
name: "String"
|
|
7895
8504
|
}
|
|
7896
8505
|
}, alwaysEncryptedSettings: {
|
|
7897
8506
|
serializedName: "typeProperties.alwaysEncryptedSettings",
|
|
@@ -7930,7 +8539,7 @@ export const AmazonRdsForSqlServerLinkedService = {
|
|
|
7930
8539
|
}, encryptedCredential: {
|
|
7931
8540
|
serializedName: "typeProperties.encryptedCredential",
|
|
7932
8541
|
type: {
|
|
7933
|
-
name: "
|
|
8542
|
+
name: "String"
|
|
7934
8543
|
}
|
|
7935
8544
|
}, alwaysEncryptedSettings: {
|
|
7936
8545
|
serializedName: "typeProperties.alwaysEncryptedSettings",
|
|
@@ -7985,7 +8594,7 @@ export const AzureSqlDatabaseLinkedService = {
|
|
|
7985
8594
|
}, encryptedCredential: {
|
|
7986
8595
|
serializedName: "typeProperties.encryptedCredential",
|
|
7987
8596
|
type: {
|
|
7988
|
-
name: "
|
|
8597
|
+
name: "String"
|
|
7989
8598
|
}
|
|
7990
8599
|
}, alwaysEncryptedSettings: {
|
|
7991
8600
|
serializedName: "typeProperties.alwaysEncryptedSettings",
|
|
@@ -8046,7 +8655,7 @@ export const AzureSqlMILinkedService = {
|
|
|
8046
8655
|
}, encryptedCredential: {
|
|
8047
8656
|
serializedName: "typeProperties.encryptedCredential",
|
|
8048
8657
|
type: {
|
|
8049
|
-
name: "
|
|
8658
|
+
name: "String"
|
|
8050
8659
|
}
|
|
8051
8660
|
}, alwaysEncryptedSettings: {
|
|
8052
8661
|
serializedName: "typeProperties.alwaysEncryptedSettings",
|
|
@@ -8104,7 +8713,7 @@ export const AzureBatchLinkedService = {
|
|
|
8104
8713
|
}, encryptedCredential: {
|
|
8105
8714
|
serializedName: "typeProperties.encryptedCredential",
|
|
8106
8715
|
type: {
|
|
8107
|
-
name: "
|
|
8716
|
+
name: "String"
|
|
8108
8717
|
}
|
|
8109
8718
|
}, credential: {
|
|
8110
8719
|
serializedName: "typeProperties.credential",
|
|
@@ -8175,7 +8784,7 @@ export const CosmosDbLinkedService = {
|
|
|
8175
8784
|
}, servicePrincipalCredentialType: {
|
|
8176
8785
|
serializedName: "typeProperties.servicePrincipalCredentialType",
|
|
8177
8786
|
type: {
|
|
8178
|
-
name: "
|
|
8787
|
+
name: "any"
|
|
8179
8788
|
}
|
|
8180
8789
|
}, servicePrincipalCredential: {
|
|
8181
8790
|
serializedName: "typeProperties.servicePrincipalCredential",
|
|
@@ -8201,7 +8810,7 @@ export const CosmosDbLinkedService = {
|
|
|
8201
8810
|
}, encryptedCredential: {
|
|
8202
8811
|
serializedName: "typeProperties.encryptedCredential",
|
|
8203
8812
|
type: {
|
|
8204
|
-
name: "
|
|
8813
|
+
name: "String"
|
|
8205
8814
|
}
|
|
8206
8815
|
}, credential: {
|
|
8207
8816
|
serializedName: "typeProperties.credential",
|
|
@@ -8282,7 +8891,7 @@ export const DynamicsLinkedService = {
|
|
|
8282
8891
|
}, encryptedCredential: {
|
|
8283
8892
|
serializedName: "typeProperties.encryptedCredential",
|
|
8284
8893
|
type: {
|
|
8285
|
-
name: "
|
|
8894
|
+
name: "String"
|
|
8286
8895
|
}
|
|
8287
8896
|
}, credential: {
|
|
8288
8897
|
serializedName: "typeProperties.credential",
|
|
@@ -8363,7 +8972,7 @@ export const DynamicsCrmLinkedService = {
|
|
|
8363
8972
|
}, encryptedCredential: {
|
|
8364
8973
|
serializedName: "typeProperties.encryptedCredential",
|
|
8365
8974
|
type: {
|
|
8366
|
-
name: "
|
|
8975
|
+
name: "String"
|
|
8367
8976
|
}
|
|
8368
8977
|
} })
|
|
8369
8978
|
}
|
|
@@ -8438,7 +9047,7 @@ export const CommonDataServiceForAppsLinkedService = {
|
|
|
8438
9047
|
}, encryptedCredential: {
|
|
8439
9048
|
serializedName: "typeProperties.encryptedCredential",
|
|
8440
9049
|
type: {
|
|
8441
|
-
name: "
|
|
9050
|
+
name: "String"
|
|
8442
9051
|
}
|
|
8443
9052
|
} })
|
|
8444
9053
|
}
|
|
@@ -8483,7 +9092,7 @@ export const HDInsightLinkedService = {
|
|
|
8483
9092
|
}, encryptedCredential: {
|
|
8484
9093
|
serializedName: "typeProperties.encryptedCredential",
|
|
8485
9094
|
type: {
|
|
8486
|
-
name: "
|
|
9095
|
+
name: "String"
|
|
8487
9096
|
}
|
|
8488
9097
|
}, isEspEnabled: {
|
|
8489
9098
|
serializedName: "typeProperties.isEspEnabled",
|
|
@@ -8526,7 +9135,7 @@ export const FileServerLinkedService = {
|
|
|
8526
9135
|
}, encryptedCredential: {
|
|
8527
9136
|
serializedName: "typeProperties.encryptedCredential",
|
|
8528
9137
|
type: {
|
|
8529
|
-
name: "
|
|
9138
|
+
name: "String"
|
|
8530
9139
|
}
|
|
8531
9140
|
} })
|
|
8532
9141
|
}
|
|
@@ -8590,7 +9199,7 @@ export const AzureFileStorageLinkedService = {
|
|
|
8590
9199
|
}, encryptedCredential: {
|
|
8591
9200
|
serializedName: "typeProperties.encryptedCredential",
|
|
8592
9201
|
type: {
|
|
8593
|
-
name: "
|
|
9202
|
+
name: "String"
|
|
8594
9203
|
}
|
|
8595
9204
|
} })
|
|
8596
9205
|
}
|
|
@@ -8627,7 +9236,7 @@ export const AmazonS3CompatibleLinkedService = {
|
|
|
8627
9236
|
}, encryptedCredential: {
|
|
8628
9237
|
serializedName: "typeProperties.encryptedCredential",
|
|
8629
9238
|
type: {
|
|
8630
|
-
name: "
|
|
9239
|
+
name: "String"
|
|
8631
9240
|
}
|
|
8632
9241
|
} })
|
|
8633
9242
|
}
|
|
@@ -8659,7 +9268,7 @@ export const OracleCloudStorageLinkedService = {
|
|
|
8659
9268
|
}, encryptedCredential: {
|
|
8660
9269
|
serializedName: "typeProperties.encryptedCredential",
|
|
8661
9270
|
type: {
|
|
8662
|
-
name: "
|
|
9271
|
+
name: "String"
|
|
8663
9272
|
}
|
|
8664
9273
|
} })
|
|
8665
9274
|
}
|
|
@@ -8691,7 +9300,7 @@ export const GoogleCloudStorageLinkedService = {
|
|
|
8691
9300
|
}, encryptedCredential: {
|
|
8692
9301
|
serializedName: "typeProperties.encryptedCredential",
|
|
8693
9302
|
type: {
|
|
8694
|
-
name: "
|
|
9303
|
+
name: "String"
|
|
8695
9304
|
}
|
|
8696
9305
|
} })
|
|
8697
9306
|
}
|
|
@@ -8719,7 +9328,7 @@ export const OracleLinkedService = {
|
|
|
8719
9328
|
}, encryptedCredential: {
|
|
8720
9329
|
serializedName: "typeProperties.encryptedCredential",
|
|
8721
9330
|
type: {
|
|
8722
|
-
name: "
|
|
9331
|
+
name: "String"
|
|
8723
9332
|
}
|
|
8724
9333
|
} })
|
|
8725
9334
|
}
|
|
@@ -8747,7 +9356,7 @@ export const AmazonRdsForOracleLinkedService = {
|
|
|
8747
9356
|
}, encryptedCredential: {
|
|
8748
9357
|
serializedName: "typeProperties.encryptedCredential",
|
|
8749
9358
|
type: {
|
|
8750
|
-
name: "
|
|
9359
|
+
name: "String"
|
|
8751
9360
|
}
|
|
8752
9361
|
} })
|
|
8753
9362
|
}
|
|
@@ -8775,7 +9384,7 @@ export const AzureMySqlLinkedService = {
|
|
|
8775
9384
|
}, encryptedCredential: {
|
|
8776
9385
|
serializedName: "typeProperties.encryptedCredential",
|
|
8777
9386
|
type: {
|
|
8778
|
-
name: "
|
|
9387
|
+
name: "String"
|
|
8779
9388
|
}
|
|
8780
9389
|
} })
|
|
8781
9390
|
}
|
|
@@ -8803,7 +9412,7 @@ export const MySqlLinkedService = {
|
|
|
8803
9412
|
}, encryptedCredential: {
|
|
8804
9413
|
serializedName: "typeProperties.encryptedCredential",
|
|
8805
9414
|
type: {
|
|
8806
|
-
name: "
|
|
9415
|
+
name: "String"
|
|
8807
9416
|
}
|
|
8808
9417
|
} })
|
|
8809
9418
|
}
|
|
@@ -8831,7 +9440,7 @@ export const PostgreSqlLinkedService = {
|
|
|
8831
9440
|
}, encryptedCredential: {
|
|
8832
9441
|
serializedName: "typeProperties.encryptedCredential",
|
|
8833
9442
|
type: {
|
|
8834
|
-
name: "
|
|
9443
|
+
name: "String"
|
|
8835
9444
|
}
|
|
8836
9445
|
} })
|
|
8837
9446
|
}
|
|
@@ -8880,7 +9489,7 @@ export const SybaseLinkedService = {
|
|
|
8880
9489
|
}, encryptedCredential: {
|
|
8881
9490
|
serializedName: "typeProperties.encryptedCredential",
|
|
8882
9491
|
type: {
|
|
8883
|
-
name: "
|
|
9492
|
+
name: "String"
|
|
8884
9493
|
}
|
|
8885
9494
|
} })
|
|
8886
9495
|
}
|
|
@@ -8937,7 +9546,7 @@ export const Db2LinkedService = {
|
|
|
8937
9546
|
}, encryptedCredential: {
|
|
8938
9547
|
serializedName: "typeProperties.encryptedCredential",
|
|
8939
9548
|
type: {
|
|
8940
|
-
name: "
|
|
9549
|
+
name: "String"
|
|
8941
9550
|
}
|
|
8942
9551
|
} })
|
|
8943
9552
|
}
|
|
@@ -8979,7 +9588,7 @@ export const TeradataLinkedService = {
|
|
|
8979
9588
|
}, encryptedCredential: {
|
|
8980
9589
|
serializedName: "typeProperties.encryptedCredential",
|
|
8981
9590
|
type: {
|
|
8982
|
-
name: "
|
|
9591
|
+
name: "String"
|
|
8983
9592
|
}
|
|
8984
9593
|
} })
|
|
8985
9594
|
}
|
|
@@ -9028,7 +9637,7 @@ export const AzureMLLinkedService = {
|
|
|
9028
9637
|
}, encryptedCredential: {
|
|
9029
9638
|
serializedName: "typeProperties.encryptedCredential",
|
|
9030
9639
|
type: {
|
|
9031
|
-
name: "
|
|
9640
|
+
name: "String"
|
|
9032
9641
|
}
|
|
9033
9642
|
}, authentication: {
|
|
9034
9643
|
serializedName: "typeProperties.authentication",
|
|
@@ -9064,6 +9673,11 @@ export const AzureMLServiceLinkedService = {
|
|
|
9064
9673
|
type: {
|
|
9065
9674
|
name: "any"
|
|
9066
9675
|
}
|
|
9676
|
+
}, authentication: {
|
|
9677
|
+
serializedName: "typeProperties.authentication",
|
|
9678
|
+
type: {
|
|
9679
|
+
name: "any"
|
|
9680
|
+
}
|
|
9067
9681
|
}, servicePrincipalId: {
|
|
9068
9682
|
serializedName: "typeProperties.servicePrincipalId",
|
|
9069
9683
|
type: {
|
|
@@ -9083,7 +9697,7 @@ export const AzureMLServiceLinkedService = {
|
|
|
9083
9697
|
}, encryptedCredential: {
|
|
9084
9698
|
serializedName: "typeProperties.encryptedCredential",
|
|
9085
9699
|
type: {
|
|
9086
|
-
name: "
|
|
9700
|
+
name: "String"
|
|
9087
9701
|
}
|
|
9088
9702
|
} })
|
|
9089
9703
|
}
|
|
@@ -9127,7 +9741,7 @@ export const OdbcLinkedService = {
|
|
|
9127
9741
|
}, encryptedCredential: {
|
|
9128
9742
|
serializedName: "typeProperties.encryptedCredential",
|
|
9129
9743
|
type: {
|
|
9130
|
-
name: "
|
|
9744
|
+
name: "String"
|
|
9131
9745
|
}
|
|
9132
9746
|
} })
|
|
9133
9747
|
}
|
|
@@ -9171,7 +9785,7 @@ export const InformixLinkedService = {
|
|
|
9171
9785
|
}, encryptedCredential: {
|
|
9172
9786
|
serializedName: "typeProperties.encryptedCredential",
|
|
9173
9787
|
type: {
|
|
9174
|
-
name: "
|
|
9788
|
+
name: "String"
|
|
9175
9789
|
}
|
|
9176
9790
|
} })
|
|
9177
9791
|
}
|
|
@@ -9215,7 +9829,7 @@ export const MicrosoftAccessLinkedService = {
|
|
|
9215
9829
|
}, encryptedCredential: {
|
|
9216
9830
|
serializedName: "typeProperties.encryptedCredential",
|
|
9217
9831
|
type: {
|
|
9218
|
-
name: "
|
|
9832
|
+
name: "String"
|
|
9219
9833
|
}
|
|
9220
9834
|
} })
|
|
9221
9835
|
}
|
|
@@ -9242,7 +9856,7 @@ export const HdfsLinkedService = {
|
|
|
9242
9856
|
}, encryptedCredential: {
|
|
9243
9857
|
serializedName: "typeProperties.encryptedCredential",
|
|
9244
9858
|
type: {
|
|
9245
|
-
name: "
|
|
9859
|
+
name: "String"
|
|
9246
9860
|
}
|
|
9247
9861
|
}, userName: {
|
|
9248
9862
|
serializedName: "typeProperties.userName",
|
|
@@ -9339,7 +9953,7 @@ export const ODataLinkedService = {
|
|
|
9339
9953
|
}, encryptedCredential: {
|
|
9340
9954
|
serializedName: "typeProperties.encryptedCredential",
|
|
9341
9955
|
type: {
|
|
9342
|
-
name: "
|
|
9956
|
+
name: "String"
|
|
9343
9957
|
}
|
|
9344
9958
|
} })
|
|
9345
9959
|
}
|
|
@@ -9399,7 +10013,7 @@ export const CassandraLinkedService = {
|
|
|
9399
10013
|
}, encryptedCredential: {
|
|
9400
10014
|
serializedName: "typeProperties.encryptedCredential",
|
|
9401
10015
|
type: {
|
|
9402
|
-
name: "
|
|
10016
|
+
name: "String"
|
|
9403
10017
|
}
|
|
9404
10018
|
} })
|
|
9405
10019
|
}
|
|
@@ -9463,7 +10077,7 @@ export const MongoDbLinkedService = {
|
|
|
9463
10077
|
}, encryptedCredential: {
|
|
9464
10078
|
serializedName: "typeProperties.encryptedCredential",
|
|
9465
10079
|
type: {
|
|
9466
|
-
name: "
|
|
10080
|
+
name: "String"
|
|
9467
10081
|
}
|
|
9468
10082
|
} })
|
|
9469
10083
|
}
|
|
@@ -9488,6 +10102,11 @@ export const MongoDbAtlasLinkedService = {
|
|
|
9488
10102
|
type: {
|
|
9489
10103
|
name: "any"
|
|
9490
10104
|
}
|
|
10105
|
+
}, driverVersion: {
|
|
10106
|
+
serializedName: "typeProperties.driverVersion",
|
|
10107
|
+
type: {
|
|
10108
|
+
name: "any"
|
|
10109
|
+
}
|
|
9491
10110
|
} })
|
|
9492
10111
|
}
|
|
9493
10112
|
};
|
|
@@ -9595,7 +10214,7 @@ export const AzureDataLakeStoreLinkedService = {
|
|
|
9595
10214
|
}, encryptedCredential: {
|
|
9596
10215
|
serializedName: "typeProperties.encryptedCredential",
|
|
9597
10216
|
type: {
|
|
9598
|
-
name: "
|
|
10217
|
+
name: "String"
|
|
9599
10218
|
}
|
|
9600
10219
|
}, credential: {
|
|
9601
10220
|
serializedName: "typeProperties.credential",
|
|
@@ -9648,7 +10267,7 @@ export const AzureBlobFSLinkedService = {
|
|
|
9648
10267
|
}, encryptedCredential: {
|
|
9649
10268
|
serializedName: "typeProperties.encryptedCredential",
|
|
9650
10269
|
type: {
|
|
9651
|
-
name: "
|
|
10270
|
+
name: "String"
|
|
9652
10271
|
}
|
|
9653
10272
|
}, credential: {
|
|
9654
10273
|
serializedName: "typeProperties.credential",
|
|
@@ -9716,7 +10335,7 @@ export const Office365LinkedService = {
|
|
|
9716
10335
|
}, encryptedCredential: {
|
|
9717
10336
|
serializedName: "typeProperties.encryptedCredential",
|
|
9718
10337
|
type: {
|
|
9719
|
-
name: "
|
|
10338
|
+
name: "String"
|
|
9720
10339
|
}
|
|
9721
10340
|
} })
|
|
9722
10341
|
}
|
|
@@ -9759,7 +10378,7 @@ export const SalesforceLinkedService = {
|
|
|
9759
10378
|
}, encryptedCredential: {
|
|
9760
10379
|
serializedName: "typeProperties.encryptedCredential",
|
|
9761
10380
|
type: {
|
|
9762
|
-
name: "
|
|
10381
|
+
name: "String"
|
|
9763
10382
|
}
|
|
9764
10383
|
} })
|
|
9765
10384
|
}
|
|
@@ -9807,7 +10426,7 @@ export const SalesforceServiceCloudLinkedService = {
|
|
|
9807
10426
|
}, encryptedCredential: {
|
|
9808
10427
|
serializedName: "typeProperties.encryptedCredential",
|
|
9809
10428
|
type: {
|
|
9810
|
-
name: "
|
|
10429
|
+
name: "String"
|
|
9811
10430
|
}
|
|
9812
10431
|
} })
|
|
9813
10432
|
}
|
|
@@ -9840,7 +10459,7 @@ export const SapCloudForCustomerLinkedService = {
|
|
|
9840
10459
|
}, encryptedCredential: {
|
|
9841
10460
|
serializedName: "typeProperties.encryptedCredential",
|
|
9842
10461
|
type: {
|
|
9843
|
-
name: "
|
|
10462
|
+
name: "String"
|
|
9844
10463
|
}
|
|
9845
10464
|
} })
|
|
9846
10465
|
}
|
|
@@ -9857,12 +10476,12 @@ export const SapEccLinkedService = {
|
|
|
9857
10476
|
serializedName: "typeProperties.url",
|
|
9858
10477
|
required: true,
|
|
9859
10478
|
type: {
|
|
9860
|
-
name: "
|
|
10479
|
+
name: "any"
|
|
9861
10480
|
}
|
|
9862
10481
|
}, username: {
|
|
9863
10482
|
serializedName: "typeProperties.username",
|
|
9864
10483
|
type: {
|
|
9865
|
-
name: "
|
|
10484
|
+
name: "any"
|
|
9866
10485
|
}
|
|
9867
10486
|
}, password: {
|
|
9868
10487
|
serializedName: "typeProperties.password",
|
|
@@ -9940,7 +10559,7 @@ export const SapOpenHubLinkedService = {
|
|
|
9940
10559
|
}, encryptedCredential: {
|
|
9941
10560
|
serializedName: "typeProperties.encryptedCredential",
|
|
9942
10561
|
type: {
|
|
9943
|
-
name: "
|
|
10562
|
+
name: "String"
|
|
9944
10563
|
}
|
|
9945
10564
|
} })
|
|
9946
10565
|
}
|
|
@@ -10042,7 +10661,7 @@ export const SapOdpLinkedService = {
|
|
|
10042
10661
|
}, encryptedCredential: {
|
|
10043
10662
|
serializedName: "typeProperties.encryptedCredential",
|
|
10044
10663
|
type: {
|
|
10045
|
-
name: "
|
|
10664
|
+
name: "String"
|
|
10046
10665
|
}
|
|
10047
10666
|
} })
|
|
10048
10667
|
}
|
|
@@ -10117,7 +10736,7 @@ export const RestServiceLinkedService = {
|
|
|
10117
10736
|
}, encryptedCredential: {
|
|
10118
10737
|
serializedName: "typeProperties.encryptedCredential",
|
|
10119
10738
|
type: {
|
|
10120
|
-
name: "
|
|
10739
|
+
name: "String"
|
|
10121
10740
|
}
|
|
10122
10741
|
}, credential: {
|
|
10123
10742
|
serializedName: "typeProperties.credential",
|
|
@@ -10194,7 +10813,7 @@ export const TeamDeskLinkedService = {
|
|
|
10194
10813
|
}, encryptedCredential: {
|
|
10195
10814
|
serializedName: "typeProperties.encryptedCredential",
|
|
10196
10815
|
type: {
|
|
10197
|
-
name: "
|
|
10816
|
+
name: "String"
|
|
10198
10817
|
}
|
|
10199
10818
|
} })
|
|
10200
10819
|
}
|
|
@@ -10222,7 +10841,7 @@ export const QuickbaseLinkedService = {
|
|
|
10222
10841
|
}, encryptedCredential: {
|
|
10223
10842
|
serializedName: "typeProperties.encryptedCredential",
|
|
10224
10843
|
type: {
|
|
10225
|
-
name: "
|
|
10844
|
+
name: "String"
|
|
10226
10845
|
}
|
|
10227
10846
|
} })
|
|
10228
10847
|
}
|
|
@@ -10244,7 +10863,7 @@ export const SmartsheetLinkedService = {
|
|
|
10244
10863
|
}, encryptedCredential: {
|
|
10245
10864
|
serializedName: "typeProperties.encryptedCredential",
|
|
10246
10865
|
type: {
|
|
10247
|
-
name: "
|
|
10866
|
+
name: "String"
|
|
10248
10867
|
}
|
|
10249
10868
|
} })
|
|
10250
10869
|
}
|
|
@@ -10289,7 +10908,7 @@ export const ZendeskLinkedService = {
|
|
|
10289
10908
|
}, encryptedCredential: {
|
|
10290
10909
|
serializedName: "typeProperties.encryptedCredential",
|
|
10291
10910
|
type: {
|
|
10292
|
-
name: "
|
|
10911
|
+
name: "String"
|
|
10293
10912
|
}
|
|
10294
10913
|
} })
|
|
10295
10914
|
}
|
|
@@ -10311,7 +10930,7 @@ export const DataworldLinkedService = {
|
|
|
10311
10930
|
}, encryptedCredential: {
|
|
10312
10931
|
serializedName: "typeProperties.encryptedCredential",
|
|
10313
10932
|
type: {
|
|
10314
|
-
name: "
|
|
10933
|
+
name: "String"
|
|
10315
10934
|
}
|
|
10316
10935
|
} })
|
|
10317
10936
|
}
|
|
@@ -10362,7 +10981,7 @@ export const AsanaLinkedService = {
|
|
|
10362
10981
|
}, encryptedCredential: {
|
|
10363
10982
|
serializedName: "typeProperties.encryptedCredential",
|
|
10364
10983
|
type: {
|
|
10365
|
-
name: "
|
|
10984
|
+
name: "String"
|
|
10366
10985
|
}
|
|
10367
10986
|
} })
|
|
10368
10987
|
}
|
|
@@ -10407,7 +11026,7 @@ export const GoogleSheetsLinkedService = {
|
|
|
10407
11026
|
}, encryptedCredential: {
|
|
10408
11027
|
serializedName: "typeProperties.encryptedCredential",
|
|
10409
11028
|
type: {
|
|
10410
|
-
name: "
|
|
11029
|
+
name: "String"
|
|
10411
11030
|
}
|
|
10412
11031
|
} })
|
|
10413
11032
|
}
|
|
@@ -10450,7 +11069,7 @@ export const AmazonS3LinkedService = {
|
|
|
10450
11069
|
}, encryptedCredential: {
|
|
10451
11070
|
serializedName: "typeProperties.encryptedCredential",
|
|
10452
11071
|
type: {
|
|
10453
|
-
name: "
|
|
11072
|
+
name: "String"
|
|
10454
11073
|
}
|
|
10455
11074
|
} })
|
|
10456
11075
|
}
|
|
@@ -10494,7 +11113,7 @@ export const AmazonRedshiftLinkedService = {
|
|
|
10494
11113
|
}, encryptedCredential: {
|
|
10495
11114
|
serializedName: "typeProperties.encryptedCredential",
|
|
10496
11115
|
type: {
|
|
10497
|
-
name: "
|
|
11116
|
+
name: "String"
|
|
10498
11117
|
}
|
|
10499
11118
|
} })
|
|
10500
11119
|
}
|
|
@@ -10539,7 +11158,7 @@ export const AzureSearchLinkedService = {
|
|
|
10539
11158
|
}, encryptedCredential: {
|
|
10540
11159
|
serializedName: "typeProperties.encryptedCredential",
|
|
10541
11160
|
type: {
|
|
10542
|
-
name: "
|
|
11161
|
+
name: "String"
|
|
10543
11162
|
}
|
|
10544
11163
|
} })
|
|
10545
11164
|
}
|
|
@@ -10592,7 +11211,7 @@ export const HttpLinkedService = {
|
|
|
10592
11211
|
}, encryptedCredential: {
|
|
10593
11212
|
serializedName: "typeProperties.encryptedCredential",
|
|
10594
11213
|
type: {
|
|
10595
|
-
name: "
|
|
11214
|
+
name: "String"
|
|
10596
11215
|
}
|
|
10597
11216
|
}, enableServerCertificateValidation: {
|
|
10598
11217
|
serializedName: "typeProperties.enableServerCertificateValidation",
|
|
@@ -10640,7 +11259,7 @@ export const FtpServerLinkedService = {
|
|
|
10640
11259
|
}, encryptedCredential: {
|
|
10641
11260
|
serializedName: "typeProperties.encryptedCredential",
|
|
10642
11261
|
type: {
|
|
10643
|
-
name: "
|
|
11262
|
+
name: "String"
|
|
10644
11263
|
}
|
|
10645
11264
|
}, enableSsl: {
|
|
10646
11265
|
serializedName: "typeProperties.enableSsl",
|
|
@@ -10693,7 +11312,7 @@ export const SftpServerLinkedService = {
|
|
|
10693
11312
|
}, encryptedCredential: {
|
|
10694
11313
|
serializedName: "typeProperties.encryptedCredential",
|
|
10695
11314
|
type: {
|
|
10696
|
-
name: "
|
|
11315
|
+
name: "String"
|
|
10697
11316
|
}
|
|
10698
11317
|
}, privateKeyPath: {
|
|
10699
11318
|
serializedName: "typeProperties.privateKeyPath",
|
|
@@ -10765,7 +11384,7 @@ export const SapBWLinkedService = {
|
|
|
10765
11384
|
}, encryptedCredential: {
|
|
10766
11385
|
serializedName: "typeProperties.encryptedCredential",
|
|
10767
11386
|
type: {
|
|
10768
|
-
name: "
|
|
11387
|
+
name: "String"
|
|
10769
11388
|
}
|
|
10770
11389
|
} })
|
|
10771
11390
|
}
|
|
@@ -10807,7 +11426,7 @@ export const SapHanaLinkedService = {
|
|
|
10807
11426
|
}, encryptedCredential: {
|
|
10808
11427
|
serializedName: "typeProperties.encryptedCredential",
|
|
10809
11428
|
type: {
|
|
10810
|
-
name: "
|
|
11429
|
+
name: "String"
|
|
10811
11430
|
}
|
|
10812
11431
|
} })
|
|
10813
11432
|
}
|
|
@@ -10874,7 +11493,7 @@ export const AmazonMWSLinkedService = {
|
|
|
10874
11493
|
}, encryptedCredential: {
|
|
10875
11494
|
serializedName: "typeProperties.encryptedCredential",
|
|
10876
11495
|
type: {
|
|
10877
|
-
name: "
|
|
11496
|
+
name: "String"
|
|
10878
11497
|
}
|
|
10879
11498
|
} })
|
|
10880
11499
|
}
|
|
@@ -10901,7 +11520,7 @@ export const AzurePostgreSqlLinkedService = {
|
|
|
10901
11520
|
}, encryptedCredential: {
|
|
10902
11521
|
serializedName: "typeProperties.encryptedCredential",
|
|
10903
11522
|
type: {
|
|
10904
|
-
name: "
|
|
11523
|
+
name: "String"
|
|
10905
11524
|
}
|
|
10906
11525
|
} })
|
|
10907
11526
|
}
|
|
@@ -10955,7 +11574,7 @@ export const ConcurLinkedService = {
|
|
|
10955
11574
|
}, encryptedCredential: {
|
|
10956
11575
|
serializedName: "typeProperties.encryptedCredential",
|
|
10957
11576
|
type: {
|
|
10958
|
-
name: "
|
|
11577
|
+
name: "String"
|
|
10959
11578
|
}
|
|
10960
11579
|
} })
|
|
10961
11580
|
}
|
|
@@ -10982,7 +11601,7 @@ export const CouchbaseLinkedService = {
|
|
|
10982
11601
|
}, encryptedCredential: {
|
|
10983
11602
|
serializedName: "typeProperties.encryptedCredential",
|
|
10984
11603
|
type: {
|
|
10985
|
-
name: "
|
|
11604
|
+
name: "String"
|
|
10986
11605
|
}
|
|
10987
11606
|
} })
|
|
10988
11607
|
}
|
|
@@ -11009,7 +11628,7 @@ export const DrillLinkedService = {
|
|
|
11009
11628
|
}, encryptedCredential: {
|
|
11010
11629
|
serializedName: "typeProperties.encryptedCredential",
|
|
11011
11630
|
type: {
|
|
11012
|
-
name: "
|
|
11631
|
+
name: "String"
|
|
11013
11632
|
}
|
|
11014
11633
|
} })
|
|
11015
11634
|
}
|
|
@@ -11058,7 +11677,7 @@ export const EloquaLinkedService = {
|
|
|
11058
11677
|
}, encryptedCredential: {
|
|
11059
11678
|
serializedName: "typeProperties.encryptedCredential",
|
|
11060
11679
|
type: {
|
|
11061
|
-
name: "
|
|
11680
|
+
name: "String"
|
|
11062
11681
|
}
|
|
11063
11682
|
} })
|
|
11064
11683
|
}
|
|
@@ -11133,7 +11752,7 @@ export const GoogleBigQueryLinkedService = {
|
|
|
11133
11752
|
}, encryptedCredential: {
|
|
11134
11753
|
serializedName: "typeProperties.encryptedCredential",
|
|
11135
11754
|
type: {
|
|
11136
|
-
name: "
|
|
11755
|
+
name: "String"
|
|
11137
11756
|
}
|
|
11138
11757
|
} })
|
|
11139
11758
|
}
|
|
@@ -11160,7 +11779,7 @@ export const GreenplumLinkedService = {
|
|
|
11160
11779
|
}, encryptedCredential: {
|
|
11161
11780
|
serializedName: "typeProperties.encryptedCredential",
|
|
11162
11781
|
type: {
|
|
11163
|
-
name: "
|
|
11782
|
+
name: "String"
|
|
11164
11783
|
}
|
|
11165
11784
|
} })
|
|
11166
11785
|
}
|
|
@@ -11229,7 +11848,7 @@ export const HBaseLinkedService = {
|
|
|
11229
11848
|
}, encryptedCredential: {
|
|
11230
11849
|
serializedName: "typeProperties.encryptedCredential",
|
|
11231
11850
|
type: {
|
|
11232
|
-
name: "
|
|
11851
|
+
name: "String"
|
|
11233
11852
|
}
|
|
11234
11853
|
} })
|
|
11235
11854
|
}
|
|
@@ -11328,7 +11947,7 @@ export const HiveLinkedService = {
|
|
|
11328
11947
|
}, encryptedCredential: {
|
|
11329
11948
|
serializedName: "typeProperties.encryptedCredential",
|
|
11330
11949
|
type: {
|
|
11331
|
-
name: "
|
|
11950
|
+
name: "String"
|
|
11332
11951
|
}
|
|
11333
11952
|
} })
|
|
11334
11953
|
}
|
|
@@ -11383,7 +12002,7 @@ export const HubspotLinkedService = {
|
|
|
11383
12002
|
}, encryptedCredential: {
|
|
11384
12003
|
serializedName: "typeProperties.encryptedCredential",
|
|
11385
12004
|
type: {
|
|
11386
|
-
name: "
|
|
12005
|
+
name: "String"
|
|
11387
12006
|
}
|
|
11388
12007
|
} })
|
|
11389
12008
|
}
|
|
@@ -11452,7 +12071,7 @@ export const ImpalaLinkedService = {
|
|
|
11452
12071
|
}, encryptedCredential: {
|
|
11453
12072
|
serializedName: "typeProperties.encryptedCredential",
|
|
11454
12073
|
type: {
|
|
11455
|
-
name: "
|
|
12074
|
+
name: "String"
|
|
11456
12075
|
}
|
|
11457
12076
|
} })
|
|
11458
12077
|
}
|
|
@@ -11506,7 +12125,7 @@ export const JiraLinkedService = {
|
|
|
11506
12125
|
}, encryptedCredential: {
|
|
11507
12126
|
serializedName: "typeProperties.encryptedCredential",
|
|
11508
12127
|
type: {
|
|
11509
|
-
name: "
|
|
12128
|
+
name: "String"
|
|
11510
12129
|
}
|
|
11511
12130
|
} })
|
|
11512
12131
|
}
|
|
@@ -11549,7 +12168,7 @@ export const MagentoLinkedService = {
|
|
|
11549
12168
|
}, encryptedCredential: {
|
|
11550
12169
|
serializedName: "typeProperties.encryptedCredential",
|
|
11551
12170
|
type: {
|
|
11552
|
-
name: "
|
|
12171
|
+
name: "String"
|
|
11553
12172
|
}
|
|
11554
12173
|
} })
|
|
11555
12174
|
}
|
|
@@ -11576,7 +12195,7 @@ export const MariaDBLinkedService = {
|
|
|
11576
12195
|
}, encryptedCredential: {
|
|
11577
12196
|
serializedName: "typeProperties.encryptedCredential",
|
|
11578
12197
|
type: {
|
|
11579
|
-
name: "
|
|
12198
|
+
name: "String"
|
|
11580
12199
|
}
|
|
11581
12200
|
} })
|
|
11582
12201
|
}
|
|
@@ -11603,7 +12222,7 @@ export const AzureMariaDBLinkedService = {
|
|
|
11603
12222
|
}, encryptedCredential: {
|
|
11604
12223
|
serializedName: "typeProperties.encryptedCredential",
|
|
11605
12224
|
type: {
|
|
11606
|
-
name: "
|
|
12225
|
+
name: "String"
|
|
11607
12226
|
}
|
|
11608
12227
|
} })
|
|
11609
12228
|
}
|
|
@@ -11652,7 +12271,7 @@ export const MarketoLinkedService = {
|
|
|
11652
12271
|
}, encryptedCredential: {
|
|
11653
12272
|
serializedName: "typeProperties.encryptedCredential",
|
|
11654
12273
|
type: {
|
|
11655
|
-
name: "
|
|
12274
|
+
name: "String"
|
|
11656
12275
|
}
|
|
11657
12276
|
} })
|
|
11658
12277
|
}
|
|
@@ -11701,7 +12320,7 @@ export const PaypalLinkedService = {
|
|
|
11701
12320
|
}, encryptedCredential: {
|
|
11702
12321
|
serializedName: "typeProperties.encryptedCredential",
|
|
11703
12322
|
type: {
|
|
11704
|
-
name: "
|
|
12323
|
+
name: "String"
|
|
11705
12324
|
}
|
|
11706
12325
|
} })
|
|
11707
12326
|
}
|
|
@@ -11775,7 +12394,7 @@ export const PhoenixLinkedService = {
|
|
|
11775
12394
|
}, encryptedCredential: {
|
|
11776
12395
|
serializedName: "typeProperties.encryptedCredential",
|
|
11777
12396
|
type: {
|
|
11778
|
-
name: "
|
|
12397
|
+
name: "String"
|
|
11779
12398
|
}
|
|
11780
12399
|
} })
|
|
11781
12400
|
}
|
|
@@ -11861,7 +12480,7 @@ export const PrestoLinkedService = {
|
|
|
11861
12480
|
}, encryptedCredential: {
|
|
11862
12481
|
serializedName: "typeProperties.encryptedCredential",
|
|
11863
12482
|
type: {
|
|
11864
|
-
name: "
|
|
12483
|
+
name: "String"
|
|
11865
12484
|
}
|
|
11866
12485
|
} })
|
|
11867
12486
|
}
|
|
@@ -11920,7 +12539,7 @@ export const QuickBooksLinkedService = {
|
|
|
11920
12539
|
}, encryptedCredential: {
|
|
11921
12540
|
serializedName: "typeProperties.encryptedCredential",
|
|
11922
12541
|
type: {
|
|
11923
|
-
name: "
|
|
12542
|
+
name: "String"
|
|
11924
12543
|
}
|
|
11925
12544
|
} })
|
|
11926
12545
|
}
|
|
@@ -11985,7 +12604,7 @@ export const ServiceNowLinkedService = {
|
|
|
11985
12604
|
}, encryptedCredential: {
|
|
11986
12605
|
serializedName: "typeProperties.encryptedCredential",
|
|
11987
12606
|
type: {
|
|
11988
|
-
name: "
|
|
12607
|
+
name: "String"
|
|
11989
12608
|
}
|
|
11990
12609
|
} })
|
|
11991
12610
|
}
|
|
@@ -12028,7 +12647,7 @@ export const ShopifyLinkedService = {
|
|
|
12028
12647
|
}, encryptedCredential: {
|
|
12029
12648
|
serializedName: "typeProperties.encryptedCredential",
|
|
12030
12649
|
type: {
|
|
12031
|
-
name: "
|
|
12650
|
+
name: "String"
|
|
12032
12651
|
}
|
|
12033
12652
|
} })
|
|
12034
12653
|
}
|
|
@@ -12113,7 +12732,7 @@ export const SparkLinkedService = {
|
|
|
12113
12732
|
}, encryptedCredential: {
|
|
12114
12733
|
serializedName: "typeProperties.encryptedCredential",
|
|
12115
12734
|
type: {
|
|
12116
|
-
name: "
|
|
12735
|
+
name: "String"
|
|
12117
12736
|
}
|
|
12118
12737
|
} })
|
|
12119
12738
|
}
|
|
@@ -12170,7 +12789,7 @@ export const SquareLinkedService = {
|
|
|
12170
12789
|
}, encryptedCredential: {
|
|
12171
12790
|
serializedName: "typeProperties.encryptedCredential",
|
|
12172
12791
|
type: {
|
|
12173
|
-
name: "
|
|
12792
|
+
name: "String"
|
|
12174
12793
|
}
|
|
12175
12794
|
} })
|
|
12176
12795
|
}
|
|
@@ -12223,7 +12842,7 @@ export const XeroLinkedService = {
|
|
|
12223
12842
|
}, encryptedCredential: {
|
|
12224
12843
|
serializedName: "typeProperties.encryptedCredential",
|
|
12225
12844
|
type: {
|
|
12226
|
-
name: "
|
|
12845
|
+
name: "String"
|
|
12227
12846
|
}
|
|
12228
12847
|
} })
|
|
12229
12848
|
}
|
|
@@ -12270,7 +12889,7 @@ export const ZohoLinkedService = {
|
|
|
12270
12889
|
}, encryptedCredential: {
|
|
12271
12890
|
serializedName: "typeProperties.encryptedCredential",
|
|
12272
12891
|
type: {
|
|
12273
|
-
name: "
|
|
12892
|
+
name: "String"
|
|
12274
12893
|
}
|
|
12275
12894
|
} })
|
|
12276
12895
|
}
|
|
@@ -12297,7 +12916,7 @@ export const VerticaLinkedService = {
|
|
|
12297
12916
|
}, encryptedCredential: {
|
|
12298
12917
|
serializedName: "typeProperties.encryptedCredential",
|
|
12299
12918
|
type: {
|
|
12300
|
-
name: "
|
|
12919
|
+
name: "String"
|
|
12301
12920
|
}
|
|
12302
12921
|
} })
|
|
12303
12922
|
}
|
|
@@ -12324,7 +12943,7 @@ export const NetezzaLinkedService = {
|
|
|
12324
12943
|
}, encryptedCredential: {
|
|
12325
12944
|
serializedName: "typeProperties.encryptedCredential",
|
|
12326
12945
|
type: {
|
|
12327
|
-
name: "
|
|
12946
|
+
name: "String"
|
|
12328
12947
|
}
|
|
12329
12948
|
} })
|
|
12330
12949
|
}
|
|
@@ -12371,7 +12990,7 @@ export const SalesforceMarketingCloudLinkedService = {
|
|
|
12371
12990
|
}, encryptedCredential: {
|
|
12372
12991
|
serializedName: "typeProperties.encryptedCredential",
|
|
12373
12992
|
type: {
|
|
12374
|
-
name: "
|
|
12993
|
+
name: "String"
|
|
12375
12994
|
}
|
|
12376
12995
|
} })
|
|
12377
12996
|
}
|
|
@@ -12534,7 +13153,7 @@ export const HDInsightOnDemandLinkedService = {
|
|
|
12534
13153
|
}, encryptedCredential: {
|
|
12535
13154
|
serializedName: "typeProperties.encryptedCredential",
|
|
12536
13155
|
type: {
|
|
12537
|
-
name: "
|
|
13156
|
+
name: "String"
|
|
12538
13157
|
}
|
|
12539
13158
|
}, headNodeSize: {
|
|
12540
13159
|
serializedName: "typeProperties.headNodeSize",
|
|
@@ -12630,7 +13249,7 @@ export const AzureDataLakeAnalyticsLinkedService = {
|
|
|
12630
13249
|
}, encryptedCredential: {
|
|
12631
13250
|
serializedName: "typeProperties.encryptedCredential",
|
|
12632
13251
|
type: {
|
|
12633
|
-
name: "
|
|
13252
|
+
name: "String"
|
|
12634
13253
|
}
|
|
12635
13254
|
} })
|
|
12636
13255
|
}
|
|
@@ -12731,7 +13350,7 @@ export const AzureDatabricksLinkedService = {
|
|
|
12731
13350
|
}, encryptedCredential: {
|
|
12732
13351
|
serializedName: "typeProperties.encryptedCredential",
|
|
12733
13352
|
type: {
|
|
12734
|
-
name: "
|
|
13353
|
+
name: "String"
|
|
12735
13354
|
}
|
|
12736
13355
|
}, policyId: {
|
|
12737
13356
|
serializedName: "typeProperties.policyId",
|
|
@@ -12775,7 +13394,7 @@ export const AzureDatabricksDeltaLakeLinkedService = {
|
|
|
12775
13394
|
}, encryptedCredential: {
|
|
12776
13395
|
serializedName: "typeProperties.encryptedCredential",
|
|
12777
13396
|
type: {
|
|
12778
|
-
name: "
|
|
13397
|
+
name: "String"
|
|
12779
13398
|
}
|
|
12780
13399
|
}, credential: {
|
|
12781
13400
|
serializedName: "typeProperties.credential",
|
|
@@ -12835,7 +13454,7 @@ export const ResponsysLinkedService = {
|
|
|
12835
13454
|
}, encryptedCredential: {
|
|
12836
13455
|
serializedName: "typeProperties.encryptedCredential",
|
|
12837
13456
|
type: {
|
|
12838
|
-
name: "
|
|
13457
|
+
name: "String"
|
|
12839
13458
|
}
|
|
12840
13459
|
} })
|
|
12841
13460
|
}
|
|
@@ -12881,7 +13500,7 @@ export const DynamicsAXLinkedService = {
|
|
|
12881
13500
|
}, encryptedCredential: {
|
|
12882
13501
|
serializedName: "typeProperties.encryptedCredential",
|
|
12883
13502
|
type: {
|
|
12884
|
-
name: "
|
|
13503
|
+
name: "String"
|
|
12885
13504
|
}
|
|
12886
13505
|
} })
|
|
12887
13506
|
}
|
|
@@ -12930,7 +13549,7 @@ export const OracleServiceCloudLinkedService = {
|
|
|
12930
13549
|
}, encryptedCredential: {
|
|
12931
13550
|
serializedName: "typeProperties.encryptedCredential",
|
|
12932
13551
|
type: {
|
|
12933
|
-
name: "
|
|
13552
|
+
name: "String"
|
|
12934
13553
|
}
|
|
12935
13554
|
} })
|
|
12936
13555
|
}
|
|
@@ -13001,10 +13620,31 @@ export const GoogleAdWordsLinkedService = {
|
|
|
13001
13620
|
type: {
|
|
13002
13621
|
name: "any"
|
|
13003
13622
|
}
|
|
13623
|
+
}, privateKey: {
|
|
13624
|
+
serializedName: "typeProperties.privateKey",
|
|
13625
|
+
type: {
|
|
13626
|
+
name: "Composite",
|
|
13627
|
+
className: "SecretBase"
|
|
13628
|
+
}
|
|
13629
|
+
}, loginCustomerID: {
|
|
13630
|
+
serializedName: "typeProperties.loginCustomerID",
|
|
13631
|
+
type: {
|
|
13632
|
+
name: "any"
|
|
13633
|
+
}
|
|
13634
|
+
}, googleAdsApiVersion: {
|
|
13635
|
+
serializedName: "typeProperties.googleAdsApiVersion",
|
|
13636
|
+
type: {
|
|
13637
|
+
name: "any"
|
|
13638
|
+
}
|
|
13639
|
+
}, supportLegacyDataTypes: {
|
|
13640
|
+
serializedName: "typeProperties.supportLegacyDataTypes",
|
|
13641
|
+
type: {
|
|
13642
|
+
name: "any"
|
|
13643
|
+
}
|
|
13004
13644
|
}, encryptedCredential: {
|
|
13005
13645
|
serializedName: "typeProperties.encryptedCredential",
|
|
13006
13646
|
type: {
|
|
13007
|
-
name: "
|
|
13647
|
+
name: "String"
|
|
13008
13648
|
}
|
|
13009
13649
|
} })
|
|
13010
13650
|
}
|
|
@@ -13096,7 +13736,7 @@ export const SapTableLinkedService = {
|
|
|
13096
13736
|
}, encryptedCredential: {
|
|
13097
13737
|
serializedName: "typeProperties.encryptedCredential",
|
|
13098
13738
|
type: {
|
|
13099
|
-
name: "
|
|
13739
|
+
name: "String"
|
|
13100
13740
|
}
|
|
13101
13741
|
} })
|
|
13102
13742
|
}
|
|
@@ -13169,7 +13809,7 @@ export const AzureFunctionLinkedService = {
|
|
|
13169
13809
|
}, encryptedCredential: {
|
|
13170
13810
|
serializedName: "typeProperties.encryptedCredential",
|
|
13171
13811
|
type: {
|
|
13172
|
-
name: "
|
|
13812
|
+
name: "String"
|
|
13173
13813
|
}
|
|
13174
13814
|
}, credential: {
|
|
13175
13815
|
serializedName: "typeProperties.credential",
|
|
@@ -13213,7 +13853,7 @@ export const SnowflakeLinkedService = {
|
|
|
13213
13853
|
}, encryptedCredential: {
|
|
13214
13854
|
serializedName: "typeProperties.encryptedCredential",
|
|
13215
13855
|
type: {
|
|
13216
|
-
name: "
|
|
13856
|
+
name: "String"
|
|
13217
13857
|
}
|
|
13218
13858
|
} })
|
|
13219
13859
|
}
|
|
@@ -13253,7 +13893,7 @@ export const SharePointOnlineListLinkedService = {
|
|
|
13253
13893
|
}, encryptedCredential: {
|
|
13254
13894
|
serializedName: "typeProperties.encryptedCredential",
|
|
13255
13895
|
type: {
|
|
13256
|
-
name: "
|
|
13896
|
+
name: "String"
|
|
13257
13897
|
}
|
|
13258
13898
|
} })
|
|
13259
13899
|
}
|
|
@@ -13285,6 +13925,59 @@ export const AzureSynapseArtifactsLinkedService = {
|
|
|
13285
13925
|
} })
|
|
13286
13926
|
}
|
|
13287
13927
|
};
|
|
13928
|
+
export const LakeHouseLinkedService = {
|
|
13929
|
+
serializedName: "LakeHouse",
|
|
13930
|
+
type: {
|
|
13931
|
+
name: "Composite",
|
|
13932
|
+
className: "LakeHouseLinkedService",
|
|
13933
|
+
uberParent: "LinkedService",
|
|
13934
|
+
additionalProperties: { type: { name: "Object" } },
|
|
13935
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
13936
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { workspaceId: {
|
|
13937
|
+
serializedName: "typeProperties.workspaceId",
|
|
13938
|
+
type: {
|
|
13939
|
+
name: "any"
|
|
13940
|
+
}
|
|
13941
|
+
}, artifactId: {
|
|
13942
|
+
serializedName: "typeProperties.artifactId",
|
|
13943
|
+
type: {
|
|
13944
|
+
name: "any"
|
|
13945
|
+
}
|
|
13946
|
+
}, servicePrincipalId: {
|
|
13947
|
+
serializedName: "typeProperties.servicePrincipalId",
|
|
13948
|
+
type: {
|
|
13949
|
+
name: "any"
|
|
13950
|
+
}
|
|
13951
|
+
}, servicePrincipalKey: {
|
|
13952
|
+
serializedName: "typeProperties.servicePrincipalKey",
|
|
13953
|
+
type: {
|
|
13954
|
+
name: "Composite",
|
|
13955
|
+
className: "SecretBase"
|
|
13956
|
+
}
|
|
13957
|
+
}, tenant: {
|
|
13958
|
+
serializedName: "typeProperties.tenant",
|
|
13959
|
+
type: {
|
|
13960
|
+
name: "any"
|
|
13961
|
+
}
|
|
13962
|
+
}, encryptedCredential: {
|
|
13963
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
13964
|
+
type: {
|
|
13965
|
+
name: "String"
|
|
13966
|
+
}
|
|
13967
|
+
}, servicePrincipalCredentialType: {
|
|
13968
|
+
serializedName: "typeProperties.servicePrincipalCredentialType",
|
|
13969
|
+
type: {
|
|
13970
|
+
name: "any"
|
|
13971
|
+
}
|
|
13972
|
+
}, servicePrincipalCredential: {
|
|
13973
|
+
serializedName: "typeProperties.servicePrincipalCredential",
|
|
13974
|
+
type: {
|
|
13975
|
+
name: "Composite",
|
|
13976
|
+
className: "SecretBase"
|
|
13977
|
+
}
|
|
13978
|
+
} })
|
|
13979
|
+
}
|
|
13980
|
+
};
|
|
13288
13981
|
export const AmazonS3Dataset = {
|
|
13289
13982
|
serializedName: "AmazonS3Object",
|
|
13290
13983
|
type: {
|
|
@@ -14551,12 +15244,14 @@ export const RestResourceDataset = {
|
|
|
14551
15244
|
}, additionalHeaders: {
|
|
14552
15245
|
serializedName: "typeProperties.additionalHeaders",
|
|
14553
15246
|
type: {
|
|
14554
|
-
name: "
|
|
15247
|
+
name: "Dictionary",
|
|
15248
|
+
value: { type: { name: "any" } }
|
|
14555
15249
|
}
|
|
14556
15250
|
}, paginationRules: {
|
|
14557
15251
|
serializedName: "typeProperties.paginationRules",
|
|
14558
15252
|
type: {
|
|
14559
|
-
name: "
|
|
15253
|
+
name: "Dictionary",
|
|
15254
|
+
value: { type: { name: "any" } }
|
|
14560
15255
|
}
|
|
14561
15256
|
} })
|
|
14562
15257
|
}
|
|
@@ -15412,6 +16107,22 @@ export const AzureDatabricksDeltaLakeDataset = {
|
|
|
15412
16107
|
} })
|
|
15413
16108
|
}
|
|
15414
16109
|
};
|
|
16110
|
+
export const LakeHouseTableDataset = {
|
|
16111
|
+
serializedName: "LakeHouseTable",
|
|
16112
|
+
type: {
|
|
16113
|
+
name: "Composite",
|
|
16114
|
+
className: "LakeHouseTableDataset",
|
|
16115
|
+
uberParent: "Dataset",
|
|
16116
|
+
additionalProperties: { type: { name: "Object" } },
|
|
16117
|
+
polymorphicDiscriminator: Dataset.type.polymorphicDiscriminator,
|
|
16118
|
+
modelProperties: Object.assign(Object.assign({}, Dataset.type.modelProperties), { table: {
|
|
16119
|
+
serializedName: "typeProperties.table",
|
|
16120
|
+
type: {
|
|
16121
|
+
name: "any"
|
|
16122
|
+
}
|
|
16123
|
+
} })
|
|
16124
|
+
}
|
|
16125
|
+
};
|
|
15415
16126
|
export const ControlActivity = {
|
|
15416
16127
|
serializedName: "Container",
|
|
15417
16128
|
type: {
|
|
@@ -16216,6 +16927,17 @@ export const HdfsLocation = {
|
|
|
16216
16927
|
modelProperties: Object.assign({}, DatasetLocation.type.modelProperties)
|
|
16217
16928
|
}
|
|
16218
16929
|
};
|
|
16930
|
+
export const LakeHouseLocation = {
|
|
16931
|
+
serializedName: "LakeHouseLocation",
|
|
16932
|
+
type: {
|
|
16933
|
+
name: "Composite",
|
|
16934
|
+
className: "LakeHouseLocation",
|
|
16935
|
+
uberParent: "DatasetLocation",
|
|
16936
|
+
additionalProperties: { type: { name: "Object" } },
|
|
16937
|
+
polymorphicDiscriminator: DatasetLocation.type.polymorphicDiscriminator,
|
|
16938
|
+
modelProperties: Object.assign({}, DatasetLocation.type.modelProperties)
|
|
16939
|
+
}
|
|
16940
|
+
};
|
|
16219
16941
|
export const TextFormat = {
|
|
16220
16942
|
serializedName: "TextFormat",
|
|
16221
16943
|
type: {
|
|
@@ -16557,7 +17279,7 @@ export const AzureBlobStorageReadSettings = {
|
|
|
16557
17279
|
}, enablePartitionDiscovery: {
|
|
16558
17280
|
serializedName: "enablePartitionDiscovery",
|
|
16559
17281
|
type: {
|
|
16560
|
-
name: "
|
|
17282
|
+
name: "any"
|
|
16561
17283
|
}
|
|
16562
17284
|
}, partitionRootPath: {
|
|
16563
17285
|
serializedName: "partitionRootPath",
|
|
@@ -16613,7 +17335,7 @@ export const AzureBlobFSReadSettings = {
|
|
|
16613
17335
|
}, enablePartitionDiscovery: {
|
|
16614
17336
|
serializedName: "enablePartitionDiscovery",
|
|
16615
17337
|
type: {
|
|
16616
|
-
name: "
|
|
17338
|
+
name: "any"
|
|
16617
17339
|
}
|
|
16618
17340
|
}, partitionRootPath: {
|
|
16619
17341
|
serializedName: "partitionRootPath",
|
|
@@ -16679,7 +17401,7 @@ export const AzureDataLakeStoreReadSettings = {
|
|
|
16679
17401
|
}, enablePartitionDiscovery: {
|
|
16680
17402
|
serializedName: "enablePartitionDiscovery",
|
|
16681
17403
|
type: {
|
|
16682
|
-
name: "
|
|
17404
|
+
name: "any"
|
|
16683
17405
|
}
|
|
16684
17406
|
}, partitionRootPath: {
|
|
16685
17407
|
serializedName: "partitionRootPath",
|
|
@@ -16740,7 +17462,7 @@ export const AmazonS3ReadSettings = {
|
|
|
16740
17462
|
}, enablePartitionDiscovery: {
|
|
16741
17463
|
serializedName: "enablePartitionDiscovery",
|
|
16742
17464
|
type: {
|
|
16743
|
-
name: "
|
|
17465
|
+
name: "any"
|
|
16744
17466
|
}
|
|
16745
17467
|
}, partitionRootPath: {
|
|
16746
17468
|
serializedName: "partitionRootPath",
|
|
@@ -16796,7 +17518,7 @@ export const FileServerReadSettings = {
|
|
|
16796
17518
|
}, enablePartitionDiscovery: {
|
|
16797
17519
|
serializedName: "enablePartitionDiscovery",
|
|
16798
17520
|
type: {
|
|
16799
|
-
name: "
|
|
17521
|
+
name: "any"
|
|
16800
17522
|
}
|
|
16801
17523
|
}, partitionRootPath: {
|
|
16802
17524
|
serializedName: "partitionRootPath",
|
|
@@ -16862,7 +17584,7 @@ export const AzureFileStorageReadSettings = {
|
|
|
16862
17584
|
}, enablePartitionDiscovery: {
|
|
16863
17585
|
serializedName: "enablePartitionDiscovery",
|
|
16864
17586
|
type: {
|
|
16865
|
-
name: "
|
|
17587
|
+
name: "any"
|
|
16866
17588
|
}
|
|
16867
17589
|
}, partitionRootPath: {
|
|
16868
17590
|
serializedName: "partitionRootPath",
|
|
@@ -16923,7 +17645,7 @@ export const AmazonS3CompatibleReadSettings = {
|
|
|
16923
17645
|
}, enablePartitionDiscovery: {
|
|
16924
17646
|
serializedName: "enablePartitionDiscovery",
|
|
16925
17647
|
type: {
|
|
16926
|
-
name: "
|
|
17648
|
+
name: "any"
|
|
16927
17649
|
}
|
|
16928
17650
|
}, partitionRootPath: {
|
|
16929
17651
|
serializedName: "partitionRootPath",
|
|
@@ -16984,7 +17706,7 @@ export const OracleCloudStorageReadSettings = {
|
|
|
16984
17706
|
}, enablePartitionDiscovery: {
|
|
16985
17707
|
serializedName: "enablePartitionDiscovery",
|
|
16986
17708
|
type: {
|
|
16987
|
-
name: "
|
|
17709
|
+
name: "any"
|
|
16988
17710
|
}
|
|
16989
17711
|
}, partitionRootPath: {
|
|
16990
17712
|
serializedName: "partitionRootPath",
|
|
@@ -17045,7 +17767,7 @@ export const GoogleCloudStorageReadSettings = {
|
|
|
17045
17767
|
}, enablePartitionDiscovery: {
|
|
17046
17768
|
serializedName: "enablePartitionDiscovery",
|
|
17047
17769
|
type: {
|
|
17048
|
-
name: "
|
|
17770
|
+
name: "any"
|
|
17049
17771
|
}
|
|
17050
17772
|
}, partitionRootPath: {
|
|
17051
17773
|
serializedName: "partitionRootPath",
|
|
@@ -17096,7 +17818,7 @@ export const FtpReadSettings = {
|
|
|
17096
17818
|
}, enablePartitionDiscovery: {
|
|
17097
17819
|
serializedName: "enablePartitionDiscovery",
|
|
17098
17820
|
type: {
|
|
17099
|
-
name: "
|
|
17821
|
+
name: "any"
|
|
17100
17822
|
}
|
|
17101
17823
|
}, partitionRootPath: {
|
|
17102
17824
|
serializedName: "partitionRootPath",
|
|
@@ -17116,7 +17838,7 @@ export const FtpReadSettings = {
|
|
|
17116
17838
|
}, useBinaryTransfer: {
|
|
17117
17839
|
serializedName: "useBinaryTransfer",
|
|
17118
17840
|
type: {
|
|
17119
|
-
name: "
|
|
17841
|
+
name: "any"
|
|
17120
17842
|
}
|
|
17121
17843
|
}, disableChunking: {
|
|
17122
17844
|
serializedName: "disableChunking",
|
|
@@ -17152,7 +17874,7 @@ export const SftpReadSettings = {
|
|
|
17152
17874
|
}, enablePartitionDiscovery: {
|
|
17153
17875
|
serializedName: "enablePartitionDiscovery",
|
|
17154
17876
|
type: {
|
|
17155
|
-
name: "
|
|
17877
|
+
name: "any"
|
|
17156
17878
|
}
|
|
17157
17879
|
}, partitionRootPath: {
|
|
17158
17880
|
serializedName: "partitionRootPath",
|
|
@@ -17215,13 +17937,8 @@ export const HttpReadSettings = {
|
|
|
17215
17937
|
type: {
|
|
17216
17938
|
name: "any"
|
|
17217
17939
|
}
|
|
17218
|
-
},
|
|
17219
|
-
serializedName: "
|
|
17220
|
-
type: {
|
|
17221
|
-
name: "Boolean"
|
|
17222
|
-
}
|
|
17223
|
-
}, partitionRootPath: {
|
|
17224
|
-
serializedName: "partitionRootPath",
|
|
17940
|
+
}, additionalColumns: {
|
|
17941
|
+
serializedName: "additionalColumns",
|
|
17225
17942
|
type: {
|
|
17226
17943
|
name: "any"
|
|
17227
17944
|
}
|
|
@@ -17259,7 +17976,7 @@ export const HdfsReadSettings = {
|
|
|
17259
17976
|
}, enablePartitionDiscovery: {
|
|
17260
17977
|
serializedName: "enablePartitionDiscovery",
|
|
17261
17978
|
type: {
|
|
17262
|
-
name: "
|
|
17979
|
+
name: "any"
|
|
17263
17980
|
}
|
|
17264
17981
|
}, partitionRootPath: {
|
|
17265
17982
|
serializedName: "partitionRootPath",
|
|
@@ -17290,6 +18007,62 @@ export const HdfsReadSettings = {
|
|
|
17290
18007
|
} })
|
|
17291
18008
|
}
|
|
17292
18009
|
};
|
|
18010
|
+
export const LakeHouseReadSettings = {
|
|
18011
|
+
serializedName: "LakeHouseReadSettings",
|
|
18012
|
+
type: {
|
|
18013
|
+
name: "Composite",
|
|
18014
|
+
className: "LakeHouseReadSettings",
|
|
18015
|
+
uberParent: "StoreReadSettings",
|
|
18016
|
+
additionalProperties: { type: { name: "Object" } },
|
|
18017
|
+
polymorphicDiscriminator: StoreReadSettings.type.polymorphicDiscriminator,
|
|
18018
|
+
modelProperties: Object.assign(Object.assign({}, StoreReadSettings.type.modelProperties), { recursive: {
|
|
18019
|
+
serializedName: "recursive",
|
|
18020
|
+
type: {
|
|
18021
|
+
name: "any"
|
|
18022
|
+
}
|
|
18023
|
+
}, wildcardFolderPath: {
|
|
18024
|
+
serializedName: "wildcardFolderPath",
|
|
18025
|
+
type: {
|
|
18026
|
+
name: "any"
|
|
18027
|
+
}
|
|
18028
|
+
}, wildcardFileName: {
|
|
18029
|
+
serializedName: "wildcardFileName",
|
|
18030
|
+
type: {
|
|
18031
|
+
name: "any"
|
|
18032
|
+
}
|
|
18033
|
+
}, fileListPath: {
|
|
18034
|
+
serializedName: "fileListPath",
|
|
18035
|
+
type: {
|
|
18036
|
+
name: "any"
|
|
18037
|
+
}
|
|
18038
|
+
}, enablePartitionDiscovery: {
|
|
18039
|
+
serializedName: "enablePartitionDiscovery",
|
|
18040
|
+
type: {
|
|
18041
|
+
name: "any"
|
|
18042
|
+
}
|
|
18043
|
+
}, partitionRootPath: {
|
|
18044
|
+
serializedName: "partitionRootPath",
|
|
18045
|
+
type: {
|
|
18046
|
+
name: "any"
|
|
18047
|
+
}
|
|
18048
|
+
}, deleteFilesAfterCompletion: {
|
|
18049
|
+
serializedName: "deleteFilesAfterCompletion",
|
|
18050
|
+
type: {
|
|
18051
|
+
name: "any"
|
|
18052
|
+
}
|
|
18053
|
+
}, modifiedDatetimeStart: {
|
|
18054
|
+
serializedName: "modifiedDatetimeStart",
|
|
18055
|
+
type: {
|
|
18056
|
+
name: "any"
|
|
18057
|
+
}
|
|
18058
|
+
}, modifiedDatetimeEnd: {
|
|
18059
|
+
serializedName: "modifiedDatetimeEnd",
|
|
18060
|
+
type: {
|
|
18061
|
+
name: "any"
|
|
18062
|
+
}
|
|
18063
|
+
} })
|
|
18064
|
+
}
|
|
18065
|
+
};
|
|
17293
18066
|
export const SftpWriteSettings = {
|
|
17294
18067
|
serializedName: "SftpWriteSettings",
|
|
17295
18068
|
type: {
|
|
@@ -17381,6 +18154,34 @@ export const AzureFileStorageWriteSettings = {
|
|
|
17381
18154
|
modelProperties: Object.assign({}, StoreWriteSettings.type.modelProperties)
|
|
17382
18155
|
}
|
|
17383
18156
|
};
|
|
18157
|
+
export const LakeHouseWriteSettings = {
|
|
18158
|
+
serializedName: "LakeHouseWriteSettings",
|
|
18159
|
+
type: {
|
|
18160
|
+
name: "Composite",
|
|
18161
|
+
className: "LakeHouseWriteSettings",
|
|
18162
|
+
uberParent: "StoreWriteSettings",
|
|
18163
|
+
additionalProperties: { type: { name: "Object" } },
|
|
18164
|
+
polymorphicDiscriminator: StoreWriteSettings.type.polymorphicDiscriminator,
|
|
18165
|
+
modelProperties: Object.assign({}, StoreWriteSettings.type.modelProperties)
|
|
18166
|
+
}
|
|
18167
|
+
};
|
|
18168
|
+
export const ParquetReadSettings = {
|
|
18169
|
+
serializedName: "ParquetReadSettings",
|
|
18170
|
+
type: {
|
|
18171
|
+
name: "Composite",
|
|
18172
|
+
className: "ParquetReadSettings",
|
|
18173
|
+
uberParent: "FormatReadSettings",
|
|
18174
|
+
additionalProperties: { type: { name: "Object" } },
|
|
18175
|
+
polymorphicDiscriminator: FormatReadSettings.type.polymorphicDiscriminator,
|
|
18176
|
+
modelProperties: Object.assign(Object.assign({}, FormatReadSettings.type.modelProperties), { compressionProperties: {
|
|
18177
|
+
serializedName: "compressionProperties",
|
|
18178
|
+
type: {
|
|
18179
|
+
name: "Composite",
|
|
18180
|
+
className: "CompressionReadSettings"
|
|
18181
|
+
}
|
|
18182
|
+
} })
|
|
18183
|
+
}
|
|
18184
|
+
};
|
|
17384
18185
|
export const DelimitedTextReadSettings = {
|
|
17385
18186
|
serializedName: "DelimitedTextReadSettings",
|
|
17386
18187
|
type: {
|
|
@@ -17701,6 +18502,12 @@ export const ParquetSource = {
|
|
|
17701
18502
|
name: "Composite",
|
|
17702
18503
|
className: "StoreReadSettings"
|
|
17703
18504
|
}
|
|
18505
|
+
}, formatSettings: {
|
|
18506
|
+
serializedName: "formatSettings",
|
|
18507
|
+
type: {
|
|
18508
|
+
name: "Composite",
|
|
18509
|
+
className: "ParquetReadSettings"
|
|
18510
|
+
}
|
|
17704
18511
|
}, additionalColumns: {
|
|
17705
18512
|
serializedName: "additionalColumns",
|
|
17706
18513
|
type: {
|
|
@@ -18102,7 +18909,7 @@ export const SalesforceServiceCloudSource = {
|
|
|
18102
18909
|
}, readBehavior: {
|
|
18103
18910
|
serializedName: "readBehavior",
|
|
18104
18911
|
type: {
|
|
18105
|
-
name: "
|
|
18912
|
+
name: "any"
|
|
18106
18913
|
}
|
|
18107
18914
|
}, additionalColumns: {
|
|
18108
18915
|
serializedName: "additionalColumns",
|
|
@@ -18554,6 +19361,32 @@ export const HttpSource = {
|
|
|
18554
19361
|
} })
|
|
18555
19362
|
}
|
|
18556
19363
|
};
|
|
19364
|
+
export const LakeHouseTableSource = {
|
|
19365
|
+
serializedName: "LakeHouseTableSource",
|
|
19366
|
+
type: {
|
|
19367
|
+
name: "Composite",
|
|
19368
|
+
className: "LakeHouseTableSource",
|
|
19369
|
+
uberParent: "CopySource",
|
|
19370
|
+
additionalProperties: { type: { name: "Object" } },
|
|
19371
|
+
polymorphicDiscriminator: CopySource.type.polymorphicDiscriminator,
|
|
19372
|
+
modelProperties: Object.assign(Object.assign({}, CopySource.type.modelProperties), { timestampAsOf: {
|
|
19373
|
+
serializedName: "timestampAsOf",
|
|
19374
|
+
type: {
|
|
19375
|
+
name: "any"
|
|
19376
|
+
}
|
|
19377
|
+
}, versionAsOf: {
|
|
19378
|
+
serializedName: "versionAsOf",
|
|
19379
|
+
type: {
|
|
19380
|
+
name: "any"
|
|
19381
|
+
}
|
|
19382
|
+
}, additionalColumns: {
|
|
19383
|
+
serializedName: "additionalColumns",
|
|
19384
|
+
type: {
|
|
19385
|
+
name: "any"
|
|
19386
|
+
}
|
|
19387
|
+
} })
|
|
19388
|
+
}
|
|
19389
|
+
};
|
|
18557
19390
|
export const SnowflakeSource = {
|
|
18558
19391
|
serializedName: "SnowflakeSource",
|
|
18559
19392
|
type: {
|
|
@@ -19643,6 +20476,32 @@ export const CosmosDbMongoDbApiSink = {
|
|
|
19643
20476
|
} })
|
|
19644
20477
|
}
|
|
19645
20478
|
};
|
|
20479
|
+
export const LakeHouseTableSink = {
|
|
20480
|
+
serializedName: "LakeHouseTableSink",
|
|
20481
|
+
type: {
|
|
20482
|
+
name: "Composite",
|
|
20483
|
+
className: "LakeHouseTableSink",
|
|
20484
|
+
uberParent: "CopySink",
|
|
20485
|
+
additionalProperties: { type: { name: "Object" } },
|
|
20486
|
+
polymorphicDiscriminator: CopySink.type.polymorphicDiscriminator,
|
|
20487
|
+
modelProperties: Object.assign(Object.assign({}, CopySink.type.modelProperties), { tableActionOption: {
|
|
20488
|
+
serializedName: "tableActionOption",
|
|
20489
|
+
type: {
|
|
20490
|
+
name: "any"
|
|
20491
|
+
}
|
|
20492
|
+
}, partitionOption: {
|
|
20493
|
+
serializedName: "partitionOption",
|
|
20494
|
+
type: {
|
|
20495
|
+
name: "any"
|
|
20496
|
+
}
|
|
20497
|
+
}, partitionNameList: {
|
|
20498
|
+
serializedName: "partitionNameList",
|
|
20499
|
+
type: {
|
|
20500
|
+
name: "any"
|
|
20501
|
+
}
|
|
20502
|
+
} })
|
|
20503
|
+
}
|
|
20504
|
+
};
|
|
19646
20505
|
export const SnowflakeExportCopyCommand = {
|
|
19647
20506
|
serializedName: "SnowflakeExportCopyCommand",
|
|
19648
20507
|
type: {
|
|
@@ -20148,7 +21007,13 @@ export const SetVariableActivity = {
|
|
|
20148
21007
|
uberParent: "ControlActivity",
|
|
20149
21008
|
additionalProperties: { type: { name: "Object" } },
|
|
20150
21009
|
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20151
|
-
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), {
|
|
21010
|
+
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { policy: {
|
|
21011
|
+
serializedName: "policy",
|
|
21012
|
+
type: {
|
|
21013
|
+
name: "Composite",
|
|
21014
|
+
className: "SecureInputOutputPolicy"
|
|
21015
|
+
}
|
|
21016
|
+
}, variableName: {
|
|
20152
21017
|
serializedName: "typeProperties.variableName",
|
|
20153
21018
|
type: {
|
|
20154
21019
|
name: "String"
|
|
@@ -20158,6 +21023,11 @@ export const SetVariableActivity = {
|
|
|
20158
21023
|
type: {
|
|
20159
21024
|
name: "any"
|
|
20160
21025
|
}
|
|
21026
|
+
}, setSystemVariable: {
|
|
21027
|
+
serializedName: "typeProperties.setSystemVariable",
|
|
21028
|
+
type: {
|
|
21029
|
+
name: "Boolean"
|
|
21030
|
+
}
|
|
20161
21031
|
} })
|
|
20162
21032
|
}
|
|
20163
21033
|
};
|
|
@@ -20190,7 +21060,13 @@ export const WebHookActivity = {
|
|
|
20190
21060
|
uberParent: "ControlActivity",
|
|
20191
21061
|
additionalProperties: { type: { name: "Object" } },
|
|
20192
21062
|
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
20193
|
-
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), {
|
|
21063
|
+
modelProperties: Object.assign(Object.assign({}, ControlActivity.type.modelProperties), { policy: {
|
|
21064
|
+
serializedName: "policy",
|
|
21065
|
+
type: {
|
|
21066
|
+
name: "Composite",
|
|
21067
|
+
className: "SecureInputOutputPolicy"
|
|
21068
|
+
}
|
|
21069
|
+
}, method: {
|
|
20194
21070
|
serializedName: "typeProperties.method",
|
|
20195
21071
|
required: true,
|
|
20196
21072
|
type: {
|
|
@@ -20410,12 +21286,8 @@ export const HDInsightHiveActivity = {
|
|
|
20410
21286
|
}, variables: {
|
|
20411
21287
|
serializedName: "typeProperties.variables",
|
|
20412
21288
|
type: {
|
|
20413
|
-
name: "
|
|
20414
|
-
|
|
20415
|
-
type: {
|
|
20416
|
-
name: "any"
|
|
20417
|
-
}
|
|
20418
|
-
}
|
|
21289
|
+
name: "Dictionary",
|
|
21290
|
+
value: { type: { name: "any" } }
|
|
20419
21291
|
}
|
|
20420
21292
|
}, queryTimeout: {
|
|
20421
21293
|
serializedName: "typeProperties.queryTimeout",
|
|
@@ -21521,7 +22393,24 @@ export const SynapseNotebookActivity = {
|
|
|
21521
22393
|
}, numExecutors: {
|
|
21522
22394
|
serializedName: "typeProperties.numExecutors",
|
|
21523
22395
|
type: {
|
|
21524
|
-
name: "
|
|
22396
|
+
name: "any"
|
|
22397
|
+
}
|
|
22398
|
+
}, configurationType: {
|
|
22399
|
+
serializedName: "typeProperties.configurationType",
|
|
22400
|
+
type: {
|
|
22401
|
+
name: "String"
|
|
22402
|
+
}
|
|
22403
|
+
}, targetSparkConfiguration: {
|
|
22404
|
+
serializedName: "typeProperties.targetSparkConfiguration",
|
|
22405
|
+
type: {
|
|
22406
|
+
name: "Composite",
|
|
22407
|
+
className: "SparkConfigurationParametrizationReference"
|
|
22408
|
+
}
|
|
22409
|
+
}, sparkConfig: {
|
|
22410
|
+
serializedName: "typeProperties.sparkConfig",
|
|
22411
|
+
type: {
|
|
22412
|
+
name: "Dictionary",
|
|
22413
|
+
value: { type: { name: "any" } }
|
|
21525
22414
|
}
|
|
21526
22415
|
} })
|
|
21527
22416
|
}
|
|
@@ -21941,7 +22830,7 @@ export const SalesforceSource = {
|
|
|
21941
22830
|
}, readBehavior: {
|
|
21942
22831
|
serializedName: "readBehavior",
|
|
21943
22832
|
type: {
|
|
21944
|
-
name: "
|
|
22833
|
+
name: "any"
|
|
21945
22834
|
}
|
|
21946
22835
|
} })
|
|
21947
22836
|
}
|
|
@@ -22204,6 +23093,11 @@ export const SqlServerSource = {
|
|
|
22204
23093
|
type: {
|
|
22205
23094
|
name: "any"
|
|
22206
23095
|
}
|
|
23096
|
+
}, isolationLevel: {
|
|
23097
|
+
serializedName: "isolationLevel",
|
|
23098
|
+
type: {
|
|
23099
|
+
name: "any"
|
|
23100
|
+
}
|
|
22207
23101
|
}, produceAdditionalTypes: {
|
|
22208
23102
|
serializedName: "produceAdditionalTypes",
|
|
22209
23103
|
type: {
|
|
@@ -22246,6 +23140,11 @@ export const AmazonRdsForSqlServerSource = {
|
|
|
22246
23140
|
type: {
|
|
22247
23141
|
name: "any"
|
|
22248
23142
|
}
|
|
23143
|
+
}, isolationLevel: {
|
|
23144
|
+
serializedName: "isolationLevel",
|
|
23145
|
+
type: {
|
|
23146
|
+
name: "any"
|
|
23147
|
+
}
|
|
22249
23148
|
}, produceAdditionalTypes: {
|
|
22250
23149
|
serializedName: "produceAdditionalTypes",
|
|
22251
23150
|
type: {
|
|
@@ -22288,6 +23187,11 @@ export const AzureSqlSource = {
|
|
|
22288
23187
|
type: {
|
|
22289
23188
|
name: "any"
|
|
22290
23189
|
}
|
|
23190
|
+
}, isolationLevel: {
|
|
23191
|
+
serializedName: "isolationLevel",
|
|
23192
|
+
type: {
|
|
23193
|
+
name: "any"
|
|
23194
|
+
}
|
|
22291
23195
|
}, produceAdditionalTypes: {
|
|
22292
23196
|
serializedName: "produceAdditionalTypes",
|
|
22293
23197
|
type: {
|
|
@@ -22330,6 +23234,11 @@ export const SqlMISource = {
|
|
|
22330
23234
|
type: {
|
|
22331
23235
|
name: "any"
|
|
22332
23236
|
}
|
|
23237
|
+
}, isolationLevel: {
|
|
23238
|
+
serializedName: "isolationLevel",
|
|
23239
|
+
type: {
|
|
23240
|
+
name: "any"
|
|
23241
|
+
}
|
|
22333
23242
|
}, produceAdditionalTypes: {
|
|
22334
23243
|
serializedName: "produceAdditionalTypes",
|
|
22335
23244
|
type: {
|
|
@@ -22372,6 +23281,11 @@ export const SqlDWSource = {
|
|
|
22372
23281
|
type: {
|
|
22373
23282
|
name: "any"
|
|
22374
23283
|
}
|
|
23284
|
+
}, isolationLevel: {
|
|
23285
|
+
serializedName: "isolationLevel",
|
|
23286
|
+
type: {
|
|
23287
|
+
name: "any"
|
|
23288
|
+
}
|
|
22375
23289
|
}, partitionOption: {
|
|
22376
23290
|
serializedName: "partitionOption",
|
|
22377
23291
|
type: {
|
|
@@ -23241,6 +24155,7 @@ export let discriminators = {
|
|
|
23241
24155
|
"LinkedService.Snowflake": SnowflakeLinkedService,
|
|
23242
24156
|
"LinkedService.SharePointOnlineList": SharePointOnlineListLinkedService,
|
|
23243
24157
|
"LinkedService.AzureSynapseArtifacts": AzureSynapseArtifactsLinkedService,
|
|
24158
|
+
"LinkedService.LakeHouse": LakeHouseLinkedService,
|
|
23244
24159
|
"Dataset.AmazonS3Object": AmazonS3Dataset,
|
|
23245
24160
|
"Dataset.Avro": AvroDataset,
|
|
23246
24161
|
"Dataset.Excel": ExcelDataset,
|
|
@@ -23337,6 +24252,7 @@ export let discriminators = {
|
|
|
23337
24252
|
"Dataset.SnowflakeTable": SnowflakeDataset,
|
|
23338
24253
|
"Dataset.SharePointOnlineListResource": SharePointOnlineListResourceDataset,
|
|
23339
24254
|
"Dataset.AzureDatabricksDeltaLakeDataset": AzureDatabricksDeltaLakeDataset,
|
|
24255
|
+
"Dataset.LakeHouseTable": LakeHouseTableDataset,
|
|
23340
24256
|
"Activity.Container": ControlActivity,
|
|
23341
24257
|
"Activity.Execution": ExecutionActivity,
|
|
23342
24258
|
"Activity.ExecuteWranglingDataflow": ExecuteWranglingDataflowActivity,
|
|
@@ -23364,6 +24280,7 @@ export let discriminators = {
|
|
|
23364
24280
|
"DatasetLocation.SftpLocation": SftpLocation,
|
|
23365
24281
|
"DatasetLocation.HttpServerLocation": HttpServerLocation,
|
|
23366
24282
|
"DatasetLocation.HdfsLocation": HdfsLocation,
|
|
24283
|
+
"DatasetLocation.LakeHouseLocation": LakeHouseLocation,
|
|
23367
24284
|
"DatasetStorageFormat.TextFormat": TextFormat,
|
|
23368
24285
|
"DatasetStorageFormat.JsonFormat": JsonFormat,
|
|
23369
24286
|
"DatasetStorageFormat.AvroFormat": AvroFormat,
|
|
@@ -23391,12 +24308,15 @@ export let discriminators = {
|
|
|
23391
24308
|
"StoreReadSettings.SftpReadSettings": SftpReadSettings,
|
|
23392
24309
|
"StoreReadSettings.HttpReadSettings": HttpReadSettings,
|
|
23393
24310
|
"StoreReadSettings.HdfsReadSettings": HdfsReadSettings,
|
|
24311
|
+
"StoreReadSettings.LakeHouseReadSettings": LakeHouseReadSettings,
|
|
23394
24312
|
"StoreWriteSettings.SftpWriteSettings": SftpWriteSettings,
|
|
23395
24313
|
"StoreWriteSettings.AzureBlobStorageWriteSettings": AzureBlobStorageWriteSettings,
|
|
23396
24314
|
"StoreWriteSettings.AzureBlobFSWriteSettings": AzureBlobFSWriteSettings,
|
|
23397
24315
|
"StoreWriteSettings.AzureDataLakeStoreWriteSettings": AzureDataLakeStoreWriteSettings,
|
|
23398
24316
|
"StoreWriteSettings.FileServerWriteSettings": FileServerWriteSettings,
|
|
23399
24317
|
"StoreWriteSettings.AzureFileStorageWriteSettings": AzureFileStorageWriteSettings,
|
|
24318
|
+
"StoreWriteSettings.LakeHouseWriteSettings": LakeHouseWriteSettings,
|
|
24319
|
+
"FormatReadSettings.ParquetReadSettings": ParquetReadSettings,
|
|
23400
24320
|
"FormatReadSettings.DelimitedTextReadSettings": DelimitedTextReadSettings,
|
|
23401
24321
|
"FormatReadSettings.JsonReadSettings": JsonReadSettings,
|
|
23402
24322
|
"FormatReadSettings.XmlReadSettings": XmlReadSettings,
|
|
@@ -23443,6 +24363,7 @@ export let discriminators = {
|
|
|
23443
24363
|
"CopySource.AzureDataLakeStoreSource": AzureDataLakeStoreSource,
|
|
23444
24364
|
"CopySource.AzureBlobFSSource": AzureBlobFSSource,
|
|
23445
24365
|
"CopySource.HttpSource": HttpSource,
|
|
24366
|
+
"CopySource.LakeHouseTableSource": LakeHouseTableSource,
|
|
23446
24367
|
"CopySource.SnowflakeSource": SnowflakeSource,
|
|
23447
24368
|
"CopySource.AzureDatabricksDeltaLakeSource": AzureDatabricksDeltaLakeSource,
|
|
23448
24369
|
"CopySource.SharePointOnlineListSource": SharePointOnlineListSource,
|
|
@@ -23485,6 +24406,7 @@ export let discriminators = {
|
|
|
23485
24406
|
"CopySink.MongoDbAtlasSink": MongoDbAtlasSink,
|
|
23486
24407
|
"CopySink.MongoDbV2Sink": MongoDbV2Sink,
|
|
23487
24408
|
"CopySink.CosmosDbMongoDbApiSink": CosmosDbMongoDbApiSink,
|
|
24409
|
+
"CopySink.LakeHouseTableSink": LakeHouseTableSink,
|
|
23488
24410
|
"ExportSettings.SnowflakeExportCopyCommand": SnowflakeExportCopyCommand,
|
|
23489
24411
|
"ExportSettings.AzureDatabricksDeltaLakeExportCommand": AzureDatabricksDeltaLakeExportCommand,
|
|
23490
24412
|
"ImportSettings.AzureDatabricksDeltaLakeImportCommand": AzureDatabricksDeltaLakeImportCommand,
|