@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
package/src/models/mappers.ts
CHANGED
|
@@ -2003,6 +2003,18 @@ export const Activity: coreClient.CompositeMapper = {
|
|
|
2003
2003
|
name: "String"
|
|
2004
2004
|
}
|
|
2005
2005
|
},
|
|
2006
|
+
state: {
|
|
2007
|
+
serializedName: "state",
|
|
2008
|
+
type: {
|
|
2009
|
+
name: "String"
|
|
2010
|
+
}
|
|
2011
|
+
},
|
|
2012
|
+
onInactiveMarkAs: {
|
|
2013
|
+
serializedName: "onInactiveMarkAs",
|
|
2014
|
+
type: {
|
|
2015
|
+
name: "String"
|
|
2016
|
+
}
|
|
2017
|
+
},
|
|
2006
2018
|
dependsOn: {
|
|
2007
2019
|
serializedName: "dependsOn",
|
|
2008
2020
|
type: {
|
|
@@ -3792,28 +3804,484 @@ export const PrivateLinkResourceProperties: coreClient.CompositeMapper = {
|
|
|
3792
3804
|
}
|
|
3793
3805
|
};
|
|
3794
3806
|
|
|
3795
|
-
export const GlobalParameterListResponse: coreClient.CompositeMapper = {
|
|
3807
|
+
export const GlobalParameterListResponse: coreClient.CompositeMapper = {
|
|
3808
|
+
type: {
|
|
3809
|
+
name: "Composite",
|
|
3810
|
+
className: "GlobalParameterListResponse",
|
|
3811
|
+
modelProperties: {
|
|
3812
|
+
value: {
|
|
3813
|
+
serializedName: "value",
|
|
3814
|
+
required: true,
|
|
3815
|
+
type: {
|
|
3816
|
+
name: "Sequence",
|
|
3817
|
+
element: {
|
|
3818
|
+
type: {
|
|
3819
|
+
name: "Composite",
|
|
3820
|
+
className: "GlobalParameterResource"
|
|
3821
|
+
}
|
|
3822
|
+
}
|
|
3823
|
+
}
|
|
3824
|
+
},
|
|
3825
|
+
nextLink: {
|
|
3826
|
+
serializedName: "nextLink",
|
|
3827
|
+
type: {
|
|
3828
|
+
name: "String"
|
|
3829
|
+
}
|
|
3830
|
+
}
|
|
3831
|
+
}
|
|
3832
|
+
}
|
|
3833
|
+
};
|
|
3834
|
+
|
|
3835
|
+
export const ChangeDataCaptureListResponse: coreClient.CompositeMapper = {
|
|
3836
|
+
type: {
|
|
3837
|
+
name: "Composite",
|
|
3838
|
+
className: "ChangeDataCaptureListResponse",
|
|
3839
|
+
modelProperties: {
|
|
3840
|
+
value: {
|
|
3841
|
+
serializedName: "value",
|
|
3842
|
+
required: true,
|
|
3843
|
+
type: {
|
|
3844
|
+
name: "Sequence",
|
|
3845
|
+
element: {
|
|
3846
|
+
type: {
|
|
3847
|
+
name: "Composite",
|
|
3848
|
+
className: "ChangeDataCaptureResource"
|
|
3849
|
+
}
|
|
3850
|
+
}
|
|
3851
|
+
}
|
|
3852
|
+
},
|
|
3853
|
+
nextLink: {
|
|
3854
|
+
serializedName: "nextLink",
|
|
3855
|
+
type: {
|
|
3856
|
+
name: "String"
|
|
3857
|
+
}
|
|
3858
|
+
}
|
|
3859
|
+
}
|
|
3860
|
+
}
|
|
3861
|
+
};
|
|
3862
|
+
|
|
3863
|
+
export const ChangeDataCaptureFolder: coreClient.CompositeMapper = {
|
|
3864
|
+
type: {
|
|
3865
|
+
name: "Composite",
|
|
3866
|
+
className: "ChangeDataCaptureFolder",
|
|
3867
|
+
modelProperties: {
|
|
3868
|
+
name: {
|
|
3869
|
+
serializedName: "name",
|
|
3870
|
+
type: {
|
|
3871
|
+
name: "String"
|
|
3872
|
+
}
|
|
3873
|
+
}
|
|
3874
|
+
}
|
|
3875
|
+
}
|
|
3876
|
+
};
|
|
3877
|
+
|
|
3878
|
+
export const MapperSourceConnectionsInfo: coreClient.CompositeMapper = {
|
|
3879
|
+
type: {
|
|
3880
|
+
name: "Composite",
|
|
3881
|
+
className: "MapperSourceConnectionsInfo",
|
|
3882
|
+
modelProperties: {
|
|
3883
|
+
sourceEntities: {
|
|
3884
|
+
serializedName: "sourceEntities",
|
|
3885
|
+
type: {
|
|
3886
|
+
name: "Sequence",
|
|
3887
|
+
element: {
|
|
3888
|
+
type: {
|
|
3889
|
+
name: "Composite",
|
|
3890
|
+
className: "MapperTable"
|
|
3891
|
+
}
|
|
3892
|
+
}
|
|
3893
|
+
}
|
|
3894
|
+
},
|
|
3895
|
+
connection: {
|
|
3896
|
+
serializedName: "connection",
|
|
3897
|
+
type: {
|
|
3898
|
+
name: "Composite",
|
|
3899
|
+
className: "MapperConnection"
|
|
3900
|
+
}
|
|
3901
|
+
}
|
|
3902
|
+
}
|
|
3903
|
+
}
|
|
3904
|
+
};
|
|
3905
|
+
|
|
3906
|
+
export const MapperTable: coreClient.CompositeMapper = {
|
|
3907
|
+
type: {
|
|
3908
|
+
name: "Composite",
|
|
3909
|
+
className: "MapperTable",
|
|
3910
|
+
modelProperties: {
|
|
3911
|
+
name: {
|
|
3912
|
+
serializedName: "name",
|
|
3913
|
+
type: {
|
|
3914
|
+
name: "String"
|
|
3915
|
+
}
|
|
3916
|
+
},
|
|
3917
|
+
schema: {
|
|
3918
|
+
serializedName: "properties.schema",
|
|
3919
|
+
type: {
|
|
3920
|
+
name: "Sequence",
|
|
3921
|
+
element: {
|
|
3922
|
+
type: {
|
|
3923
|
+
name: "Composite",
|
|
3924
|
+
className: "MapperTableSchema"
|
|
3925
|
+
}
|
|
3926
|
+
}
|
|
3927
|
+
}
|
|
3928
|
+
},
|
|
3929
|
+
dslConnectorProperties: {
|
|
3930
|
+
serializedName: "properties.dslConnectorProperties",
|
|
3931
|
+
type: {
|
|
3932
|
+
name: "Sequence",
|
|
3933
|
+
element: {
|
|
3934
|
+
type: {
|
|
3935
|
+
name: "Composite",
|
|
3936
|
+
className: "MapperDslConnectorProperties"
|
|
3937
|
+
}
|
|
3938
|
+
}
|
|
3939
|
+
}
|
|
3940
|
+
}
|
|
3941
|
+
}
|
|
3942
|
+
}
|
|
3943
|
+
};
|
|
3944
|
+
|
|
3945
|
+
export const MapperTableSchema: coreClient.CompositeMapper = {
|
|
3946
|
+
type: {
|
|
3947
|
+
name: "Composite",
|
|
3948
|
+
className: "MapperTableSchema",
|
|
3949
|
+
modelProperties: {
|
|
3950
|
+
name: {
|
|
3951
|
+
serializedName: "name",
|
|
3952
|
+
type: {
|
|
3953
|
+
name: "String"
|
|
3954
|
+
}
|
|
3955
|
+
},
|
|
3956
|
+
dataType: {
|
|
3957
|
+
serializedName: "dataType",
|
|
3958
|
+
type: {
|
|
3959
|
+
name: "String"
|
|
3960
|
+
}
|
|
3961
|
+
}
|
|
3962
|
+
}
|
|
3963
|
+
}
|
|
3964
|
+
};
|
|
3965
|
+
|
|
3966
|
+
export const MapperDslConnectorProperties: coreClient.CompositeMapper = {
|
|
3967
|
+
type: {
|
|
3968
|
+
name: "Composite",
|
|
3969
|
+
className: "MapperDslConnectorProperties",
|
|
3970
|
+
modelProperties: {
|
|
3971
|
+
name: {
|
|
3972
|
+
serializedName: "name",
|
|
3973
|
+
type: {
|
|
3974
|
+
name: "String"
|
|
3975
|
+
}
|
|
3976
|
+
},
|
|
3977
|
+
value: {
|
|
3978
|
+
serializedName: "value",
|
|
3979
|
+
type: {
|
|
3980
|
+
name: "any"
|
|
3981
|
+
}
|
|
3982
|
+
}
|
|
3983
|
+
}
|
|
3984
|
+
}
|
|
3985
|
+
};
|
|
3986
|
+
|
|
3987
|
+
export const MapperConnection: coreClient.CompositeMapper = {
|
|
3988
|
+
type: {
|
|
3989
|
+
name: "Composite",
|
|
3990
|
+
className: "MapperConnection",
|
|
3991
|
+
modelProperties: {
|
|
3992
|
+
linkedService: {
|
|
3993
|
+
serializedName: "linkedService",
|
|
3994
|
+
type: {
|
|
3995
|
+
name: "Composite",
|
|
3996
|
+
className: "LinkedServiceReference"
|
|
3997
|
+
}
|
|
3998
|
+
},
|
|
3999
|
+
linkedServiceType: {
|
|
4000
|
+
serializedName: "linkedServiceType",
|
|
4001
|
+
type: {
|
|
4002
|
+
name: "String"
|
|
4003
|
+
}
|
|
4004
|
+
},
|
|
4005
|
+
type: {
|
|
4006
|
+
serializedName: "type",
|
|
4007
|
+
required: true,
|
|
4008
|
+
type: {
|
|
4009
|
+
name: "String"
|
|
4010
|
+
}
|
|
4011
|
+
},
|
|
4012
|
+
isInlineDataset: {
|
|
4013
|
+
serializedName: "isInlineDataset",
|
|
4014
|
+
type: {
|
|
4015
|
+
name: "Boolean"
|
|
4016
|
+
}
|
|
4017
|
+
},
|
|
4018
|
+
commonDslConnectorProperties: {
|
|
4019
|
+
serializedName: "commonDslConnectorProperties",
|
|
4020
|
+
type: {
|
|
4021
|
+
name: "Sequence",
|
|
4022
|
+
element: {
|
|
4023
|
+
type: {
|
|
4024
|
+
name: "Composite",
|
|
4025
|
+
className: "MapperDslConnectorProperties"
|
|
4026
|
+
}
|
|
4027
|
+
}
|
|
4028
|
+
}
|
|
4029
|
+
}
|
|
4030
|
+
}
|
|
4031
|
+
}
|
|
4032
|
+
};
|
|
4033
|
+
|
|
4034
|
+
export const MapperTargetConnectionsInfo: coreClient.CompositeMapper = {
|
|
4035
|
+
type: {
|
|
4036
|
+
name: "Composite",
|
|
4037
|
+
className: "MapperTargetConnectionsInfo",
|
|
4038
|
+
modelProperties: {
|
|
4039
|
+
targetEntities: {
|
|
4040
|
+
serializedName: "targetEntities",
|
|
4041
|
+
type: {
|
|
4042
|
+
name: "Sequence",
|
|
4043
|
+
element: {
|
|
4044
|
+
type: {
|
|
4045
|
+
name: "Composite",
|
|
4046
|
+
className: "MapperTable"
|
|
4047
|
+
}
|
|
4048
|
+
}
|
|
4049
|
+
}
|
|
4050
|
+
},
|
|
4051
|
+
connection: {
|
|
4052
|
+
serializedName: "connection",
|
|
4053
|
+
type: {
|
|
4054
|
+
name: "Composite",
|
|
4055
|
+
className: "MapperConnection"
|
|
4056
|
+
}
|
|
4057
|
+
},
|
|
4058
|
+
dataMapperMappings: {
|
|
4059
|
+
serializedName: "dataMapperMappings",
|
|
4060
|
+
type: {
|
|
4061
|
+
name: "Sequence",
|
|
4062
|
+
element: {
|
|
4063
|
+
type: {
|
|
4064
|
+
name: "Composite",
|
|
4065
|
+
className: "DataMapperMapping"
|
|
4066
|
+
}
|
|
4067
|
+
}
|
|
4068
|
+
}
|
|
4069
|
+
},
|
|
4070
|
+
relationships: {
|
|
4071
|
+
serializedName: "relationships",
|
|
4072
|
+
type: {
|
|
4073
|
+
name: "Sequence",
|
|
4074
|
+
element: {
|
|
4075
|
+
type: {
|
|
4076
|
+
name: "any"
|
|
4077
|
+
}
|
|
4078
|
+
}
|
|
4079
|
+
}
|
|
4080
|
+
}
|
|
4081
|
+
}
|
|
4082
|
+
}
|
|
4083
|
+
};
|
|
4084
|
+
|
|
4085
|
+
export const DataMapperMapping: coreClient.CompositeMapper = {
|
|
4086
|
+
type: {
|
|
4087
|
+
name: "Composite",
|
|
4088
|
+
className: "DataMapperMapping",
|
|
4089
|
+
modelProperties: {
|
|
4090
|
+
targetEntityName: {
|
|
4091
|
+
serializedName: "targetEntityName",
|
|
4092
|
+
type: {
|
|
4093
|
+
name: "String"
|
|
4094
|
+
}
|
|
4095
|
+
},
|
|
4096
|
+
sourceEntityName: {
|
|
4097
|
+
serializedName: "sourceEntityName",
|
|
4098
|
+
type: {
|
|
4099
|
+
name: "String"
|
|
4100
|
+
}
|
|
4101
|
+
},
|
|
4102
|
+
sourceConnectionReference: {
|
|
4103
|
+
serializedName: "sourceConnectionReference",
|
|
4104
|
+
type: {
|
|
4105
|
+
name: "Composite",
|
|
4106
|
+
className: "MapperConnectionReference"
|
|
4107
|
+
}
|
|
4108
|
+
},
|
|
4109
|
+
attributeMappingInfo: {
|
|
4110
|
+
serializedName: "attributeMappingInfo",
|
|
4111
|
+
type: {
|
|
4112
|
+
name: "Composite",
|
|
4113
|
+
className: "MapperAttributeMappings"
|
|
4114
|
+
}
|
|
4115
|
+
},
|
|
4116
|
+
sourceDenormalizeInfo: {
|
|
4117
|
+
serializedName: "sourceDenormalizeInfo",
|
|
4118
|
+
type: {
|
|
4119
|
+
name: "any"
|
|
4120
|
+
}
|
|
4121
|
+
}
|
|
4122
|
+
}
|
|
4123
|
+
}
|
|
4124
|
+
};
|
|
4125
|
+
|
|
4126
|
+
export const MapperConnectionReference: coreClient.CompositeMapper = {
|
|
4127
|
+
type: {
|
|
4128
|
+
name: "Composite",
|
|
4129
|
+
className: "MapperConnectionReference",
|
|
4130
|
+
modelProperties: {
|
|
4131
|
+
connectionName: {
|
|
4132
|
+
serializedName: "connectionName",
|
|
4133
|
+
type: {
|
|
4134
|
+
name: "String"
|
|
4135
|
+
}
|
|
4136
|
+
},
|
|
4137
|
+
type: {
|
|
4138
|
+
serializedName: "type",
|
|
4139
|
+
type: {
|
|
4140
|
+
name: "String"
|
|
4141
|
+
}
|
|
4142
|
+
}
|
|
4143
|
+
}
|
|
4144
|
+
}
|
|
4145
|
+
};
|
|
4146
|
+
|
|
4147
|
+
export const MapperAttributeMappings: coreClient.CompositeMapper = {
|
|
4148
|
+
type: {
|
|
4149
|
+
name: "Composite",
|
|
4150
|
+
className: "MapperAttributeMappings",
|
|
4151
|
+
modelProperties: {
|
|
4152
|
+
attributeMappings: {
|
|
4153
|
+
serializedName: "attributeMappings",
|
|
4154
|
+
type: {
|
|
4155
|
+
name: "Sequence",
|
|
4156
|
+
element: {
|
|
4157
|
+
type: {
|
|
4158
|
+
name: "Composite",
|
|
4159
|
+
className: "MapperAttributeMapping"
|
|
4160
|
+
}
|
|
4161
|
+
}
|
|
4162
|
+
}
|
|
4163
|
+
}
|
|
4164
|
+
}
|
|
4165
|
+
}
|
|
4166
|
+
};
|
|
4167
|
+
|
|
4168
|
+
export const MapperAttributeMapping: coreClient.CompositeMapper = {
|
|
4169
|
+
type: {
|
|
4170
|
+
name: "Composite",
|
|
4171
|
+
className: "MapperAttributeMapping",
|
|
4172
|
+
modelProperties: {
|
|
4173
|
+
name: {
|
|
4174
|
+
serializedName: "name",
|
|
4175
|
+
type: {
|
|
4176
|
+
name: "String"
|
|
4177
|
+
}
|
|
4178
|
+
},
|
|
4179
|
+
type: {
|
|
4180
|
+
serializedName: "type",
|
|
4181
|
+
type: {
|
|
4182
|
+
name: "String"
|
|
4183
|
+
}
|
|
4184
|
+
},
|
|
4185
|
+
functionName: {
|
|
4186
|
+
serializedName: "functionName",
|
|
4187
|
+
type: {
|
|
4188
|
+
name: "String"
|
|
4189
|
+
}
|
|
4190
|
+
},
|
|
4191
|
+
expression: {
|
|
4192
|
+
serializedName: "expression",
|
|
4193
|
+
type: {
|
|
4194
|
+
name: "String"
|
|
4195
|
+
}
|
|
4196
|
+
},
|
|
4197
|
+
attributeReference: {
|
|
4198
|
+
serializedName: "attributeReference",
|
|
4199
|
+
type: {
|
|
4200
|
+
name: "Composite",
|
|
4201
|
+
className: "MapperAttributeReference"
|
|
4202
|
+
}
|
|
4203
|
+
},
|
|
4204
|
+
attributeReferences: {
|
|
4205
|
+
serializedName: "attributeReferences",
|
|
4206
|
+
type: {
|
|
4207
|
+
name: "Sequence",
|
|
4208
|
+
element: {
|
|
4209
|
+
type: {
|
|
4210
|
+
name: "Composite",
|
|
4211
|
+
className: "MapperAttributeReference"
|
|
4212
|
+
}
|
|
4213
|
+
}
|
|
4214
|
+
}
|
|
4215
|
+
}
|
|
4216
|
+
}
|
|
4217
|
+
}
|
|
4218
|
+
};
|
|
4219
|
+
|
|
4220
|
+
export const MapperAttributeReference: coreClient.CompositeMapper = {
|
|
4221
|
+
type: {
|
|
4222
|
+
name: "Composite",
|
|
4223
|
+
className: "MapperAttributeReference",
|
|
4224
|
+
modelProperties: {
|
|
4225
|
+
name: {
|
|
4226
|
+
serializedName: "name",
|
|
4227
|
+
type: {
|
|
4228
|
+
name: "String"
|
|
4229
|
+
}
|
|
4230
|
+
},
|
|
4231
|
+
entity: {
|
|
4232
|
+
serializedName: "entity",
|
|
4233
|
+
type: {
|
|
4234
|
+
name: "String"
|
|
4235
|
+
}
|
|
4236
|
+
},
|
|
4237
|
+
entityConnectionReference: {
|
|
4238
|
+
serializedName: "entityConnectionReference",
|
|
4239
|
+
type: {
|
|
4240
|
+
name: "Composite",
|
|
4241
|
+
className: "MapperConnectionReference"
|
|
4242
|
+
}
|
|
4243
|
+
}
|
|
4244
|
+
}
|
|
4245
|
+
}
|
|
4246
|
+
};
|
|
4247
|
+
|
|
4248
|
+
export const MapperPolicy: coreClient.CompositeMapper = {
|
|
4249
|
+
type: {
|
|
4250
|
+
name: "Composite",
|
|
4251
|
+
className: "MapperPolicy",
|
|
4252
|
+
modelProperties: {
|
|
4253
|
+
mode: {
|
|
4254
|
+
serializedName: "mode",
|
|
4255
|
+
type: {
|
|
4256
|
+
name: "String"
|
|
4257
|
+
}
|
|
4258
|
+
},
|
|
4259
|
+
recurrence: {
|
|
4260
|
+
serializedName: "recurrence",
|
|
4261
|
+
type: {
|
|
4262
|
+
name: "Composite",
|
|
4263
|
+
className: "MapperPolicyRecurrence"
|
|
4264
|
+
}
|
|
4265
|
+
}
|
|
4266
|
+
}
|
|
4267
|
+
}
|
|
4268
|
+
};
|
|
4269
|
+
|
|
4270
|
+
export const MapperPolicyRecurrence: coreClient.CompositeMapper = {
|
|
3796
4271
|
type: {
|
|
3797
4272
|
name: "Composite",
|
|
3798
|
-
className: "
|
|
4273
|
+
className: "MapperPolicyRecurrence",
|
|
3799
4274
|
modelProperties: {
|
|
3800
|
-
|
|
3801
|
-
serializedName: "
|
|
3802
|
-
required: true,
|
|
4275
|
+
frequency: {
|
|
4276
|
+
serializedName: "frequency",
|
|
3803
4277
|
type: {
|
|
3804
|
-
name: "
|
|
3805
|
-
element: {
|
|
3806
|
-
type: {
|
|
3807
|
-
name: "Composite",
|
|
3808
|
-
className: "GlobalParameterResource"
|
|
3809
|
-
}
|
|
3810
|
-
}
|
|
4278
|
+
name: "String"
|
|
3811
4279
|
}
|
|
3812
4280
|
},
|
|
3813
|
-
|
|
3814
|
-
serializedName: "
|
|
4281
|
+
interval: {
|
|
4282
|
+
serializedName: "interval",
|
|
3815
4283
|
type: {
|
|
3816
|
-
name: "
|
|
4284
|
+
name: "Number"
|
|
3817
4285
|
}
|
|
3818
4286
|
}
|
|
3819
4287
|
}
|
|
@@ -4356,6 +4824,40 @@ export const IntegrationRuntimeDataFlowProperties: coreClient.CompositeMapper =
|
|
|
4356
4824
|
type: {
|
|
4357
4825
|
name: "Boolean"
|
|
4358
4826
|
}
|
|
4827
|
+
},
|
|
4828
|
+
customProperties: {
|
|
4829
|
+
serializedName: "customProperties",
|
|
4830
|
+
type: {
|
|
4831
|
+
name: "Sequence",
|
|
4832
|
+
element: {
|
|
4833
|
+
type: {
|
|
4834
|
+
name: "Composite",
|
|
4835
|
+
className:
|
|
4836
|
+
"IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem"
|
|
4837
|
+
}
|
|
4838
|
+
}
|
|
4839
|
+
}
|
|
4840
|
+
}
|
|
4841
|
+
}
|
|
4842
|
+
}
|
|
4843
|
+
};
|
|
4844
|
+
|
|
4845
|
+
export const IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem: coreClient.CompositeMapper = {
|
|
4846
|
+
type: {
|
|
4847
|
+
name: "Composite",
|
|
4848
|
+
className: "IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem",
|
|
4849
|
+
modelProperties: {
|
|
4850
|
+
name: {
|
|
4851
|
+
serializedName: "name",
|
|
4852
|
+
type: {
|
|
4853
|
+
name: "String"
|
|
4854
|
+
}
|
|
4855
|
+
},
|
|
4856
|
+
value: {
|
|
4857
|
+
serializedName: "value",
|
|
4858
|
+
type: {
|
|
4859
|
+
name: "String"
|
|
4860
|
+
}
|
|
4359
4861
|
}
|
|
4360
4862
|
}
|
|
4361
4863
|
}
|
|
@@ -4442,6 +4944,26 @@ export const PipelineExternalComputeScaleProperties: coreClient.CompositeMapper
|
|
|
4442
4944
|
type: {
|
|
4443
4945
|
name: "Number"
|
|
4444
4946
|
}
|
|
4947
|
+
},
|
|
4948
|
+
numberOfPipelineNodes: {
|
|
4949
|
+
constraints: {
|
|
4950
|
+
InclusiveMaximum: 10,
|
|
4951
|
+
InclusiveMinimum: 1
|
|
4952
|
+
},
|
|
4953
|
+
serializedName: "numberOfPipelineNodes",
|
|
4954
|
+
type: {
|
|
4955
|
+
name: "Number"
|
|
4956
|
+
}
|
|
4957
|
+
},
|
|
4958
|
+
numberOfExternalNodes: {
|
|
4959
|
+
constraints: {
|
|
4960
|
+
InclusiveMaximum: 10,
|
|
4961
|
+
InclusiveMinimum: 1
|
|
4962
|
+
},
|
|
4963
|
+
serializedName: "numberOfExternalNodes",
|
|
4964
|
+
type: {
|
|
4965
|
+
name: "Number"
|
|
4966
|
+
}
|
|
4445
4967
|
}
|
|
4446
4968
|
}
|
|
4447
4969
|
}
|
|
@@ -5869,6 +6391,21 @@ export const MongoDbCursorMethodsProperties: coreClient.CompositeMapper = {
|
|
|
5869
6391
|
}
|
|
5870
6392
|
};
|
|
5871
6393
|
|
|
6394
|
+
export const OutputColumn: coreClient.CompositeMapper = {
|
|
6395
|
+
type: {
|
|
6396
|
+
name: "Composite",
|
|
6397
|
+
className: "OutputColumn",
|
|
6398
|
+
modelProperties: {
|
|
6399
|
+
name: {
|
|
6400
|
+
serializedName: "name",
|
|
6401
|
+
type: {
|
|
6402
|
+
name: "String"
|
|
6403
|
+
}
|
|
6404
|
+
}
|
|
6405
|
+
}
|
|
6406
|
+
}
|
|
6407
|
+
};
|
|
6408
|
+
|
|
5872
6409
|
export const NetezzaPartitionSettings: coreClient.CompositeMapper = {
|
|
5873
6410
|
type: {
|
|
5874
6411
|
name: "Composite",
|
|
@@ -6627,6 +7164,27 @@ export const AzureMLWebServiceFile: coreClient.CompositeMapper = {
|
|
|
6627
7164
|
}
|
|
6628
7165
|
};
|
|
6629
7166
|
|
|
7167
|
+
export const SecureInputOutputPolicy: coreClient.CompositeMapper = {
|
|
7168
|
+
type: {
|
|
7169
|
+
name: "Composite",
|
|
7170
|
+
className: "SecureInputOutputPolicy",
|
|
7171
|
+
modelProperties: {
|
|
7172
|
+
secureInput: {
|
|
7173
|
+
serializedName: "secureInput",
|
|
7174
|
+
type: {
|
|
7175
|
+
name: "Boolean"
|
|
7176
|
+
}
|
|
7177
|
+
},
|
|
7178
|
+
secureOutput: {
|
|
7179
|
+
serializedName: "secureOutput",
|
|
7180
|
+
type: {
|
|
7181
|
+
name: "Boolean"
|
|
7182
|
+
}
|
|
7183
|
+
}
|
|
7184
|
+
}
|
|
7185
|
+
}
|
|
7186
|
+
};
|
|
7187
|
+
|
|
6630
7188
|
export const ExecuteDataFlowActivityTypeProperties: coreClient.CompositeMapper = {
|
|
6631
7189
|
type: {
|
|
6632
7190
|
name: "Composite",
|
|
@@ -6901,10 +7459,10 @@ export const NotebookParameter: coreClient.CompositeMapper = {
|
|
|
6901
7459
|
}
|
|
6902
7460
|
};
|
|
6903
7461
|
|
|
6904
|
-
export const
|
|
7462
|
+
export const SparkConfigurationParametrizationReference: coreClient.CompositeMapper = {
|
|
6905
7463
|
type: {
|
|
6906
7464
|
name: "Composite",
|
|
6907
|
-
className: "
|
|
7465
|
+
className: "SparkConfigurationParametrizationReference",
|
|
6908
7466
|
modelProperties: {
|
|
6909
7467
|
type: {
|
|
6910
7468
|
serializedName: "type",
|
|
@@ -6924,10 +7482,10 @@ export const SynapseSparkJobReference: coreClient.CompositeMapper = {
|
|
|
6924
7482
|
}
|
|
6925
7483
|
};
|
|
6926
7484
|
|
|
6927
|
-
export const
|
|
7485
|
+
export const SynapseSparkJobReference: coreClient.CompositeMapper = {
|
|
6928
7486
|
type: {
|
|
6929
7487
|
name: "Composite",
|
|
6930
|
-
className: "
|
|
7488
|
+
className: "SynapseSparkJobReference",
|
|
6931
7489
|
modelProperties: {
|
|
6932
7490
|
type: {
|
|
6933
7491
|
serializedName: "type",
|
|
@@ -7372,6 +7930,13 @@ export const SelfHostedIntegrationRuntime: coreClient.CompositeMapper = {
|
|
|
7372
7930
|
name: "Composite",
|
|
7373
7931
|
className: "LinkedIntegrationRuntimeType"
|
|
7374
7932
|
}
|
|
7933
|
+
},
|
|
7934
|
+
selfContainedInteractiveAuthoringEnabled: {
|
|
7935
|
+
serializedName:
|
|
7936
|
+
"typeProperties.selfContainedInteractiveAuthoringEnabled",
|
|
7937
|
+
type: {
|
|
7938
|
+
name: "Boolean"
|
|
7939
|
+
}
|
|
7375
7940
|
}
|
|
7376
7941
|
}
|
|
7377
7942
|
}
|
|
@@ -7675,6 +8240,75 @@ export const GlobalParameterResource: coreClient.CompositeMapper = {
|
|
|
7675
8240
|
}
|
|
7676
8241
|
};
|
|
7677
8242
|
|
|
8243
|
+
export const ChangeDataCaptureResource: coreClient.CompositeMapper = {
|
|
8244
|
+
type: {
|
|
8245
|
+
name: "Composite",
|
|
8246
|
+
className: "ChangeDataCaptureResource",
|
|
8247
|
+
additionalProperties: { type: { name: "Object" } },
|
|
8248
|
+
modelProperties: {
|
|
8249
|
+
...SubResource.type.modelProperties,
|
|
8250
|
+
folder: {
|
|
8251
|
+
serializedName: "properties.folder",
|
|
8252
|
+
type: {
|
|
8253
|
+
name: "Composite",
|
|
8254
|
+
className: "ChangeDataCaptureFolder"
|
|
8255
|
+
}
|
|
8256
|
+
},
|
|
8257
|
+
description: {
|
|
8258
|
+
serializedName: "properties.description",
|
|
8259
|
+
type: {
|
|
8260
|
+
name: "String"
|
|
8261
|
+
}
|
|
8262
|
+
},
|
|
8263
|
+
sourceConnectionsInfo: {
|
|
8264
|
+
serializedName: "properties.sourceConnectionsInfo",
|
|
8265
|
+
required: true,
|
|
8266
|
+
type: {
|
|
8267
|
+
name: "Sequence",
|
|
8268
|
+
element: {
|
|
8269
|
+
type: {
|
|
8270
|
+
name: "Composite",
|
|
8271
|
+
className: "MapperSourceConnectionsInfo"
|
|
8272
|
+
}
|
|
8273
|
+
}
|
|
8274
|
+
}
|
|
8275
|
+
},
|
|
8276
|
+
targetConnectionsInfo: {
|
|
8277
|
+
serializedName: "properties.targetConnectionsInfo",
|
|
8278
|
+
required: true,
|
|
8279
|
+
type: {
|
|
8280
|
+
name: "Sequence",
|
|
8281
|
+
element: {
|
|
8282
|
+
type: {
|
|
8283
|
+
name: "Composite",
|
|
8284
|
+
className: "MapperTargetConnectionsInfo"
|
|
8285
|
+
}
|
|
8286
|
+
}
|
|
8287
|
+
}
|
|
8288
|
+
},
|
|
8289
|
+
policy: {
|
|
8290
|
+
serializedName: "properties.policy",
|
|
8291
|
+
type: {
|
|
8292
|
+
name: "Composite",
|
|
8293
|
+
className: "MapperPolicy"
|
|
8294
|
+
}
|
|
8295
|
+
},
|
|
8296
|
+
allowVNetOverride: {
|
|
8297
|
+
serializedName: "properties.allowVNetOverride",
|
|
8298
|
+
type: {
|
|
8299
|
+
name: "Boolean"
|
|
8300
|
+
}
|
|
8301
|
+
},
|
|
8302
|
+
status: {
|
|
8303
|
+
serializedName: "properties.status",
|
|
8304
|
+
type: {
|
|
8305
|
+
name: "String"
|
|
8306
|
+
}
|
|
8307
|
+
}
|
|
8308
|
+
}
|
|
8309
|
+
}
|
|
8310
|
+
};
|
|
8311
|
+
|
|
7678
8312
|
export const CredentialResource: coreClient.CompositeMapper = {
|
|
7679
8313
|
type: {
|
|
7680
8314
|
name: "Composite",
|
|
@@ -7885,6 +8519,14 @@ export const SelfHostedIntegrationRuntimeStatus: coreClient.CompositeMapper = {
|
|
|
7885
8519
|
type: {
|
|
7886
8520
|
name: "DateTime"
|
|
7887
8521
|
}
|
|
8522
|
+
},
|
|
8523
|
+
selfContainedInteractiveAuthoringEnabled: {
|
|
8524
|
+
serializedName:
|
|
8525
|
+
"typeProperties.selfContainedInteractiveAuthoringEnabled",
|
|
8526
|
+
readOnly: true,
|
|
8527
|
+
type: {
|
|
8528
|
+
name: "Boolean"
|
|
8529
|
+
}
|
|
7888
8530
|
}
|
|
7889
8531
|
}
|
|
7890
8532
|
}
|
|
@@ -8111,7 +8753,7 @@ export const AzureBlobStorageLinkedService: coreClient.CompositeMapper = {
|
|
|
8111
8753
|
serviceEndpoint: {
|
|
8112
8754
|
serializedName: "typeProperties.serviceEndpoint",
|
|
8113
8755
|
type: {
|
|
8114
|
-
name: "
|
|
8756
|
+
name: "any"
|
|
8115
8757
|
}
|
|
8116
8758
|
},
|
|
8117
8759
|
servicePrincipalId: {
|
|
@@ -8142,7 +8784,7 @@ export const AzureBlobStorageLinkedService: coreClient.CompositeMapper = {
|
|
|
8142
8784
|
accountKind: {
|
|
8143
8785
|
serializedName: "typeProperties.accountKind",
|
|
8144
8786
|
type: {
|
|
8145
|
-
name: "
|
|
8787
|
+
name: "any"
|
|
8146
8788
|
}
|
|
8147
8789
|
},
|
|
8148
8790
|
encryptedCredential: {
|
|
@@ -8272,7 +8914,7 @@ export const AzureSqlDWLinkedService: coreClient.CompositeMapper = {
|
|
|
8272
8914
|
encryptedCredential: {
|
|
8273
8915
|
serializedName: "typeProperties.encryptedCredential",
|
|
8274
8916
|
type: {
|
|
8275
|
-
name: "
|
|
8917
|
+
name: "String"
|
|
8276
8918
|
}
|
|
8277
8919
|
},
|
|
8278
8920
|
credential: {
|
|
@@ -8319,7 +8961,7 @@ export const SqlServerLinkedService: coreClient.CompositeMapper = {
|
|
|
8319
8961
|
encryptedCredential: {
|
|
8320
8962
|
serializedName: "typeProperties.encryptedCredential",
|
|
8321
8963
|
type: {
|
|
8322
|
-
name: "
|
|
8964
|
+
name: "String"
|
|
8323
8965
|
}
|
|
8324
8966
|
},
|
|
8325
8967
|
alwaysEncryptedSettings: {
|
|
@@ -8366,7 +9008,7 @@ export const AmazonRdsForSqlServerLinkedService: coreClient.CompositeMapper = {
|
|
|
8366
9008
|
encryptedCredential: {
|
|
8367
9009
|
serializedName: "typeProperties.encryptedCredential",
|
|
8368
9010
|
type: {
|
|
8369
|
-
name: "
|
|
9011
|
+
name: "String"
|
|
8370
9012
|
}
|
|
8371
9013
|
},
|
|
8372
9014
|
alwaysEncryptedSettings: {
|
|
@@ -8432,7 +9074,7 @@ export const AzureSqlDatabaseLinkedService: coreClient.CompositeMapper = {
|
|
|
8432
9074
|
encryptedCredential: {
|
|
8433
9075
|
serializedName: "typeProperties.encryptedCredential",
|
|
8434
9076
|
type: {
|
|
8435
|
-
name: "
|
|
9077
|
+
name: "String"
|
|
8436
9078
|
}
|
|
8437
9079
|
},
|
|
8438
9080
|
alwaysEncryptedSettings: {
|
|
@@ -8505,7 +9147,7 @@ export const AzureSqlMILinkedService: coreClient.CompositeMapper = {
|
|
|
8505
9147
|
encryptedCredential: {
|
|
8506
9148
|
serializedName: "typeProperties.encryptedCredential",
|
|
8507
9149
|
type: {
|
|
8508
|
-
name: "
|
|
9150
|
+
name: "String"
|
|
8509
9151
|
}
|
|
8510
9152
|
},
|
|
8511
9153
|
alwaysEncryptedSettings: {
|
|
@@ -8574,7 +9216,7 @@ export const AzureBatchLinkedService: coreClient.CompositeMapper = {
|
|
|
8574
9216
|
encryptedCredential: {
|
|
8575
9217
|
serializedName: "typeProperties.encryptedCredential",
|
|
8576
9218
|
type: {
|
|
8577
|
-
name: "
|
|
9219
|
+
name: "String"
|
|
8578
9220
|
}
|
|
8579
9221
|
},
|
|
8580
9222
|
credential: {
|
|
@@ -8660,7 +9302,7 @@ export const CosmosDbLinkedService: coreClient.CompositeMapper = {
|
|
|
8660
9302
|
servicePrincipalCredentialType: {
|
|
8661
9303
|
serializedName: "typeProperties.servicePrincipalCredentialType",
|
|
8662
9304
|
type: {
|
|
8663
|
-
name: "
|
|
9305
|
+
name: "any"
|
|
8664
9306
|
}
|
|
8665
9307
|
},
|
|
8666
9308
|
servicePrincipalCredential: {
|
|
@@ -8691,7 +9333,7 @@ export const CosmosDbLinkedService: coreClient.CompositeMapper = {
|
|
|
8691
9333
|
encryptedCredential: {
|
|
8692
9334
|
serializedName: "typeProperties.encryptedCredential",
|
|
8693
9335
|
type: {
|
|
8694
|
-
name: "
|
|
9336
|
+
name: "String"
|
|
8695
9337
|
}
|
|
8696
9338
|
},
|
|
8697
9339
|
credential: {
|
|
@@ -8788,7 +9430,7 @@ export const DynamicsLinkedService: coreClient.CompositeMapper = {
|
|
|
8788
9430
|
encryptedCredential: {
|
|
8789
9431
|
serializedName: "typeProperties.encryptedCredential",
|
|
8790
9432
|
type: {
|
|
8791
|
-
name: "
|
|
9433
|
+
name: "String"
|
|
8792
9434
|
}
|
|
8793
9435
|
},
|
|
8794
9436
|
credential: {
|
|
@@ -8885,7 +9527,7 @@ export const DynamicsCrmLinkedService: coreClient.CompositeMapper = {
|
|
|
8885
9527
|
encryptedCredential: {
|
|
8886
9528
|
serializedName: "typeProperties.encryptedCredential",
|
|
8887
9529
|
type: {
|
|
8888
|
-
name: "
|
|
9530
|
+
name: "String"
|
|
8889
9531
|
}
|
|
8890
9532
|
}
|
|
8891
9533
|
}
|
|
@@ -8975,7 +9617,7 @@ export const CommonDataServiceForAppsLinkedService: coreClient.CompositeMapper =
|
|
|
8975
9617
|
encryptedCredential: {
|
|
8976
9618
|
serializedName: "typeProperties.encryptedCredential",
|
|
8977
9619
|
type: {
|
|
8978
|
-
name: "
|
|
9620
|
+
name: "String"
|
|
8979
9621
|
}
|
|
8980
9622
|
}
|
|
8981
9623
|
}
|
|
@@ -9029,7 +9671,7 @@ export const HDInsightLinkedService: coreClient.CompositeMapper = {
|
|
|
9029
9671
|
encryptedCredential: {
|
|
9030
9672
|
serializedName: "typeProperties.encryptedCredential",
|
|
9031
9673
|
type: {
|
|
9032
|
-
name: "
|
|
9674
|
+
name: "String"
|
|
9033
9675
|
}
|
|
9034
9676
|
},
|
|
9035
9677
|
isEspEnabled: {
|
|
@@ -9081,7 +9723,7 @@ export const FileServerLinkedService: coreClient.CompositeMapper = {
|
|
|
9081
9723
|
encryptedCredential: {
|
|
9082
9724
|
serializedName: "typeProperties.encryptedCredential",
|
|
9083
9725
|
type: {
|
|
9084
|
-
name: "
|
|
9726
|
+
name: "String"
|
|
9085
9727
|
}
|
|
9086
9728
|
}
|
|
9087
9729
|
}
|
|
@@ -9158,7 +9800,7 @@ export const AzureFileStorageLinkedService: coreClient.CompositeMapper = {
|
|
|
9158
9800
|
encryptedCredential: {
|
|
9159
9801
|
serializedName: "typeProperties.encryptedCredential",
|
|
9160
9802
|
type: {
|
|
9161
|
-
name: "
|
|
9803
|
+
name: "String"
|
|
9162
9804
|
}
|
|
9163
9805
|
}
|
|
9164
9806
|
}
|
|
@@ -9203,7 +9845,7 @@ export const AmazonS3CompatibleLinkedService: coreClient.CompositeMapper = {
|
|
|
9203
9845
|
encryptedCredential: {
|
|
9204
9846
|
serializedName: "typeProperties.encryptedCredential",
|
|
9205
9847
|
type: {
|
|
9206
|
-
name: "
|
|
9848
|
+
name: "String"
|
|
9207
9849
|
}
|
|
9208
9850
|
}
|
|
9209
9851
|
}
|
|
@@ -9242,7 +9884,7 @@ export const OracleCloudStorageLinkedService: coreClient.CompositeMapper = {
|
|
|
9242
9884
|
encryptedCredential: {
|
|
9243
9885
|
serializedName: "typeProperties.encryptedCredential",
|
|
9244
9886
|
type: {
|
|
9245
|
-
name: "
|
|
9887
|
+
name: "String"
|
|
9246
9888
|
}
|
|
9247
9889
|
}
|
|
9248
9890
|
}
|
|
@@ -9281,7 +9923,7 @@ export const GoogleCloudStorageLinkedService: coreClient.CompositeMapper = {
|
|
|
9281
9923
|
encryptedCredential: {
|
|
9282
9924
|
serializedName: "typeProperties.encryptedCredential",
|
|
9283
9925
|
type: {
|
|
9284
|
-
name: "
|
|
9926
|
+
name: "String"
|
|
9285
9927
|
}
|
|
9286
9928
|
}
|
|
9287
9929
|
}
|
|
@@ -9315,7 +9957,7 @@ export const OracleLinkedService: coreClient.CompositeMapper = {
|
|
|
9315
9957
|
encryptedCredential: {
|
|
9316
9958
|
serializedName: "typeProperties.encryptedCredential",
|
|
9317
9959
|
type: {
|
|
9318
|
-
name: "
|
|
9960
|
+
name: "String"
|
|
9319
9961
|
}
|
|
9320
9962
|
}
|
|
9321
9963
|
}
|
|
@@ -9349,7 +9991,7 @@ export const AmazonRdsForOracleLinkedService: coreClient.CompositeMapper = {
|
|
|
9349
9991
|
encryptedCredential: {
|
|
9350
9992
|
serializedName: "typeProperties.encryptedCredential",
|
|
9351
9993
|
type: {
|
|
9352
|
-
name: "
|
|
9994
|
+
name: "String"
|
|
9353
9995
|
}
|
|
9354
9996
|
}
|
|
9355
9997
|
}
|
|
@@ -9383,7 +10025,7 @@ export const AzureMySqlLinkedService: coreClient.CompositeMapper = {
|
|
|
9383
10025
|
encryptedCredential: {
|
|
9384
10026
|
serializedName: "typeProperties.encryptedCredential",
|
|
9385
10027
|
type: {
|
|
9386
|
-
name: "
|
|
10028
|
+
name: "String"
|
|
9387
10029
|
}
|
|
9388
10030
|
}
|
|
9389
10031
|
}
|
|
@@ -9417,7 +10059,7 @@ export const MySqlLinkedService: coreClient.CompositeMapper = {
|
|
|
9417
10059
|
encryptedCredential: {
|
|
9418
10060
|
serializedName: "typeProperties.encryptedCredential",
|
|
9419
10061
|
type: {
|
|
9420
|
-
name: "
|
|
10062
|
+
name: "String"
|
|
9421
10063
|
}
|
|
9422
10064
|
}
|
|
9423
10065
|
}
|
|
@@ -9451,7 +10093,7 @@ export const PostgreSqlLinkedService: coreClient.CompositeMapper = {
|
|
|
9451
10093
|
encryptedCredential: {
|
|
9452
10094
|
serializedName: "typeProperties.encryptedCredential",
|
|
9453
10095
|
type: {
|
|
9454
|
-
name: "
|
|
10096
|
+
name: "String"
|
|
9455
10097
|
}
|
|
9456
10098
|
}
|
|
9457
10099
|
}
|
|
@@ -9510,7 +10152,7 @@ export const SybaseLinkedService: coreClient.CompositeMapper = {
|
|
|
9510
10152
|
encryptedCredential: {
|
|
9511
10153
|
serializedName: "typeProperties.encryptedCredential",
|
|
9512
10154
|
type: {
|
|
9513
|
-
name: "
|
|
10155
|
+
name: "String"
|
|
9514
10156
|
}
|
|
9515
10157
|
}
|
|
9516
10158
|
}
|
|
@@ -9579,7 +10221,7 @@ export const Db2LinkedService: coreClient.CompositeMapper = {
|
|
|
9579
10221
|
encryptedCredential: {
|
|
9580
10222
|
serializedName: "typeProperties.encryptedCredential",
|
|
9581
10223
|
type: {
|
|
9582
|
-
name: "
|
|
10224
|
+
name: "String"
|
|
9583
10225
|
}
|
|
9584
10226
|
}
|
|
9585
10227
|
}
|
|
@@ -9630,7 +10272,7 @@ export const TeradataLinkedService: coreClient.CompositeMapper = {
|
|
|
9630
10272
|
encryptedCredential: {
|
|
9631
10273
|
serializedName: "typeProperties.encryptedCredential",
|
|
9632
10274
|
type: {
|
|
9633
|
-
name: "
|
|
10275
|
+
name: "String"
|
|
9634
10276
|
}
|
|
9635
10277
|
}
|
|
9636
10278
|
}
|
|
@@ -9689,7 +10331,7 @@ export const AzureMLLinkedService: coreClient.CompositeMapper = {
|
|
|
9689
10331
|
encryptedCredential: {
|
|
9690
10332
|
serializedName: "typeProperties.encryptedCredential",
|
|
9691
10333
|
type: {
|
|
9692
|
-
name: "
|
|
10334
|
+
name: "String"
|
|
9693
10335
|
}
|
|
9694
10336
|
},
|
|
9695
10337
|
authentication: {
|
|
@@ -9733,6 +10375,12 @@ export const AzureMLServiceLinkedService: coreClient.CompositeMapper = {
|
|
|
9733
10375
|
name: "any"
|
|
9734
10376
|
}
|
|
9735
10377
|
},
|
|
10378
|
+
authentication: {
|
|
10379
|
+
serializedName: "typeProperties.authentication",
|
|
10380
|
+
type: {
|
|
10381
|
+
name: "any"
|
|
10382
|
+
}
|
|
10383
|
+
},
|
|
9736
10384
|
servicePrincipalId: {
|
|
9737
10385
|
serializedName: "typeProperties.servicePrincipalId",
|
|
9738
10386
|
type: {
|
|
@@ -9755,7 +10403,7 @@ export const AzureMLServiceLinkedService: coreClient.CompositeMapper = {
|
|
|
9755
10403
|
encryptedCredential: {
|
|
9756
10404
|
serializedName: "typeProperties.encryptedCredential",
|
|
9757
10405
|
type: {
|
|
9758
|
-
name: "
|
|
10406
|
+
name: "String"
|
|
9759
10407
|
}
|
|
9760
10408
|
}
|
|
9761
10409
|
}
|
|
@@ -9808,7 +10456,7 @@ export const OdbcLinkedService: coreClient.CompositeMapper = {
|
|
|
9808
10456
|
encryptedCredential: {
|
|
9809
10457
|
serializedName: "typeProperties.encryptedCredential",
|
|
9810
10458
|
type: {
|
|
9811
|
-
name: "
|
|
10459
|
+
name: "String"
|
|
9812
10460
|
}
|
|
9813
10461
|
}
|
|
9814
10462
|
}
|
|
@@ -9861,7 +10509,7 @@ export const InformixLinkedService: coreClient.CompositeMapper = {
|
|
|
9861
10509
|
encryptedCredential: {
|
|
9862
10510
|
serializedName: "typeProperties.encryptedCredential",
|
|
9863
10511
|
type: {
|
|
9864
|
-
name: "
|
|
10512
|
+
name: "String"
|
|
9865
10513
|
}
|
|
9866
10514
|
}
|
|
9867
10515
|
}
|
|
@@ -9914,7 +10562,7 @@ export const MicrosoftAccessLinkedService: coreClient.CompositeMapper = {
|
|
|
9914
10562
|
encryptedCredential: {
|
|
9915
10563
|
serializedName: "typeProperties.encryptedCredential",
|
|
9916
10564
|
type: {
|
|
9917
|
-
name: "
|
|
10565
|
+
name: "String"
|
|
9918
10566
|
}
|
|
9919
10567
|
}
|
|
9920
10568
|
}
|
|
@@ -9947,7 +10595,7 @@ export const HdfsLinkedService: coreClient.CompositeMapper = {
|
|
|
9947
10595
|
encryptedCredential: {
|
|
9948
10596
|
serializedName: "typeProperties.encryptedCredential",
|
|
9949
10597
|
type: {
|
|
9950
|
-
name: "
|
|
10598
|
+
name: "String"
|
|
9951
10599
|
}
|
|
9952
10600
|
},
|
|
9953
10601
|
userName: {
|
|
@@ -10063,7 +10711,7 @@ export const ODataLinkedService: coreClient.CompositeMapper = {
|
|
|
10063
10711
|
encryptedCredential: {
|
|
10064
10712
|
serializedName: "typeProperties.encryptedCredential",
|
|
10065
10713
|
type: {
|
|
10066
|
-
name: "
|
|
10714
|
+
name: "String"
|
|
10067
10715
|
}
|
|
10068
10716
|
}
|
|
10069
10717
|
}
|
|
@@ -10136,7 +10784,7 @@ export const CassandraLinkedService: coreClient.CompositeMapper = {
|
|
|
10136
10784
|
encryptedCredential: {
|
|
10137
10785
|
serializedName: "typeProperties.encryptedCredential",
|
|
10138
10786
|
type: {
|
|
10139
|
-
name: "
|
|
10787
|
+
name: "String"
|
|
10140
10788
|
}
|
|
10141
10789
|
}
|
|
10142
10790
|
}
|
|
@@ -10213,7 +10861,7 @@ export const MongoDbLinkedService: coreClient.CompositeMapper = {
|
|
|
10213
10861
|
encryptedCredential: {
|
|
10214
10862
|
serializedName: "typeProperties.encryptedCredential",
|
|
10215
10863
|
type: {
|
|
10216
|
-
name: "
|
|
10864
|
+
name: "String"
|
|
10217
10865
|
}
|
|
10218
10866
|
}
|
|
10219
10867
|
}
|
|
@@ -10243,6 +10891,12 @@ export const MongoDbAtlasLinkedService: coreClient.CompositeMapper = {
|
|
|
10243
10891
|
type: {
|
|
10244
10892
|
name: "any"
|
|
10245
10893
|
}
|
|
10894
|
+
},
|
|
10895
|
+
driverVersion: {
|
|
10896
|
+
serializedName: "typeProperties.driverVersion",
|
|
10897
|
+
type: {
|
|
10898
|
+
name: "any"
|
|
10899
|
+
}
|
|
10246
10900
|
}
|
|
10247
10901
|
}
|
|
10248
10902
|
}
|
|
@@ -10373,7 +11027,7 @@ export const AzureDataLakeStoreLinkedService: coreClient.CompositeMapper = {
|
|
|
10373
11027
|
encryptedCredential: {
|
|
10374
11028
|
serializedName: "typeProperties.encryptedCredential",
|
|
10375
11029
|
type: {
|
|
10376
|
-
name: "
|
|
11030
|
+
name: "String"
|
|
10377
11031
|
}
|
|
10378
11032
|
},
|
|
10379
11033
|
credential: {
|
|
@@ -10437,7 +11091,7 @@ export const AzureBlobFSLinkedService: coreClient.CompositeMapper = {
|
|
|
10437
11091
|
encryptedCredential: {
|
|
10438
11092
|
serializedName: "typeProperties.encryptedCredential",
|
|
10439
11093
|
type: {
|
|
10440
|
-
name: "
|
|
11094
|
+
name: "String"
|
|
10441
11095
|
}
|
|
10442
11096
|
},
|
|
10443
11097
|
credential: {
|
|
@@ -10518,7 +11172,7 @@ export const Office365LinkedService: coreClient.CompositeMapper = {
|
|
|
10518
11172
|
encryptedCredential: {
|
|
10519
11173
|
serializedName: "typeProperties.encryptedCredential",
|
|
10520
11174
|
type: {
|
|
10521
|
-
name: "
|
|
11175
|
+
name: "String"
|
|
10522
11176
|
}
|
|
10523
11177
|
}
|
|
10524
11178
|
}
|
|
@@ -10570,7 +11224,7 @@ export const SalesforceLinkedService: coreClient.CompositeMapper = {
|
|
|
10570
11224
|
encryptedCredential: {
|
|
10571
11225
|
serializedName: "typeProperties.encryptedCredential",
|
|
10572
11226
|
type: {
|
|
10573
|
-
name: "
|
|
11227
|
+
name: "String"
|
|
10574
11228
|
}
|
|
10575
11229
|
}
|
|
10576
11230
|
}
|
|
@@ -10628,7 +11282,7 @@ export const SalesforceServiceCloudLinkedService: coreClient.CompositeMapper = {
|
|
|
10628
11282
|
encryptedCredential: {
|
|
10629
11283
|
serializedName: "typeProperties.encryptedCredential",
|
|
10630
11284
|
type: {
|
|
10631
|
-
name: "
|
|
11285
|
+
name: "String"
|
|
10632
11286
|
}
|
|
10633
11287
|
}
|
|
10634
11288
|
}
|
|
@@ -10668,7 +11322,7 @@ export const SapCloudForCustomerLinkedService: coreClient.CompositeMapper = {
|
|
|
10668
11322
|
encryptedCredential: {
|
|
10669
11323
|
serializedName: "typeProperties.encryptedCredential",
|
|
10670
11324
|
type: {
|
|
10671
|
-
name: "
|
|
11325
|
+
name: "String"
|
|
10672
11326
|
}
|
|
10673
11327
|
}
|
|
10674
11328
|
}
|
|
@@ -10689,13 +11343,13 @@ export const SapEccLinkedService: coreClient.CompositeMapper = {
|
|
|
10689
11343
|
serializedName: "typeProperties.url",
|
|
10690
11344
|
required: true,
|
|
10691
11345
|
type: {
|
|
10692
|
-
name: "
|
|
11346
|
+
name: "any"
|
|
10693
11347
|
}
|
|
10694
11348
|
},
|
|
10695
11349
|
username: {
|
|
10696
11350
|
serializedName: "typeProperties.username",
|
|
10697
11351
|
type: {
|
|
10698
|
-
name: "
|
|
11352
|
+
name: "any"
|
|
10699
11353
|
}
|
|
10700
11354
|
},
|
|
10701
11355
|
password: {
|
|
@@ -10789,7 +11443,7 @@ export const SapOpenHubLinkedService: coreClient.CompositeMapper = {
|
|
|
10789
11443
|
encryptedCredential: {
|
|
10790
11444
|
serializedName: "typeProperties.encryptedCredential",
|
|
10791
11445
|
type: {
|
|
10792
|
-
name: "
|
|
11446
|
+
name: "String"
|
|
10793
11447
|
}
|
|
10794
11448
|
}
|
|
10795
11449
|
}
|
|
@@ -10912,7 +11566,7 @@ export const SapOdpLinkedService: coreClient.CompositeMapper = {
|
|
|
10912
11566
|
encryptedCredential: {
|
|
10913
11567
|
serializedName: "typeProperties.encryptedCredential",
|
|
10914
11568
|
type: {
|
|
10915
|
-
name: "
|
|
11569
|
+
name: "String"
|
|
10916
11570
|
}
|
|
10917
11571
|
}
|
|
10918
11572
|
}
|
|
@@ -11002,7 +11656,7 @@ export const RestServiceLinkedService: coreClient.CompositeMapper = {
|
|
|
11002
11656
|
encryptedCredential: {
|
|
11003
11657
|
serializedName: "typeProperties.encryptedCredential",
|
|
11004
11658
|
type: {
|
|
11005
|
-
name: "
|
|
11659
|
+
name: "String"
|
|
11006
11660
|
}
|
|
11007
11661
|
},
|
|
11008
11662
|
credential: {
|
|
@@ -11094,7 +11748,7 @@ export const TeamDeskLinkedService: coreClient.CompositeMapper = {
|
|
|
11094
11748
|
encryptedCredential: {
|
|
11095
11749
|
serializedName: "typeProperties.encryptedCredential",
|
|
11096
11750
|
type: {
|
|
11097
|
-
name: "
|
|
11751
|
+
name: "String"
|
|
11098
11752
|
}
|
|
11099
11753
|
}
|
|
11100
11754
|
}
|
|
@@ -11128,7 +11782,7 @@ export const QuickbaseLinkedService: coreClient.CompositeMapper = {
|
|
|
11128
11782
|
encryptedCredential: {
|
|
11129
11783
|
serializedName: "typeProperties.encryptedCredential",
|
|
11130
11784
|
type: {
|
|
11131
|
-
name: "
|
|
11785
|
+
name: "String"
|
|
11132
11786
|
}
|
|
11133
11787
|
}
|
|
11134
11788
|
}
|
|
@@ -11155,7 +11809,7 @@ export const SmartsheetLinkedService: coreClient.CompositeMapper = {
|
|
|
11155
11809
|
encryptedCredential: {
|
|
11156
11810
|
serializedName: "typeProperties.encryptedCredential",
|
|
11157
11811
|
type: {
|
|
11158
|
-
name: "
|
|
11812
|
+
name: "String"
|
|
11159
11813
|
}
|
|
11160
11814
|
}
|
|
11161
11815
|
}
|
|
@@ -11209,7 +11863,7 @@ export const ZendeskLinkedService: coreClient.CompositeMapper = {
|
|
|
11209
11863
|
encryptedCredential: {
|
|
11210
11864
|
serializedName: "typeProperties.encryptedCredential",
|
|
11211
11865
|
type: {
|
|
11212
|
-
name: "
|
|
11866
|
+
name: "String"
|
|
11213
11867
|
}
|
|
11214
11868
|
}
|
|
11215
11869
|
}
|
|
@@ -11236,7 +11890,7 @@ export const DataworldLinkedService: coreClient.CompositeMapper = {
|
|
|
11236
11890
|
encryptedCredential: {
|
|
11237
11891
|
serializedName: "typeProperties.encryptedCredential",
|
|
11238
11892
|
type: {
|
|
11239
|
-
name: "
|
|
11893
|
+
name: "String"
|
|
11240
11894
|
}
|
|
11241
11895
|
}
|
|
11242
11896
|
}
|
|
@@ -11298,7 +11952,7 @@ export const AsanaLinkedService: coreClient.CompositeMapper = {
|
|
|
11298
11952
|
encryptedCredential: {
|
|
11299
11953
|
serializedName: "typeProperties.encryptedCredential",
|
|
11300
11954
|
type: {
|
|
11301
|
-
name: "
|
|
11955
|
+
name: "String"
|
|
11302
11956
|
}
|
|
11303
11957
|
}
|
|
11304
11958
|
}
|
|
@@ -11353,7 +12007,7 @@ export const GoogleSheetsLinkedService: coreClient.CompositeMapper = {
|
|
|
11353
12007
|
encryptedCredential: {
|
|
11354
12008
|
serializedName: "typeProperties.encryptedCredential",
|
|
11355
12009
|
type: {
|
|
11356
|
-
name: "
|
|
12010
|
+
name: "String"
|
|
11357
12011
|
}
|
|
11358
12012
|
}
|
|
11359
12013
|
}
|
|
@@ -11405,7 +12059,7 @@ export const AmazonS3LinkedService: coreClient.CompositeMapper = {
|
|
|
11405
12059
|
encryptedCredential: {
|
|
11406
12060
|
serializedName: "typeProperties.encryptedCredential",
|
|
11407
12061
|
type: {
|
|
11408
|
-
name: "
|
|
12062
|
+
name: "String"
|
|
11409
12063
|
}
|
|
11410
12064
|
}
|
|
11411
12065
|
}
|
|
@@ -11458,7 +12112,7 @@ export const AmazonRedshiftLinkedService: coreClient.CompositeMapper = {
|
|
|
11458
12112
|
encryptedCredential: {
|
|
11459
12113
|
serializedName: "typeProperties.encryptedCredential",
|
|
11460
12114
|
type: {
|
|
11461
|
-
name: "
|
|
12115
|
+
name: "String"
|
|
11462
12116
|
}
|
|
11463
12117
|
}
|
|
11464
12118
|
}
|
|
@@ -11513,7 +12167,7 @@ export const AzureSearchLinkedService: coreClient.CompositeMapper = {
|
|
|
11513
12167
|
encryptedCredential: {
|
|
11514
12168
|
serializedName: "typeProperties.encryptedCredential",
|
|
11515
12169
|
type: {
|
|
11516
|
-
name: "
|
|
12170
|
+
name: "String"
|
|
11517
12171
|
}
|
|
11518
12172
|
}
|
|
11519
12173
|
}
|
|
@@ -11577,7 +12231,7 @@ export const HttpLinkedService: coreClient.CompositeMapper = {
|
|
|
11577
12231
|
encryptedCredential: {
|
|
11578
12232
|
serializedName: "typeProperties.encryptedCredential",
|
|
11579
12233
|
type: {
|
|
11580
|
-
name: "
|
|
12234
|
+
name: "String"
|
|
11581
12235
|
}
|
|
11582
12236
|
},
|
|
11583
12237
|
enableServerCertificateValidation: {
|
|
@@ -11635,7 +12289,7 @@ export const FtpServerLinkedService: coreClient.CompositeMapper = {
|
|
|
11635
12289
|
encryptedCredential: {
|
|
11636
12290
|
serializedName: "typeProperties.encryptedCredential",
|
|
11637
12291
|
type: {
|
|
11638
|
-
name: "
|
|
12292
|
+
name: "String"
|
|
11639
12293
|
}
|
|
11640
12294
|
},
|
|
11641
12295
|
enableSsl: {
|
|
@@ -11699,7 +12353,7 @@ export const SftpServerLinkedService: coreClient.CompositeMapper = {
|
|
|
11699
12353
|
encryptedCredential: {
|
|
11700
12354
|
serializedName: "typeProperties.encryptedCredential",
|
|
11701
12355
|
type: {
|
|
11702
|
-
name: "
|
|
12356
|
+
name: "String"
|
|
11703
12357
|
}
|
|
11704
12358
|
},
|
|
11705
12359
|
privateKeyPath: {
|
|
@@ -11785,7 +12439,7 @@ export const SapBWLinkedService: coreClient.CompositeMapper = {
|
|
|
11785
12439
|
encryptedCredential: {
|
|
11786
12440
|
serializedName: "typeProperties.encryptedCredential",
|
|
11787
12441
|
type: {
|
|
11788
|
-
name: "
|
|
12442
|
+
name: "String"
|
|
11789
12443
|
}
|
|
11790
12444
|
}
|
|
11791
12445
|
}
|
|
@@ -11836,7 +12490,7 @@ export const SapHanaLinkedService: coreClient.CompositeMapper = {
|
|
|
11836
12490
|
encryptedCredential: {
|
|
11837
12491
|
serializedName: "typeProperties.encryptedCredential",
|
|
11838
12492
|
type: {
|
|
11839
|
-
name: "
|
|
12493
|
+
name: "String"
|
|
11840
12494
|
}
|
|
11841
12495
|
}
|
|
11842
12496
|
}
|
|
@@ -11916,7 +12570,7 @@ export const AmazonMWSLinkedService: coreClient.CompositeMapper = {
|
|
|
11916
12570
|
encryptedCredential: {
|
|
11917
12571
|
serializedName: "typeProperties.encryptedCredential",
|
|
11918
12572
|
type: {
|
|
11919
|
-
name: "
|
|
12573
|
+
name: "String"
|
|
11920
12574
|
}
|
|
11921
12575
|
}
|
|
11922
12576
|
}
|
|
@@ -11949,7 +12603,7 @@ export const AzurePostgreSqlLinkedService: coreClient.CompositeMapper = {
|
|
|
11949
12603
|
encryptedCredential: {
|
|
11950
12604
|
serializedName: "typeProperties.encryptedCredential",
|
|
11951
12605
|
type: {
|
|
11952
|
-
name: "
|
|
12606
|
+
name: "String"
|
|
11953
12607
|
}
|
|
11954
12608
|
}
|
|
11955
12609
|
}
|
|
@@ -12014,7 +12668,7 @@ export const ConcurLinkedService: coreClient.CompositeMapper = {
|
|
|
12014
12668
|
encryptedCredential: {
|
|
12015
12669
|
serializedName: "typeProperties.encryptedCredential",
|
|
12016
12670
|
type: {
|
|
12017
|
-
name: "
|
|
12671
|
+
name: "String"
|
|
12018
12672
|
}
|
|
12019
12673
|
}
|
|
12020
12674
|
}
|
|
@@ -12047,7 +12701,7 @@ export const CouchbaseLinkedService: coreClient.CompositeMapper = {
|
|
|
12047
12701
|
encryptedCredential: {
|
|
12048
12702
|
serializedName: "typeProperties.encryptedCredential",
|
|
12049
12703
|
type: {
|
|
12050
|
-
name: "
|
|
12704
|
+
name: "String"
|
|
12051
12705
|
}
|
|
12052
12706
|
}
|
|
12053
12707
|
}
|
|
@@ -12080,7 +12734,7 @@ export const DrillLinkedService: coreClient.CompositeMapper = {
|
|
|
12080
12734
|
encryptedCredential: {
|
|
12081
12735
|
serializedName: "typeProperties.encryptedCredential",
|
|
12082
12736
|
type: {
|
|
12083
|
-
name: "
|
|
12737
|
+
name: "String"
|
|
12084
12738
|
}
|
|
12085
12739
|
}
|
|
12086
12740
|
}
|
|
@@ -12139,7 +12793,7 @@ export const EloquaLinkedService: coreClient.CompositeMapper = {
|
|
|
12139
12793
|
encryptedCredential: {
|
|
12140
12794
|
serializedName: "typeProperties.encryptedCredential",
|
|
12141
12795
|
type: {
|
|
12142
|
-
name: "
|
|
12796
|
+
name: "String"
|
|
12143
12797
|
}
|
|
12144
12798
|
}
|
|
12145
12799
|
}
|
|
@@ -12229,7 +12883,7 @@ export const GoogleBigQueryLinkedService: coreClient.CompositeMapper = {
|
|
|
12229
12883
|
encryptedCredential: {
|
|
12230
12884
|
serializedName: "typeProperties.encryptedCredential",
|
|
12231
12885
|
type: {
|
|
12232
|
-
name: "
|
|
12886
|
+
name: "String"
|
|
12233
12887
|
}
|
|
12234
12888
|
}
|
|
12235
12889
|
}
|
|
@@ -12262,7 +12916,7 @@ export const GreenplumLinkedService: coreClient.CompositeMapper = {
|
|
|
12262
12916
|
encryptedCredential: {
|
|
12263
12917
|
serializedName: "typeProperties.encryptedCredential",
|
|
12264
12918
|
type: {
|
|
12265
|
-
name: "
|
|
12919
|
+
name: "String"
|
|
12266
12920
|
}
|
|
12267
12921
|
}
|
|
12268
12922
|
}
|
|
@@ -12345,7 +12999,7 @@ export const HBaseLinkedService: coreClient.CompositeMapper = {
|
|
|
12345
12999
|
encryptedCredential: {
|
|
12346
13000
|
serializedName: "typeProperties.encryptedCredential",
|
|
12347
13001
|
type: {
|
|
12348
|
-
name: "
|
|
13002
|
+
name: "String"
|
|
12349
13003
|
}
|
|
12350
13004
|
}
|
|
12351
13005
|
}
|
|
@@ -12464,7 +13118,7 @@ export const HiveLinkedService: coreClient.CompositeMapper = {
|
|
|
12464
13118
|
encryptedCredential: {
|
|
12465
13119
|
serializedName: "typeProperties.encryptedCredential",
|
|
12466
13120
|
type: {
|
|
12467
|
-
name: "
|
|
13121
|
+
name: "String"
|
|
12468
13122
|
}
|
|
12469
13123
|
}
|
|
12470
13124
|
}
|
|
@@ -12530,7 +13184,7 @@ export const HubspotLinkedService: coreClient.CompositeMapper = {
|
|
|
12530
13184
|
encryptedCredential: {
|
|
12531
13185
|
serializedName: "typeProperties.encryptedCredential",
|
|
12532
13186
|
type: {
|
|
12533
|
-
name: "
|
|
13187
|
+
name: "String"
|
|
12534
13188
|
}
|
|
12535
13189
|
}
|
|
12536
13190
|
}
|
|
@@ -12613,7 +13267,7 @@ export const ImpalaLinkedService: coreClient.CompositeMapper = {
|
|
|
12613
13267
|
encryptedCredential: {
|
|
12614
13268
|
serializedName: "typeProperties.encryptedCredential",
|
|
12615
13269
|
type: {
|
|
12616
|
-
name: "
|
|
13270
|
+
name: "String"
|
|
12617
13271
|
}
|
|
12618
13272
|
}
|
|
12619
13273
|
}
|
|
@@ -12678,7 +13332,7 @@ export const JiraLinkedService: coreClient.CompositeMapper = {
|
|
|
12678
13332
|
encryptedCredential: {
|
|
12679
13333
|
serializedName: "typeProperties.encryptedCredential",
|
|
12680
13334
|
type: {
|
|
12681
|
-
name: "
|
|
13335
|
+
name: "String"
|
|
12682
13336
|
}
|
|
12683
13337
|
}
|
|
12684
13338
|
}
|
|
@@ -12730,7 +13384,7 @@ export const MagentoLinkedService: coreClient.CompositeMapper = {
|
|
|
12730
13384
|
encryptedCredential: {
|
|
12731
13385
|
serializedName: "typeProperties.encryptedCredential",
|
|
12732
13386
|
type: {
|
|
12733
|
-
name: "
|
|
13387
|
+
name: "String"
|
|
12734
13388
|
}
|
|
12735
13389
|
}
|
|
12736
13390
|
}
|
|
@@ -12763,7 +13417,7 @@ export const MariaDBLinkedService: coreClient.CompositeMapper = {
|
|
|
12763
13417
|
encryptedCredential: {
|
|
12764
13418
|
serializedName: "typeProperties.encryptedCredential",
|
|
12765
13419
|
type: {
|
|
12766
|
-
name: "
|
|
13420
|
+
name: "String"
|
|
12767
13421
|
}
|
|
12768
13422
|
}
|
|
12769
13423
|
}
|
|
@@ -12796,7 +13450,7 @@ export const AzureMariaDBLinkedService: coreClient.CompositeMapper = {
|
|
|
12796
13450
|
encryptedCredential: {
|
|
12797
13451
|
serializedName: "typeProperties.encryptedCredential",
|
|
12798
13452
|
type: {
|
|
12799
|
-
name: "
|
|
13453
|
+
name: "String"
|
|
12800
13454
|
}
|
|
12801
13455
|
}
|
|
12802
13456
|
}
|
|
@@ -12855,7 +13509,7 @@ export const MarketoLinkedService: coreClient.CompositeMapper = {
|
|
|
12855
13509
|
encryptedCredential: {
|
|
12856
13510
|
serializedName: "typeProperties.encryptedCredential",
|
|
12857
13511
|
type: {
|
|
12858
|
-
name: "
|
|
13512
|
+
name: "String"
|
|
12859
13513
|
}
|
|
12860
13514
|
}
|
|
12861
13515
|
}
|
|
@@ -12914,7 +13568,7 @@ export const PaypalLinkedService: coreClient.CompositeMapper = {
|
|
|
12914
13568
|
encryptedCredential: {
|
|
12915
13569
|
serializedName: "typeProperties.encryptedCredential",
|
|
12916
13570
|
type: {
|
|
12917
|
-
name: "
|
|
13571
|
+
name: "String"
|
|
12918
13572
|
}
|
|
12919
13573
|
}
|
|
12920
13574
|
}
|
|
@@ -13003,7 +13657,7 @@ export const PhoenixLinkedService: coreClient.CompositeMapper = {
|
|
|
13003
13657
|
encryptedCredential: {
|
|
13004
13658
|
serializedName: "typeProperties.encryptedCredential",
|
|
13005
13659
|
type: {
|
|
13006
|
-
name: "
|
|
13660
|
+
name: "String"
|
|
13007
13661
|
}
|
|
13008
13662
|
}
|
|
13009
13663
|
}
|
|
@@ -13106,7 +13760,7 @@ export const PrestoLinkedService: coreClient.CompositeMapper = {
|
|
|
13106
13760
|
encryptedCredential: {
|
|
13107
13761
|
serializedName: "typeProperties.encryptedCredential",
|
|
13108
13762
|
type: {
|
|
13109
|
-
name: "
|
|
13763
|
+
name: "String"
|
|
13110
13764
|
}
|
|
13111
13765
|
}
|
|
13112
13766
|
}
|
|
@@ -13177,7 +13831,7 @@ export const QuickBooksLinkedService: coreClient.CompositeMapper = {
|
|
|
13177
13831
|
encryptedCredential: {
|
|
13178
13832
|
serializedName: "typeProperties.encryptedCredential",
|
|
13179
13833
|
type: {
|
|
13180
|
-
name: "
|
|
13834
|
+
name: "String"
|
|
13181
13835
|
}
|
|
13182
13836
|
}
|
|
13183
13837
|
}
|
|
@@ -13255,7 +13909,7 @@ export const ServiceNowLinkedService: coreClient.CompositeMapper = {
|
|
|
13255
13909
|
encryptedCredential: {
|
|
13256
13910
|
serializedName: "typeProperties.encryptedCredential",
|
|
13257
13911
|
type: {
|
|
13258
|
-
name: "
|
|
13912
|
+
name: "String"
|
|
13259
13913
|
}
|
|
13260
13914
|
}
|
|
13261
13915
|
}
|
|
@@ -13307,7 +13961,7 @@ export const ShopifyLinkedService: coreClient.CompositeMapper = {
|
|
|
13307
13961
|
encryptedCredential: {
|
|
13308
13962
|
serializedName: "typeProperties.encryptedCredential",
|
|
13309
13963
|
type: {
|
|
13310
|
-
name: "
|
|
13964
|
+
name: "String"
|
|
13311
13965
|
}
|
|
13312
13966
|
}
|
|
13313
13967
|
}
|
|
@@ -13409,7 +14063,7 @@ export const SparkLinkedService: coreClient.CompositeMapper = {
|
|
|
13409
14063
|
encryptedCredential: {
|
|
13410
14064
|
serializedName: "typeProperties.encryptedCredential",
|
|
13411
14065
|
type: {
|
|
13412
|
-
name: "
|
|
14066
|
+
name: "String"
|
|
13413
14067
|
}
|
|
13414
14068
|
}
|
|
13415
14069
|
}
|
|
@@ -13478,7 +14132,7 @@ export const SquareLinkedService: coreClient.CompositeMapper = {
|
|
|
13478
14132
|
encryptedCredential: {
|
|
13479
14133
|
serializedName: "typeProperties.encryptedCredential",
|
|
13480
14134
|
type: {
|
|
13481
|
-
name: "
|
|
14135
|
+
name: "String"
|
|
13482
14136
|
}
|
|
13483
14137
|
}
|
|
13484
14138
|
}
|
|
@@ -13542,7 +14196,7 @@ export const XeroLinkedService: coreClient.CompositeMapper = {
|
|
|
13542
14196
|
encryptedCredential: {
|
|
13543
14197
|
serializedName: "typeProperties.encryptedCredential",
|
|
13544
14198
|
type: {
|
|
13545
|
-
name: "
|
|
14199
|
+
name: "String"
|
|
13546
14200
|
}
|
|
13547
14201
|
}
|
|
13548
14202
|
}
|
|
@@ -13599,7 +14253,7 @@ export const ZohoLinkedService: coreClient.CompositeMapper = {
|
|
|
13599
14253
|
encryptedCredential: {
|
|
13600
14254
|
serializedName: "typeProperties.encryptedCredential",
|
|
13601
14255
|
type: {
|
|
13602
|
-
name: "
|
|
14256
|
+
name: "String"
|
|
13603
14257
|
}
|
|
13604
14258
|
}
|
|
13605
14259
|
}
|
|
@@ -13632,7 +14286,7 @@ export const VerticaLinkedService: coreClient.CompositeMapper = {
|
|
|
13632
14286
|
encryptedCredential: {
|
|
13633
14287
|
serializedName: "typeProperties.encryptedCredential",
|
|
13634
14288
|
type: {
|
|
13635
|
-
name: "
|
|
14289
|
+
name: "String"
|
|
13636
14290
|
}
|
|
13637
14291
|
}
|
|
13638
14292
|
}
|
|
@@ -13665,7 +14319,7 @@ export const NetezzaLinkedService: coreClient.CompositeMapper = {
|
|
|
13665
14319
|
encryptedCredential: {
|
|
13666
14320
|
serializedName: "typeProperties.encryptedCredential",
|
|
13667
14321
|
type: {
|
|
13668
|
-
name: "
|
|
14322
|
+
name: "String"
|
|
13669
14323
|
}
|
|
13670
14324
|
}
|
|
13671
14325
|
}
|
|
@@ -13722,7 +14376,7 @@ export const SalesforceMarketingCloudLinkedService: coreClient.CompositeMapper =
|
|
|
13722
14376
|
encryptedCredential: {
|
|
13723
14377
|
serializedName: "typeProperties.encryptedCredential",
|
|
13724
14378
|
type: {
|
|
13725
|
-
name: "
|
|
14379
|
+
name: "String"
|
|
13726
14380
|
}
|
|
13727
14381
|
}
|
|
13728
14382
|
}
|
|
@@ -13915,7 +14569,7 @@ export const HDInsightOnDemandLinkedService: coreClient.CompositeMapper = {
|
|
|
13915
14569
|
encryptedCredential: {
|
|
13916
14570
|
serializedName: "typeProperties.encryptedCredential",
|
|
13917
14571
|
type: {
|
|
13918
|
-
name: "
|
|
14572
|
+
name: "String"
|
|
13919
14573
|
}
|
|
13920
14574
|
},
|
|
13921
14575
|
headNodeSize: {
|
|
@@ -14029,7 +14683,7 @@ export const AzureDataLakeAnalyticsLinkedService: coreClient.CompositeMapper = {
|
|
|
14029
14683
|
encryptedCredential: {
|
|
14030
14684
|
serializedName: "typeProperties.encryptedCredential",
|
|
14031
14685
|
type: {
|
|
14032
|
-
name: "
|
|
14686
|
+
name: "String"
|
|
14033
14687
|
}
|
|
14034
14688
|
}
|
|
14035
14689
|
}
|
|
@@ -14150,7 +14804,7 @@ export const AzureDatabricksLinkedService: coreClient.CompositeMapper = {
|
|
|
14150
14804
|
encryptedCredential: {
|
|
14151
14805
|
serializedName: "typeProperties.encryptedCredential",
|
|
14152
14806
|
type: {
|
|
14153
|
-
name: "
|
|
14807
|
+
name: "String"
|
|
14154
14808
|
}
|
|
14155
14809
|
},
|
|
14156
14810
|
policyId: {
|
|
@@ -14203,7 +14857,7 @@ export const AzureDatabricksDeltaLakeLinkedService: coreClient.CompositeMapper =
|
|
|
14203
14857
|
encryptedCredential: {
|
|
14204
14858
|
serializedName: "typeProperties.encryptedCredential",
|
|
14205
14859
|
type: {
|
|
14206
|
-
name: "
|
|
14860
|
+
name: "String"
|
|
14207
14861
|
}
|
|
14208
14862
|
},
|
|
14209
14863
|
credential: {
|
|
@@ -14275,7 +14929,7 @@ export const ResponsysLinkedService: coreClient.CompositeMapper = {
|
|
|
14275
14929
|
encryptedCredential: {
|
|
14276
14930
|
serializedName: "typeProperties.encryptedCredential",
|
|
14277
14931
|
type: {
|
|
14278
|
-
name: "
|
|
14932
|
+
name: "String"
|
|
14279
14933
|
}
|
|
14280
14934
|
}
|
|
14281
14935
|
}
|
|
@@ -14330,7 +14984,7 @@ export const DynamicsAXLinkedService: coreClient.CompositeMapper = {
|
|
|
14330
14984
|
encryptedCredential: {
|
|
14331
14985
|
serializedName: "typeProperties.encryptedCredential",
|
|
14332
14986
|
type: {
|
|
14333
|
-
name: "
|
|
14987
|
+
name: "String"
|
|
14334
14988
|
}
|
|
14335
14989
|
}
|
|
14336
14990
|
}
|
|
@@ -14389,7 +15043,7 @@ export const OracleServiceCloudLinkedService: coreClient.CompositeMapper = {
|
|
|
14389
15043
|
encryptedCredential: {
|
|
14390
15044
|
serializedName: "typeProperties.encryptedCredential",
|
|
14391
15045
|
type: {
|
|
14392
|
-
name: "
|
|
15046
|
+
name: "String"
|
|
14393
15047
|
}
|
|
14394
15048
|
}
|
|
14395
15049
|
}
|
|
@@ -14475,10 +15129,35 @@ export const GoogleAdWordsLinkedService: coreClient.CompositeMapper = {
|
|
|
14475
15129
|
name: "any"
|
|
14476
15130
|
}
|
|
14477
15131
|
},
|
|
15132
|
+
privateKey: {
|
|
15133
|
+
serializedName: "typeProperties.privateKey",
|
|
15134
|
+
type: {
|
|
15135
|
+
name: "Composite",
|
|
15136
|
+
className: "SecretBase"
|
|
15137
|
+
}
|
|
15138
|
+
},
|
|
15139
|
+
loginCustomerID: {
|
|
15140
|
+
serializedName: "typeProperties.loginCustomerID",
|
|
15141
|
+
type: {
|
|
15142
|
+
name: "any"
|
|
15143
|
+
}
|
|
15144
|
+
},
|
|
15145
|
+
googleAdsApiVersion: {
|
|
15146
|
+
serializedName: "typeProperties.googleAdsApiVersion",
|
|
15147
|
+
type: {
|
|
15148
|
+
name: "any"
|
|
15149
|
+
}
|
|
15150
|
+
},
|
|
15151
|
+
supportLegacyDataTypes: {
|
|
15152
|
+
serializedName: "typeProperties.supportLegacyDataTypes",
|
|
15153
|
+
type: {
|
|
15154
|
+
name: "any"
|
|
15155
|
+
}
|
|
15156
|
+
},
|
|
14478
15157
|
encryptedCredential: {
|
|
14479
15158
|
serializedName: "typeProperties.encryptedCredential",
|
|
14480
15159
|
type: {
|
|
14481
|
-
name: "
|
|
15160
|
+
name: "String"
|
|
14482
15161
|
}
|
|
14483
15162
|
}
|
|
14484
15163
|
}
|
|
@@ -14589,7 +15268,7 @@ export const SapTableLinkedService: coreClient.CompositeMapper = {
|
|
|
14589
15268
|
encryptedCredential: {
|
|
14590
15269
|
serializedName: "typeProperties.encryptedCredential",
|
|
14591
15270
|
type: {
|
|
14592
|
-
name: "
|
|
15271
|
+
name: "String"
|
|
14593
15272
|
}
|
|
14594
15273
|
}
|
|
14595
15274
|
}
|
|
@@ -14677,7 +15356,7 @@ export const AzureFunctionLinkedService: coreClient.CompositeMapper = {
|
|
|
14677
15356
|
encryptedCredential: {
|
|
14678
15357
|
serializedName: "typeProperties.encryptedCredential",
|
|
14679
15358
|
type: {
|
|
14680
|
-
name: "
|
|
15359
|
+
name: "String"
|
|
14681
15360
|
}
|
|
14682
15361
|
},
|
|
14683
15362
|
credential: {
|
|
@@ -14730,7 +15409,7 @@ export const SnowflakeLinkedService: coreClient.CompositeMapper = {
|
|
|
14730
15409
|
encryptedCredential: {
|
|
14731
15410
|
serializedName: "typeProperties.encryptedCredential",
|
|
14732
15411
|
type: {
|
|
14733
|
-
name: "
|
|
15412
|
+
name: "String"
|
|
14734
15413
|
}
|
|
14735
15414
|
}
|
|
14736
15415
|
}
|
|
@@ -14778,7 +15457,7 @@ export const SharePointOnlineListLinkedService: coreClient.CompositeMapper = {
|
|
|
14778
15457
|
encryptedCredential: {
|
|
14779
15458
|
serializedName: "typeProperties.encryptedCredential",
|
|
14780
15459
|
type: {
|
|
14781
|
-
name: "
|
|
15460
|
+
name: "String"
|
|
14782
15461
|
}
|
|
14783
15462
|
}
|
|
14784
15463
|
}
|
|
@@ -14818,6 +15497,70 @@ export const AzureSynapseArtifactsLinkedService: coreClient.CompositeMapper = {
|
|
|
14818
15497
|
}
|
|
14819
15498
|
};
|
|
14820
15499
|
|
|
15500
|
+
export const LakeHouseLinkedService: coreClient.CompositeMapper = {
|
|
15501
|
+
serializedName: "LakeHouse",
|
|
15502
|
+
type: {
|
|
15503
|
+
name: "Composite",
|
|
15504
|
+
className: "LakeHouseLinkedService",
|
|
15505
|
+
uberParent: "LinkedService",
|
|
15506
|
+
additionalProperties: { type: { name: "Object" } },
|
|
15507
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
15508
|
+
modelProperties: {
|
|
15509
|
+
...LinkedService.type.modelProperties,
|
|
15510
|
+
workspaceId: {
|
|
15511
|
+
serializedName: "typeProperties.workspaceId",
|
|
15512
|
+
type: {
|
|
15513
|
+
name: "any"
|
|
15514
|
+
}
|
|
15515
|
+
},
|
|
15516
|
+
artifactId: {
|
|
15517
|
+
serializedName: "typeProperties.artifactId",
|
|
15518
|
+
type: {
|
|
15519
|
+
name: "any"
|
|
15520
|
+
}
|
|
15521
|
+
},
|
|
15522
|
+
servicePrincipalId: {
|
|
15523
|
+
serializedName: "typeProperties.servicePrincipalId",
|
|
15524
|
+
type: {
|
|
15525
|
+
name: "any"
|
|
15526
|
+
}
|
|
15527
|
+
},
|
|
15528
|
+
servicePrincipalKey: {
|
|
15529
|
+
serializedName: "typeProperties.servicePrincipalKey",
|
|
15530
|
+
type: {
|
|
15531
|
+
name: "Composite",
|
|
15532
|
+
className: "SecretBase"
|
|
15533
|
+
}
|
|
15534
|
+
},
|
|
15535
|
+
tenant: {
|
|
15536
|
+
serializedName: "typeProperties.tenant",
|
|
15537
|
+
type: {
|
|
15538
|
+
name: "any"
|
|
15539
|
+
}
|
|
15540
|
+
},
|
|
15541
|
+
encryptedCredential: {
|
|
15542
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
15543
|
+
type: {
|
|
15544
|
+
name: "String"
|
|
15545
|
+
}
|
|
15546
|
+
},
|
|
15547
|
+
servicePrincipalCredentialType: {
|
|
15548
|
+
serializedName: "typeProperties.servicePrincipalCredentialType",
|
|
15549
|
+
type: {
|
|
15550
|
+
name: "any"
|
|
15551
|
+
}
|
|
15552
|
+
},
|
|
15553
|
+
servicePrincipalCredential: {
|
|
15554
|
+
serializedName: "typeProperties.servicePrincipalCredential",
|
|
15555
|
+
type: {
|
|
15556
|
+
name: "Composite",
|
|
15557
|
+
className: "SecretBase"
|
|
15558
|
+
}
|
|
15559
|
+
}
|
|
15560
|
+
}
|
|
15561
|
+
}
|
|
15562
|
+
};
|
|
15563
|
+
|
|
14821
15564
|
export const AmazonS3Dataset: coreClient.CompositeMapper = {
|
|
14822
15565
|
serializedName: "AmazonS3Object",
|
|
14823
15566
|
type: {
|
|
@@ -16371,13 +17114,15 @@ export const RestResourceDataset: coreClient.CompositeMapper = {
|
|
|
16371
17114
|
additionalHeaders: {
|
|
16372
17115
|
serializedName: "typeProperties.additionalHeaders",
|
|
16373
17116
|
type: {
|
|
16374
|
-
name: "
|
|
17117
|
+
name: "Dictionary",
|
|
17118
|
+
value: { type: { name: "any" } }
|
|
16375
17119
|
}
|
|
16376
17120
|
},
|
|
16377
17121
|
paginationRules: {
|
|
16378
17122
|
serializedName: "typeProperties.paginationRules",
|
|
16379
17123
|
type: {
|
|
16380
|
-
name: "
|
|
17124
|
+
name: "Dictionary",
|
|
17125
|
+
value: { type: { name: "any" } }
|
|
16381
17126
|
}
|
|
16382
17127
|
}
|
|
16383
17128
|
}
|
|
@@ -17438,6 +18183,26 @@ export const AzureDatabricksDeltaLakeDataset: coreClient.CompositeMapper = {
|
|
|
17438
18183
|
}
|
|
17439
18184
|
};
|
|
17440
18185
|
|
|
18186
|
+
export const LakeHouseTableDataset: coreClient.CompositeMapper = {
|
|
18187
|
+
serializedName: "LakeHouseTable",
|
|
18188
|
+
type: {
|
|
18189
|
+
name: "Composite",
|
|
18190
|
+
className: "LakeHouseTableDataset",
|
|
18191
|
+
uberParent: "Dataset",
|
|
18192
|
+
additionalProperties: { type: { name: "Object" } },
|
|
18193
|
+
polymorphicDiscriminator: Dataset.type.polymorphicDiscriminator,
|
|
18194
|
+
modelProperties: {
|
|
18195
|
+
...Dataset.type.modelProperties,
|
|
18196
|
+
table: {
|
|
18197
|
+
serializedName: "typeProperties.table",
|
|
18198
|
+
type: {
|
|
18199
|
+
name: "any"
|
|
18200
|
+
}
|
|
18201
|
+
}
|
|
18202
|
+
}
|
|
18203
|
+
}
|
|
18204
|
+
};
|
|
18205
|
+
|
|
17441
18206
|
export const ControlActivity: coreClient.CompositeMapper = {
|
|
17442
18207
|
serializedName: "Container",
|
|
17443
18208
|
type: {
|
|
@@ -18410,6 +19175,20 @@ export const HdfsLocation: coreClient.CompositeMapper = {
|
|
|
18410
19175
|
}
|
|
18411
19176
|
};
|
|
18412
19177
|
|
|
19178
|
+
export const LakeHouseLocation: coreClient.CompositeMapper = {
|
|
19179
|
+
serializedName: "LakeHouseLocation",
|
|
19180
|
+
type: {
|
|
19181
|
+
name: "Composite",
|
|
19182
|
+
className: "LakeHouseLocation",
|
|
19183
|
+
uberParent: "DatasetLocation",
|
|
19184
|
+
additionalProperties: { type: { name: "Object" } },
|
|
19185
|
+
polymorphicDiscriminator: DatasetLocation.type.polymorphicDiscriminator,
|
|
19186
|
+
modelProperties: {
|
|
19187
|
+
...DatasetLocation.type.modelProperties
|
|
19188
|
+
}
|
|
19189
|
+
}
|
|
19190
|
+
};
|
|
19191
|
+
|
|
18413
19192
|
export const TextFormat: coreClient.CompositeMapper = {
|
|
18414
19193
|
serializedName: "TextFormat",
|
|
18415
19194
|
type: {
|
|
@@ -18839,7 +19618,7 @@ export const AzureBlobStorageReadSettings: coreClient.CompositeMapper = {
|
|
|
18839
19618
|
enablePartitionDiscovery: {
|
|
18840
19619
|
serializedName: "enablePartitionDiscovery",
|
|
18841
19620
|
type: {
|
|
18842
|
-
name: "
|
|
19621
|
+
name: "any"
|
|
18843
19622
|
}
|
|
18844
19623
|
},
|
|
18845
19624
|
partitionRootPath: {
|
|
@@ -18907,7 +19686,7 @@ export const AzureBlobFSReadSettings: coreClient.CompositeMapper = {
|
|
|
18907
19686
|
enablePartitionDiscovery: {
|
|
18908
19687
|
serializedName: "enablePartitionDiscovery",
|
|
18909
19688
|
type: {
|
|
18910
|
-
name: "
|
|
19689
|
+
name: "any"
|
|
18911
19690
|
}
|
|
18912
19691
|
},
|
|
18913
19692
|
partitionRootPath: {
|
|
@@ -18987,7 +19766,7 @@ export const AzureDataLakeStoreReadSettings: coreClient.CompositeMapper = {
|
|
|
18987
19766
|
enablePartitionDiscovery: {
|
|
18988
19767
|
serializedName: "enablePartitionDiscovery",
|
|
18989
19768
|
type: {
|
|
18990
|
-
name: "
|
|
19769
|
+
name: "any"
|
|
18991
19770
|
}
|
|
18992
19771
|
},
|
|
18993
19772
|
partitionRootPath: {
|
|
@@ -19061,7 +19840,7 @@ export const AmazonS3ReadSettings: coreClient.CompositeMapper = {
|
|
|
19061
19840
|
enablePartitionDiscovery: {
|
|
19062
19841
|
serializedName: "enablePartitionDiscovery",
|
|
19063
19842
|
type: {
|
|
19064
|
-
name: "
|
|
19843
|
+
name: "any"
|
|
19065
19844
|
}
|
|
19066
19845
|
},
|
|
19067
19846
|
partitionRootPath: {
|
|
@@ -19129,7 +19908,7 @@ export const FileServerReadSettings: coreClient.CompositeMapper = {
|
|
|
19129
19908
|
enablePartitionDiscovery: {
|
|
19130
19909
|
serializedName: "enablePartitionDiscovery",
|
|
19131
19910
|
type: {
|
|
19132
|
-
name: "
|
|
19911
|
+
name: "any"
|
|
19133
19912
|
}
|
|
19134
19913
|
},
|
|
19135
19914
|
partitionRootPath: {
|
|
@@ -19209,7 +19988,7 @@ export const AzureFileStorageReadSettings: coreClient.CompositeMapper = {
|
|
|
19209
19988
|
enablePartitionDiscovery: {
|
|
19210
19989
|
serializedName: "enablePartitionDiscovery",
|
|
19211
19990
|
type: {
|
|
19212
|
-
name: "
|
|
19991
|
+
name: "any"
|
|
19213
19992
|
}
|
|
19214
19993
|
},
|
|
19215
19994
|
partitionRootPath: {
|
|
@@ -19283,7 +20062,7 @@ export const AmazonS3CompatibleReadSettings: coreClient.CompositeMapper = {
|
|
|
19283
20062
|
enablePartitionDiscovery: {
|
|
19284
20063
|
serializedName: "enablePartitionDiscovery",
|
|
19285
20064
|
type: {
|
|
19286
|
-
name: "
|
|
20065
|
+
name: "any"
|
|
19287
20066
|
}
|
|
19288
20067
|
},
|
|
19289
20068
|
partitionRootPath: {
|
|
@@ -19357,7 +20136,7 @@ export const OracleCloudStorageReadSettings: coreClient.CompositeMapper = {
|
|
|
19357
20136
|
enablePartitionDiscovery: {
|
|
19358
20137
|
serializedName: "enablePartitionDiscovery",
|
|
19359
20138
|
type: {
|
|
19360
|
-
name: "
|
|
20139
|
+
name: "any"
|
|
19361
20140
|
}
|
|
19362
20141
|
},
|
|
19363
20142
|
partitionRootPath: {
|
|
@@ -19431,7 +20210,7 @@ export const GoogleCloudStorageReadSettings: coreClient.CompositeMapper = {
|
|
|
19431
20210
|
enablePartitionDiscovery: {
|
|
19432
20211
|
serializedName: "enablePartitionDiscovery",
|
|
19433
20212
|
type: {
|
|
19434
|
-
name: "
|
|
20213
|
+
name: "any"
|
|
19435
20214
|
}
|
|
19436
20215
|
},
|
|
19437
20216
|
partitionRootPath: {
|
|
@@ -19493,7 +20272,7 @@ export const FtpReadSettings: coreClient.CompositeMapper = {
|
|
|
19493
20272
|
enablePartitionDiscovery: {
|
|
19494
20273
|
serializedName: "enablePartitionDiscovery",
|
|
19495
20274
|
type: {
|
|
19496
|
-
name: "
|
|
20275
|
+
name: "any"
|
|
19497
20276
|
}
|
|
19498
20277
|
},
|
|
19499
20278
|
partitionRootPath: {
|
|
@@ -19517,7 +20296,7 @@ export const FtpReadSettings: coreClient.CompositeMapper = {
|
|
|
19517
20296
|
useBinaryTransfer: {
|
|
19518
20297
|
serializedName: "useBinaryTransfer",
|
|
19519
20298
|
type: {
|
|
19520
|
-
name: "
|
|
20299
|
+
name: "any"
|
|
19521
20300
|
}
|
|
19522
20301
|
},
|
|
19523
20302
|
disableChunking: {
|
|
@@ -19561,7 +20340,7 @@ export const SftpReadSettings: coreClient.CompositeMapper = {
|
|
|
19561
20340
|
enablePartitionDiscovery: {
|
|
19562
20341
|
serializedName: "enablePartitionDiscovery",
|
|
19563
20342
|
type: {
|
|
19564
|
-
name: "
|
|
20343
|
+
name: "any"
|
|
19565
20344
|
}
|
|
19566
20345
|
},
|
|
19567
20346
|
partitionRootPath: {
|
|
@@ -19638,14 +20417,8 @@ export const HttpReadSettings: coreClient.CompositeMapper = {
|
|
|
19638
20417
|
name: "any"
|
|
19639
20418
|
}
|
|
19640
20419
|
},
|
|
19641
|
-
|
|
19642
|
-
serializedName: "
|
|
19643
|
-
type: {
|
|
19644
|
-
name: "Boolean"
|
|
19645
|
-
}
|
|
19646
|
-
},
|
|
19647
|
-
partitionRootPath: {
|
|
19648
|
-
serializedName: "partitionRootPath",
|
|
20420
|
+
additionalColumns: {
|
|
20421
|
+
serializedName: "additionalColumns",
|
|
19649
20422
|
type: {
|
|
19650
20423
|
name: "any"
|
|
19651
20424
|
}
|
|
@@ -19691,7 +20464,7 @@ export const HdfsReadSettings: coreClient.CompositeMapper = {
|
|
|
19691
20464
|
enablePartitionDiscovery: {
|
|
19692
20465
|
serializedName: "enablePartitionDiscovery",
|
|
19693
20466
|
type: {
|
|
19694
|
-
name: "
|
|
20467
|
+
name: "any"
|
|
19695
20468
|
}
|
|
19696
20469
|
},
|
|
19697
20470
|
partitionRootPath: {
|
|
@@ -19729,6 +20502,74 @@ export const HdfsReadSettings: coreClient.CompositeMapper = {
|
|
|
19729
20502
|
}
|
|
19730
20503
|
};
|
|
19731
20504
|
|
|
20505
|
+
export const LakeHouseReadSettings: coreClient.CompositeMapper = {
|
|
20506
|
+
serializedName: "LakeHouseReadSettings",
|
|
20507
|
+
type: {
|
|
20508
|
+
name: "Composite",
|
|
20509
|
+
className: "LakeHouseReadSettings",
|
|
20510
|
+
uberParent: "StoreReadSettings",
|
|
20511
|
+
additionalProperties: { type: { name: "Object" } },
|
|
20512
|
+
polymorphicDiscriminator: StoreReadSettings.type.polymorphicDiscriminator,
|
|
20513
|
+
modelProperties: {
|
|
20514
|
+
...StoreReadSettings.type.modelProperties,
|
|
20515
|
+
recursive: {
|
|
20516
|
+
serializedName: "recursive",
|
|
20517
|
+
type: {
|
|
20518
|
+
name: "any"
|
|
20519
|
+
}
|
|
20520
|
+
},
|
|
20521
|
+
wildcardFolderPath: {
|
|
20522
|
+
serializedName: "wildcardFolderPath",
|
|
20523
|
+
type: {
|
|
20524
|
+
name: "any"
|
|
20525
|
+
}
|
|
20526
|
+
},
|
|
20527
|
+
wildcardFileName: {
|
|
20528
|
+
serializedName: "wildcardFileName",
|
|
20529
|
+
type: {
|
|
20530
|
+
name: "any"
|
|
20531
|
+
}
|
|
20532
|
+
},
|
|
20533
|
+
fileListPath: {
|
|
20534
|
+
serializedName: "fileListPath",
|
|
20535
|
+
type: {
|
|
20536
|
+
name: "any"
|
|
20537
|
+
}
|
|
20538
|
+
},
|
|
20539
|
+
enablePartitionDiscovery: {
|
|
20540
|
+
serializedName: "enablePartitionDiscovery",
|
|
20541
|
+
type: {
|
|
20542
|
+
name: "any"
|
|
20543
|
+
}
|
|
20544
|
+
},
|
|
20545
|
+
partitionRootPath: {
|
|
20546
|
+
serializedName: "partitionRootPath",
|
|
20547
|
+
type: {
|
|
20548
|
+
name: "any"
|
|
20549
|
+
}
|
|
20550
|
+
},
|
|
20551
|
+
deleteFilesAfterCompletion: {
|
|
20552
|
+
serializedName: "deleteFilesAfterCompletion",
|
|
20553
|
+
type: {
|
|
20554
|
+
name: "any"
|
|
20555
|
+
}
|
|
20556
|
+
},
|
|
20557
|
+
modifiedDatetimeStart: {
|
|
20558
|
+
serializedName: "modifiedDatetimeStart",
|
|
20559
|
+
type: {
|
|
20560
|
+
name: "any"
|
|
20561
|
+
}
|
|
20562
|
+
},
|
|
20563
|
+
modifiedDatetimeEnd: {
|
|
20564
|
+
serializedName: "modifiedDatetimeEnd",
|
|
20565
|
+
type: {
|
|
20566
|
+
name: "any"
|
|
20567
|
+
}
|
|
20568
|
+
}
|
|
20569
|
+
}
|
|
20570
|
+
}
|
|
20571
|
+
};
|
|
20572
|
+
|
|
19732
20573
|
export const SftpWriteSettings: coreClient.CompositeMapper = {
|
|
19733
20574
|
serializedName: "SftpWriteSettings",
|
|
19734
20575
|
type: {
|
|
@@ -19843,6 +20684,41 @@ export const AzureFileStorageWriteSettings: coreClient.CompositeMapper = {
|
|
|
19843
20684
|
}
|
|
19844
20685
|
};
|
|
19845
20686
|
|
|
20687
|
+
export const LakeHouseWriteSettings: coreClient.CompositeMapper = {
|
|
20688
|
+
serializedName: "LakeHouseWriteSettings",
|
|
20689
|
+
type: {
|
|
20690
|
+
name: "Composite",
|
|
20691
|
+
className: "LakeHouseWriteSettings",
|
|
20692
|
+
uberParent: "StoreWriteSettings",
|
|
20693
|
+
additionalProperties: { type: { name: "Object" } },
|
|
20694
|
+
polymorphicDiscriminator: StoreWriteSettings.type.polymorphicDiscriminator,
|
|
20695
|
+
modelProperties: {
|
|
20696
|
+
...StoreWriteSettings.type.modelProperties
|
|
20697
|
+
}
|
|
20698
|
+
}
|
|
20699
|
+
};
|
|
20700
|
+
|
|
20701
|
+
export const ParquetReadSettings: coreClient.CompositeMapper = {
|
|
20702
|
+
serializedName: "ParquetReadSettings",
|
|
20703
|
+
type: {
|
|
20704
|
+
name: "Composite",
|
|
20705
|
+
className: "ParquetReadSettings",
|
|
20706
|
+
uberParent: "FormatReadSettings",
|
|
20707
|
+
additionalProperties: { type: { name: "Object" } },
|
|
20708
|
+
polymorphicDiscriminator: FormatReadSettings.type.polymorphicDiscriminator,
|
|
20709
|
+
modelProperties: {
|
|
20710
|
+
...FormatReadSettings.type.modelProperties,
|
|
20711
|
+
compressionProperties: {
|
|
20712
|
+
serializedName: "compressionProperties",
|
|
20713
|
+
type: {
|
|
20714
|
+
name: "Composite",
|
|
20715
|
+
className: "CompressionReadSettings"
|
|
20716
|
+
}
|
|
20717
|
+
}
|
|
20718
|
+
}
|
|
20719
|
+
}
|
|
20720
|
+
};
|
|
20721
|
+
|
|
19846
20722
|
export const DelimitedTextReadSettings: coreClient.CompositeMapper = {
|
|
19847
20723
|
serializedName: "DelimitedTextReadSettings",
|
|
19848
20724
|
type: {
|
|
@@ -20240,6 +21116,13 @@ export const ParquetSource: coreClient.CompositeMapper = {
|
|
|
20240
21116
|
className: "StoreReadSettings"
|
|
20241
21117
|
}
|
|
20242
21118
|
},
|
|
21119
|
+
formatSettings: {
|
|
21120
|
+
serializedName: "formatSettings",
|
|
21121
|
+
type: {
|
|
21122
|
+
name: "Composite",
|
|
21123
|
+
className: "ParquetReadSettings"
|
|
21124
|
+
}
|
|
21125
|
+
},
|
|
20243
21126
|
additionalColumns: {
|
|
20244
21127
|
serializedName: "additionalColumns",
|
|
20245
21128
|
type: {
|
|
@@ -20731,7 +21614,7 @@ export const SalesforceServiceCloudSource: coreClient.CompositeMapper = {
|
|
|
20731
21614
|
readBehavior: {
|
|
20732
21615
|
serializedName: "readBehavior",
|
|
20733
21616
|
type: {
|
|
20734
|
-
name: "
|
|
21617
|
+
name: "any"
|
|
20735
21618
|
}
|
|
20736
21619
|
},
|
|
20737
21620
|
additionalColumns: {
|
|
@@ -21285,6 +22168,38 @@ export const HttpSource: coreClient.CompositeMapper = {
|
|
|
21285
22168
|
}
|
|
21286
22169
|
};
|
|
21287
22170
|
|
|
22171
|
+
export const LakeHouseTableSource: coreClient.CompositeMapper = {
|
|
22172
|
+
serializedName: "LakeHouseTableSource",
|
|
22173
|
+
type: {
|
|
22174
|
+
name: "Composite",
|
|
22175
|
+
className: "LakeHouseTableSource",
|
|
22176
|
+
uberParent: "CopySource",
|
|
22177
|
+
additionalProperties: { type: { name: "Object" } },
|
|
22178
|
+
polymorphicDiscriminator: CopySource.type.polymorphicDiscriminator,
|
|
22179
|
+
modelProperties: {
|
|
22180
|
+
...CopySource.type.modelProperties,
|
|
22181
|
+
timestampAsOf: {
|
|
22182
|
+
serializedName: "timestampAsOf",
|
|
22183
|
+
type: {
|
|
22184
|
+
name: "any"
|
|
22185
|
+
}
|
|
22186
|
+
},
|
|
22187
|
+
versionAsOf: {
|
|
22188
|
+
serializedName: "versionAsOf",
|
|
22189
|
+
type: {
|
|
22190
|
+
name: "any"
|
|
22191
|
+
}
|
|
22192
|
+
},
|
|
22193
|
+
additionalColumns: {
|
|
22194
|
+
serializedName: "additionalColumns",
|
|
22195
|
+
type: {
|
|
22196
|
+
name: "any"
|
|
22197
|
+
}
|
|
22198
|
+
}
|
|
22199
|
+
}
|
|
22200
|
+
}
|
|
22201
|
+
};
|
|
22202
|
+
|
|
21288
22203
|
export const SnowflakeSource: coreClient.CompositeMapper = {
|
|
21289
22204
|
serializedName: "SnowflakeSource",
|
|
21290
22205
|
type: {
|
|
@@ -22618,6 +23533,38 @@ export const CosmosDbMongoDbApiSink: coreClient.CompositeMapper = {
|
|
|
22618
23533
|
}
|
|
22619
23534
|
};
|
|
22620
23535
|
|
|
23536
|
+
export const LakeHouseTableSink: coreClient.CompositeMapper = {
|
|
23537
|
+
serializedName: "LakeHouseTableSink",
|
|
23538
|
+
type: {
|
|
23539
|
+
name: "Composite",
|
|
23540
|
+
className: "LakeHouseTableSink",
|
|
23541
|
+
uberParent: "CopySink",
|
|
23542
|
+
additionalProperties: { type: { name: "Object" } },
|
|
23543
|
+
polymorphicDiscriminator: CopySink.type.polymorphicDiscriminator,
|
|
23544
|
+
modelProperties: {
|
|
23545
|
+
...CopySink.type.modelProperties,
|
|
23546
|
+
tableActionOption: {
|
|
23547
|
+
serializedName: "tableActionOption",
|
|
23548
|
+
type: {
|
|
23549
|
+
name: "any"
|
|
23550
|
+
}
|
|
23551
|
+
},
|
|
23552
|
+
partitionOption: {
|
|
23553
|
+
serializedName: "partitionOption",
|
|
23554
|
+
type: {
|
|
23555
|
+
name: "any"
|
|
23556
|
+
}
|
|
23557
|
+
},
|
|
23558
|
+
partitionNameList: {
|
|
23559
|
+
serializedName: "partitionNameList",
|
|
23560
|
+
type: {
|
|
23561
|
+
name: "any"
|
|
23562
|
+
}
|
|
23563
|
+
}
|
|
23564
|
+
}
|
|
23565
|
+
}
|
|
23566
|
+
};
|
|
23567
|
+
|
|
22621
23568
|
export const SnowflakeExportCopyCommand: coreClient.CompositeMapper = {
|
|
22622
23569
|
serializedName: "SnowflakeExportCopyCommand",
|
|
22623
23570
|
type: {
|
|
@@ -23227,6 +24174,13 @@ export const SetVariableActivity: coreClient.CompositeMapper = {
|
|
|
23227
24174
|
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
23228
24175
|
modelProperties: {
|
|
23229
24176
|
...ControlActivity.type.modelProperties,
|
|
24177
|
+
policy: {
|
|
24178
|
+
serializedName: "policy",
|
|
24179
|
+
type: {
|
|
24180
|
+
name: "Composite",
|
|
24181
|
+
className: "SecureInputOutputPolicy"
|
|
24182
|
+
}
|
|
24183
|
+
},
|
|
23230
24184
|
variableName: {
|
|
23231
24185
|
serializedName: "typeProperties.variableName",
|
|
23232
24186
|
type: {
|
|
@@ -23238,6 +24192,12 @@ export const SetVariableActivity: coreClient.CompositeMapper = {
|
|
|
23238
24192
|
type: {
|
|
23239
24193
|
name: "any"
|
|
23240
24194
|
}
|
|
24195
|
+
},
|
|
24196
|
+
setSystemVariable: {
|
|
24197
|
+
serializedName: "typeProperties.setSystemVariable",
|
|
24198
|
+
type: {
|
|
24199
|
+
name: "Boolean"
|
|
24200
|
+
}
|
|
23241
24201
|
}
|
|
23242
24202
|
}
|
|
23243
24203
|
}
|
|
@@ -23279,6 +24239,13 @@ export const WebHookActivity: coreClient.CompositeMapper = {
|
|
|
23279
24239
|
polymorphicDiscriminator: ControlActivity.type.polymorphicDiscriminator,
|
|
23280
24240
|
modelProperties: {
|
|
23281
24241
|
...ControlActivity.type.modelProperties,
|
|
24242
|
+
policy: {
|
|
24243
|
+
serializedName: "policy",
|
|
24244
|
+
type: {
|
|
24245
|
+
name: "Composite",
|
|
24246
|
+
className: "SecureInputOutputPolicy"
|
|
24247
|
+
}
|
|
24248
|
+
},
|
|
23282
24249
|
method: {
|
|
23283
24250
|
serializedName: "typeProperties.method",
|
|
23284
24251
|
required: true,
|
|
@@ -23535,12 +24502,8 @@ export const HDInsightHiveActivity: coreClient.CompositeMapper = {
|
|
|
23535
24502
|
variables: {
|
|
23536
24503
|
serializedName: "typeProperties.variables",
|
|
23537
24504
|
type: {
|
|
23538
|
-
name: "
|
|
23539
|
-
|
|
23540
|
-
type: {
|
|
23541
|
-
name: "any"
|
|
23542
|
-
}
|
|
23543
|
-
}
|
|
24505
|
+
name: "Dictionary",
|
|
24506
|
+
value: { type: { name: "any" } }
|
|
23544
24507
|
}
|
|
23545
24508
|
},
|
|
23546
24509
|
queryTimeout: {
|
|
@@ -24847,7 +25810,27 @@ export const SynapseNotebookActivity: coreClient.CompositeMapper = {
|
|
|
24847
25810
|
numExecutors: {
|
|
24848
25811
|
serializedName: "typeProperties.numExecutors",
|
|
24849
25812
|
type: {
|
|
24850
|
-
name: "
|
|
25813
|
+
name: "any"
|
|
25814
|
+
}
|
|
25815
|
+
},
|
|
25816
|
+
configurationType: {
|
|
25817
|
+
serializedName: "typeProperties.configurationType",
|
|
25818
|
+
type: {
|
|
25819
|
+
name: "String"
|
|
25820
|
+
}
|
|
25821
|
+
},
|
|
25822
|
+
targetSparkConfiguration: {
|
|
25823
|
+
serializedName: "typeProperties.targetSparkConfiguration",
|
|
25824
|
+
type: {
|
|
25825
|
+
name: "Composite",
|
|
25826
|
+
className: "SparkConfigurationParametrizationReference"
|
|
25827
|
+
}
|
|
25828
|
+
},
|
|
25829
|
+
sparkConfig: {
|
|
25830
|
+
serializedName: "typeProperties.sparkConfig",
|
|
25831
|
+
type: {
|
|
25832
|
+
name: "Dictionary",
|
|
25833
|
+
value: { type: { name: "any" } }
|
|
24851
25834
|
}
|
|
24852
25835
|
}
|
|
24853
25836
|
}
|
|
@@ -25361,7 +26344,7 @@ export const SalesforceSource: coreClient.CompositeMapper = {
|
|
|
25361
26344
|
readBehavior: {
|
|
25362
26345
|
serializedName: "readBehavior",
|
|
25363
26346
|
type: {
|
|
25364
|
-
name: "
|
|
26347
|
+
name: "any"
|
|
25365
26348
|
}
|
|
25366
26349
|
}
|
|
25367
26350
|
}
|
|
@@ -25683,6 +26666,12 @@ export const SqlServerSource: coreClient.CompositeMapper = {
|
|
|
25683
26666
|
name: "any"
|
|
25684
26667
|
}
|
|
25685
26668
|
},
|
|
26669
|
+
isolationLevel: {
|
|
26670
|
+
serializedName: "isolationLevel",
|
|
26671
|
+
type: {
|
|
26672
|
+
name: "any"
|
|
26673
|
+
}
|
|
26674
|
+
},
|
|
25686
26675
|
produceAdditionalTypes: {
|
|
25687
26676
|
serializedName: "produceAdditionalTypes",
|
|
25688
26677
|
type: {
|
|
@@ -25734,6 +26723,12 @@ export const AmazonRdsForSqlServerSource: coreClient.CompositeMapper = {
|
|
|
25734
26723
|
name: "any"
|
|
25735
26724
|
}
|
|
25736
26725
|
},
|
|
26726
|
+
isolationLevel: {
|
|
26727
|
+
serializedName: "isolationLevel",
|
|
26728
|
+
type: {
|
|
26729
|
+
name: "any"
|
|
26730
|
+
}
|
|
26731
|
+
},
|
|
25737
26732
|
produceAdditionalTypes: {
|
|
25738
26733
|
serializedName: "produceAdditionalTypes",
|
|
25739
26734
|
type: {
|
|
@@ -25785,6 +26780,12 @@ export const AzureSqlSource: coreClient.CompositeMapper = {
|
|
|
25785
26780
|
name: "any"
|
|
25786
26781
|
}
|
|
25787
26782
|
},
|
|
26783
|
+
isolationLevel: {
|
|
26784
|
+
serializedName: "isolationLevel",
|
|
26785
|
+
type: {
|
|
26786
|
+
name: "any"
|
|
26787
|
+
}
|
|
26788
|
+
},
|
|
25788
26789
|
produceAdditionalTypes: {
|
|
25789
26790
|
serializedName: "produceAdditionalTypes",
|
|
25790
26791
|
type: {
|
|
@@ -25836,6 +26837,12 @@ export const SqlMISource: coreClient.CompositeMapper = {
|
|
|
25836
26837
|
name: "any"
|
|
25837
26838
|
}
|
|
25838
26839
|
},
|
|
26840
|
+
isolationLevel: {
|
|
26841
|
+
serializedName: "isolationLevel",
|
|
26842
|
+
type: {
|
|
26843
|
+
name: "any"
|
|
26844
|
+
}
|
|
26845
|
+
},
|
|
25839
26846
|
produceAdditionalTypes: {
|
|
25840
26847
|
serializedName: "produceAdditionalTypes",
|
|
25841
26848
|
type: {
|
|
@@ -25887,6 +26894,12 @@ export const SqlDWSource: coreClient.CompositeMapper = {
|
|
|
25887
26894
|
name: "any"
|
|
25888
26895
|
}
|
|
25889
26896
|
},
|
|
26897
|
+
isolationLevel: {
|
|
26898
|
+
serializedName: "isolationLevel",
|
|
26899
|
+
type: {
|
|
26900
|
+
name: "any"
|
|
26901
|
+
}
|
|
26902
|
+
},
|
|
25890
26903
|
partitionOption: {
|
|
25891
26904
|
serializedName: "partitionOption",
|
|
25892
26905
|
type: {
|
|
@@ -26930,6 +27943,7 @@ export let discriminators = {
|
|
|
26930
27943
|
"LinkedService.Snowflake": SnowflakeLinkedService,
|
|
26931
27944
|
"LinkedService.SharePointOnlineList": SharePointOnlineListLinkedService,
|
|
26932
27945
|
"LinkedService.AzureSynapseArtifacts": AzureSynapseArtifactsLinkedService,
|
|
27946
|
+
"LinkedService.LakeHouse": LakeHouseLinkedService,
|
|
26933
27947
|
"Dataset.AmazonS3Object": AmazonS3Dataset,
|
|
26934
27948
|
"Dataset.Avro": AvroDataset,
|
|
26935
27949
|
"Dataset.Excel": ExcelDataset,
|
|
@@ -27026,6 +28040,7 @@ export let discriminators = {
|
|
|
27026
28040
|
"Dataset.SnowflakeTable": SnowflakeDataset,
|
|
27027
28041
|
"Dataset.SharePointOnlineListResource": SharePointOnlineListResourceDataset,
|
|
27028
28042
|
"Dataset.AzureDatabricksDeltaLakeDataset": AzureDatabricksDeltaLakeDataset,
|
|
28043
|
+
"Dataset.LakeHouseTable": LakeHouseTableDataset,
|
|
27029
28044
|
"Activity.Container": ControlActivity,
|
|
27030
28045
|
"Activity.Execution": ExecutionActivity,
|
|
27031
28046
|
"Activity.ExecuteWranglingDataflow": ExecuteWranglingDataflowActivity,
|
|
@@ -27053,6 +28068,7 @@ export let discriminators = {
|
|
|
27053
28068
|
"DatasetLocation.SftpLocation": SftpLocation,
|
|
27054
28069
|
"DatasetLocation.HttpServerLocation": HttpServerLocation,
|
|
27055
28070
|
"DatasetLocation.HdfsLocation": HdfsLocation,
|
|
28071
|
+
"DatasetLocation.LakeHouseLocation": LakeHouseLocation,
|
|
27056
28072
|
"DatasetStorageFormat.TextFormat": TextFormat,
|
|
27057
28073
|
"DatasetStorageFormat.JsonFormat": JsonFormat,
|
|
27058
28074
|
"DatasetStorageFormat.AvroFormat": AvroFormat,
|
|
@@ -27080,12 +28096,15 @@ export let discriminators = {
|
|
|
27080
28096
|
"StoreReadSettings.SftpReadSettings": SftpReadSettings,
|
|
27081
28097
|
"StoreReadSettings.HttpReadSettings": HttpReadSettings,
|
|
27082
28098
|
"StoreReadSettings.HdfsReadSettings": HdfsReadSettings,
|
|
28099
|
+
"StoreReadSettings.LakeHouseReadSettings": LakeHouseReadSettings,
|
|
27083
28100
|
"StoreWriteSettings.SftpWriteSettings": SftpWriteSettings,
|
|
27084
28101
|
"StoreWriteSettings.AzureBlobStorageWriteSettings": AzureBlobStorageWriteSettings,
|
|
27085
28102
|
"StoreWriteSettings.AzureBlobFSWriteSettings": AzureBlobFSWriteSettings,
|
|
27086
28103
|
"StoreWriteSettings.AzureDataLakeStoreWriteSettings": AzureDataLakeStoreWriteSettings,
|
|
27087
28104
|
"StoreWriteSettings.FileServerWriteSettings": FileServerWriteSettings,
|
|
27088
28105
|
"StoreWriteSettings.AzureFileStorageWriteSettings": AzureFileStorageWriteSettings,
|
|
28106
|
+
"StoreWriteSettings.LakeHouseWriteSettings": LakeHouseWriteSettings,
|
|
28107
|
+
"FormatReadSettings.ParquetReadSettings": ParquetReadSettings,
|
|
27089
28108
|
"FormatReadSettings.DelimitedTextReadSettings": DelimitedTextReadSettings,
|
|
27090
28109
|
"FormatReadSettings.JsonReadSettings": JsonReadSettings,
|
|
27091
28110
|
"FormatReadSettings.XmlReadSettings": XmlReadSettings,
|
|
@@ -27132,6 +28151,7 @@ export let discriminators = {
|
|
|
27132
28151
|
"CopySource.AzureDataLakeStoreSource": AzureDataLakeStoreSource,
|
|
27133
28152
|
"CopySource.AzureBlobFSSource": AzureBlobFSSource,
|
|
27134
28153
|
"CopySource.HttpSource": HttpSource,
|
|
28154
|
+
"CopySource.LakeHouseTableSource": LakeHouseTableSource,
|
|
27135
28155
|
"CopySource.SnowflakeSource": SnowflakeSource,
|
|
27136
28156
|
"CopySource.AzureDatabricksDeltaLakeSource": AzureDatabricksDeltaLakeSource,
|
|
27137
28157
|
"CopySource.SharePointOnlineListSource": SharePointOnlineListSource,
|
|
@@ -27174,6 +28194,7 @@ export let discriminators = {
|
|
|
27174
28194
|
"CopySink.MongoDbAtlasSink": MongoDbAtlasSink,
|
|
27175
28195
|
"CopySink.MongoDbV2Sink": MongoDbV2Sink,
|
|
27176
28196
|
"CopySink.CosmosDbMongoDbApiSink": CosmosDbMongoDbApiSink,
|
|
28197
|
+
"CopySink.LakeHouseTableSink": LakeHouseTableSink,
|
|
27177
28198
|
"ExportSettings.SnowflakeExportCopyCommand": SnowflakeExportCopyCommand,
|
|
27178
28199
|
"ExportSettings.AzureDatabricksDeltaLakeExportCommand": AzureDatabricksDeltaLakeExportCommand,
|
|
27179
28200
|
"ImportSettings.AzureDatabricksDeltaLakeImportCommand": AzureDatabricksDeltaLakeImportCommand,
|