@azure/arm-datafactory 15.0.1-alpha.20240610.1 → 16.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +142 -8
- package/dist/index.js +1095 -64
- 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/credentialOperationsCreateOrUpdateSample.js.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +1 -1
- package/dist-esm/src/models/index.d.ts +521 -46
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +62 -8
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +8 -4
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +3485 -2512
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.d.ts.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.js +6 -2
- package/dist-esm/test/datafactory_examples.spec.js.map +1 -1
- package/package.json +5 -4
- package/review/arm-datafactory.api.md +268 -19
- package/src/dataFactoryManagementClient.ts +1 -1
- package/src/models/index.ts +545 -51
- package/src/models/mappers.ts +1385 -234
- package/types/arm-datafactory.d.ts +516 -27
package/dist/index.js
CHANGED
|
@@ -492,6 +492,26 @@ exports.KnownAzureStorageAuthenticationType = void 0;
|
|
|
492
492
|
/** Msi */
|
|
493
493
|
KnownAzureStorageAuthenticationType["Msi"] = "Msi";
|
|
494
494
|
})(exports.KnownAzureStorageAuthenticationType || (exports.KnownAzureStorageAuthenticationType = {}));
|
|
495
|
+
/** Known values of {@link AzureSqlDWAuthenticationType} that the service accepts. */
|
|
496
|
+
exports.KnownAzureSqlDWAuthenticationType = void 0;
|
|
497
|
+
(function (KnownAzureSqlDWAuthenticationType) {
|
|
498
|
+
/** SQL */
|
|
499
|
+
KnownAzureSqlDWAuthenticationType["SQL"] = "SQL";
|
|
500
|
+
/** ServicePrincipal */
|
|
501
|
+
KnownAzureSqlDWAuthenticationType["ServicePrincipal"] = "ServicePrincipal";
|
|
502
|
+
/** SystemAssignedManagedIdentity */
|
|
503
|
+
KnownAzureSqlDWAuthenticationType["SystemAssignedManagedIdentity"] = "SystemAssignedManagedIdentity";
|
|
504
|
+
/** UserAssignedManagedIdentity */
|
|
505
|
+
KnownAzureSqlDWAuthenticationType["UserAssignedManagedIdentity"] = "UserAssignedManagedIdentity";
|
|
506
|
+
})(exports.KnownAzureSqlDWAuthenticationType || (exports.KnownAzureSqlDWAuthenticationType = {}));
|
|
507
|
+
/** Known values of {@link SqlServerAuthenticationType} that the service accepts. */
|
|
508
|
+
exports.KnownSqlServerAuthenticationType = void 0;
|
|
509
|
+
(function (KnownSqlServerAuthenticationType) {
|
|
510
|
+
/** SQL */
|
|
511
|
+
KnownSqlServerAuthenticationType["SQL"] = "SQL";
|
|
512
|
+
/** Windows */
|
|
513
|
+
KnownSqlServerAuthenticationType["Windows"] = "Windows";
|
|
514
|
+
})(exports.KnownSqlServerAuthenticationType || (exports.KnownSqlServerAuthenticationType = {}));
|
|
495
515
|
/** Known values of {@link SqlAlwaysEncryptedAkvAuthType} that the service accepts. */
|
|
496
516
|
exports.KnownSqlAlwaysEncryptedAkvAuthType = void 0;
|
|
497
517
|
(function (KnownSqlAlwaysEncryptedAkvAuthType) {
|
|
@@ -502,6 +522,38 @@ exports.KnownSqlAlwaysEncryptedAkvAuthType = void 0;
|
|
|
502
522
|
/** UserAssignedManagedIdentity */
|
|
503
523
|
KnownSqlAlwaysEncryptedAkvAuthType["UserAssignedManagedIdentity"] = "UserAssignedManagedIdentity";
|
|
504
524
|
})(exports.KnownSqlAlwaysEncryptedAkvAuthType || (exports.KnownSqlAlwaysEncryptedAkvAuthType = {}));
|
|
525
|
+
/** Known values of {@link AmazonRdsForSqlAuthenticationType} that the service accepts. */
|
|
526
|
+
exports.KnownAmazonRdsForSqlAuthenticationType = void 0;
|
|
527
|
+
(function (KnownAmazonRdsForSqlAuthenticationType) {
|
|
528
|
+
/** SQL */
|
|
529
|
+
KnownAmazonRdsForSqlAuthenticationType["SQL"] = "SQL";
|
|
530
|
+
/** Windows */
|
|
531
|
+
KnownAmazonRdsForSqlAuthenticationType["Windows"] = "Windows";
|
|
532
|
+
})(exports.KnownAmazonRdsForSqlAuthenticationType || (exports.KnownAmazonRdsForSqlAuthenticationType = {}));
|
|
533
|
+
/** Known values of {@link AzureSqlDatabaseAuthenticationType} that the service accepts. */
|
|
534
|
+
exports.KnownAzureSqlDatabaseAuthenticationType = void 0;
|
|
535
|
+
(function (KnownAzureSqlDatabaseAuthenticationType) {
|
|
536
|
+
/** SQL */
|
|
537
|
+
KnownAzureSqlDatabaseAuthenticationType["SQL"] = "SQL";
|
|
538
|
+
/** ServicePrincipal */
|
|
539
|
+
KnownAzureSqlDatabaseAuthenticationType["ServicePrincipal"] = "ServicePrincipal";
|
|
540
|
+
/** SystemAssignedManagedIdentity */
|
|
541
|
+
KnownAzureSqlDatabaseAuthenticationType["SystemAssignedManagedIdentity"] = "SystemAssignedManagedIdentity";
|
|
542
|
+
/** UserAssignedManagedIdentity */
|
|
543
|
+
KnownAzureSqlDatabaseAuthenticationType["UserAssignedManagedIdentity"] = "UserAssignedManagedIdentity";
|
|
544
|
+
})(exports.KnownAzureSqlDatabaseAuthenticationType || (exports.KnownAzureSqlDatabaseAuthenticationType = {}));
|
|
545
|
+
/** Known values of {@link AzureSqlMIAuthenticationType} that the service accepts. */
|
|
546
|
+
exports.KnownAzureSqlMIAuthenticationType = void 0;
|
|
547
|
+
(function (KnownAzureSqlMIAuthenticationType) {
|
|
548
|
+
/** SQL */
|
|
549
|
+
KnownAzureSqlMIAuthenticationType["SQL"] = "SQL";
|
|
550
|
+
/** ServicePrincipal */
|
|
551
|
+
KnownAzureSqlMIAuthenticationType["ServicePrincipal"] = "ServicePrincipal";
|
|
552
|
+
/** SystemAssignedManagedIdentity */
|
|
553
|
+
KnownAzureSqlMIAuthenticationType["SystemAssignedManagedIdentity"] = "SystemAssignedManagedIdentity";
|
|
554
|
+
/** UserAssignedManagedIdentity */
|
|
555
|
+
KnownAzureSqlMIAuthenticationType["UserAssignedManagedIdentity"] = "UserAssignedManagedIdentity";
|
|
556
|
+
})(exports.KnownAzureSqlMIAuthenticationType || (exports.KnownAzureSqlMIAuthenticationType = {}));
|
|
505
557
|
/** Known values of {@link CosmosDbConnectionMode} that the service accepts. */
|
|
506
558
|
exports.KnownCosmosDbConnectionMode = void 0;
|
|
507
559
|
(function (KnownCosmosDbConnectionMode) {
|
|
@@ -936,14 +988,6 @@ exports.KnownWebHookActivityMethod = void 0;
|
|
|
936
988
|
/** Post */
|
|
937
989
|
KnownWebHookActivityMethod["Post"] = "POST";
|
|
938
990
|
})(exports.KnownWebHookActivityMethod || (exports.KnownWebHookActivityMethod = {}));
|
|
939
|
-
/** Known values of {@link ScriptType} that the service accepts. */
|
|
940
|
-
exports.KnownScriptType = void 0;
|
|
941
|
-
(function (KnownScriptType) {
|
|
942
|
-
/** Query */
|
|
943
|
-
KnownScriptType["Query"] = "Query";
|
|
944
|
-
/** NonQuery */
|
|
945
|
-
KnownScriptType["NonQuery"] = "NonQuery";
|
|
946
|
-
})(exports.KnownScriptType || (exports.KnownScriptType = {}));
|
|
947
991
|
/** Known values of {@link ScriptActivityParameterType} that the service accepts. */
|
|
948
992
|
exports.KnownScriptActivityParameterType = void 0;
|
|
949
993
|
(function (KnownScriptActivityParameterType) {
|
|
@@ -1055,6 +1099,8 @@ exports.KnownExpressionV2Type = void 0;
|
|
|
1055
1099
|
KnownExpressionV2Type["Unary"] = "Unary";
|
|
1056
1100
|
/** Binary */
|
|
1057
1101
|
KnownExpressionV2Type["Binary"] = "Binary";
|
|
1102
|
+
/** NAry */
|
|
1103
|
+
KnownExpressionV2Type["NAry"] = "NAry";
|
|
1058
1104
|
})(exports.KnownExpressionV2Type || (exports.KnownExpressionV2Type = {}));
|
|
1059
1105
|
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
1060
1106
|
exports.KnownRecurrenceFrequency = void 0;
|
|
@@ -1254,6 +1300,14 @@ exports.KnownSqlDWWriteBehaviorEnum = void 0;
|
|
|
1254
1300
|
/** Upsert */
|
|
1255
1301
|
KnownSqlDWWriteBehaviorEnum["Upsert"] = "Upsert";
|
|
1256
1302
|
})(exports.KnownSqlDWWriteBehaviorEnum || (exports.KnownSqlDWWriteBehaviorEnum = {}));
|
|
1303
|
+
/** Known values of {@link ScriptType} that the service accepts. */
|
|
1304
|
+
exports.KnownScriptType = void 0;
|
|
1305
|
+
(function (KnownScriptType) {
|
|
1306
|
+
/** Query */
|
|
1307
|
+
KnownScriptType["Query"] = "Query";
|
|
1308
|
+
/** NonQuery */
|
|
1309
|
+
KnownScriptType["NonQuery"] = "NonQuery";
|
|
1310
|
+
})(exports.KnownScriptType || (exports.KnownScriptType = {}));
|
|
1257
1311
|
/** Known values of {@link SqlPartitionOption} that the service accepts. */
|
|
1258
1312
|
exports.KnownSqlPartitionOption = void 0;
|
|
1259
1313
|
(function (KnownSqlPartitionOption) {
|
|
@@ -6732,6 +6786,128 @@ const SsisVariable = {
|
|
|
6732
6786
|
},
|
|
6733
6787
|
},
|
|
6734
6788
|
};
|
|
6789
|
+
const SqlServerBaseLinkedServiceTypeProperties = {
|
|
6790
|
+
type: {
|
|
6791
|
+
name: "Composite",
|
|
6792
|
+
className: "SqlServerBaseLinkedServiceTypeProperties",
|
|
6793
|
+
modelProperties: {
|
|
6794
|
+
server: {
|
|
6795
|
+
serializedName: "server",
|
|
6796
|
+
type: {
|
|
6797
|
+
name: "any",
|
|
6798
|
+
},
|
|
6799
|
+
},
|
|
6800
|
+
database: {
|
|
6801
|
+
serializedName: "database",
|
|
6802
|
+
type: {
|
|
6803
|
+
name: "any",
|
|
6804
|
+
},
|
|
6805
|
+
},
|
|
6806
|
+
encrypt: {
|
|
6807
|
+
serializedName: "encrypt",
|
|
6808
|
+
type: {
|
|
6809
|
+
name: "any",
|
|
6810
|
+
},
|
|
6811
|
+
},
|
|
6812
|
+
trustServerCertificate: {
|
|
6813
|
+
serializedName: "trustServerCertificate",
|
|
6814
|
+
type: {
|
|
6815
|
+
name: "any",
|
|
6816
|
+
},
|
|
6817
|
+
},
|
|
6818
|
+
hostNameInCertificate: {
|
|
6819
|
+
serializedName: "hostNameInCertificate",
|
|
6820
|
+
type: {
|
|
6821
|
+
name: "any",
|
|
6822
|
+
},
|
|
6823
|
+
},
|
|
6824
|
+
applicationIntent: {
|
|
6825
|
+
serializedName: "applicationIntent",
|
|
6826
|
+
type: {
|
|
6827
|
+
name: "any",
|
|
6828
|
+
},
|
|
6829
|
+
},
|
|
6830
|
+
connectTimeout: {
|
|
6831
|
+
serializedName: "connectTimeout",
|
|
6832
|
+
type: {
|
|
6833
|
+
name: "any",
|
|
6834
|
+
},
|
|
6835
|
+
},
|
|
6836
|
+
connectRetryCount: {
|
|
6837
|
+
serializedName: "connectRetryCount",
|
|
6838
|
+
type: {
|
|
6839
|
+
name: "any",
|
|
6840
|
+
},
|
|
6841
|
+
},
|
|
6842
|
+
connectRetryInterval: {
|
|
6843
|
+
serializedName: "connectRetryInterval",
|
|
6844
|
+
type: {
|
|
6845
|
+
name: "any",
|
|
6846
|
+
},
|
|
6847
|
+
},
|
|
6848
|
+
loadBalanceTimeout: {
|
|
6849
|
+
serializedName: "loadBalanceTimeout",
|
|
6850
|
+
type: {
|
|
6851
|
+
name: "any",
|
|
6852
|
+
},
|
|
6853
|
+
},
|
|
6854
|
+
commandTimeout: {
|
|
6855
|
+
serializedName: "commandTimeout",
|
|
6856
|
+
type: {
|
|
6857
|
+
name: "any",
|
|
6858
|
+
},
|
|
6859
|
+
},
|
|
6860
|
+
integratedSecurity: {
|
|
6861
|
+
serializedName: "integratedSecurity",
|
|
6862
|
+
type: {
|
|
6863
|
+
name: "any",
|
|
6864
|
+
},
|
|
6865
|
+
},
|
|
6866
|
+
failoverPartner: {
|
|
6867
|
+
serializedName: "failoverPartner",
|
|
6868
|
+
type: {
|
|
6869
|
+
name: "any",
|
|
6870
|
+
},
|
|
6871
|
+
},
|
|
6872
|
+
maxPoolSize: {
|
|
6873
|
+
serializedName: "maxPoolSize",
|
|
6874
|
+
type: {
|
|
6875
|
+
name: "any",
|
|
6876
|
+
},
|
|
6877
|
+
},
|
|
6878
|
+
minPoolSize: {
|
|
6879
|
+
serializedName: "minPoolSize",
|
|
6880
|
+
type: {
|
|
6881
|
+
name: "any",
|
|
6882
|
+
},
|
|
6883
|
+
},
|
|
6884
|
+
multipleActiveResultSets: {
|
|
6885
|
+
serializedName: "multipleActiveResultSets",
|
|
6886
|
+
type: {
|
|
6887
|
+
name: "any",
|
|
6888
|
+
},
|
|
6889
|
+
},
|
|
6890
|
+
multiSubnetFailover: {
|
|
6891
|
+
serializedName: "multiSubnetFailover",
|
|
6892
|
+
type: {
|
|
6893
|
+
name: "any",
|
|
6894
|
+
},
|
|
6895
|
+
},
|
|
6896
|
+
packetSize: {
|
|
6897
|
+
serializedName: "packetSize",
|
|
6898
|
+
type: {
|
|
6899
|
+
name: "any",
|
|
6900
|
+
},
|
|
6901
|
+
},
|
|
6902
|
+
pooling: {
|
|
6903
|
+
serializedName: "pooling",
|
|
6904
|
+
type: {
|
|
6905
|
+
name: "any",
|
|
6906
|
+
},
|
|
6907
|
+
},
|
|
6908
|
+
},
|
|
6909
|
+
},
|
|
6910
|
+
};
|
|
6735
6911
|
const SqlAlwaysEncryptedProperties = {
|
|
6736
6912
|
type: {
|
|
6737
6913
|
name: "Composite",
|
|
@@ -8412,7 +8588,7 @@ const ScriptActivityScriptBlock = {
|
|
|
8412
8588
|
serializedName: "type",
|
|
8413
8589
|
required: true,
|
|
8414
8590
|
type: {
|
|
8415
|
-
name: "
|
|
8591
|
+
name: "any",
|
|
8416
8592
|
},
|
|
8417
8593
|
},
|
|
8418
8594
|
parameters: {
|
|
@@ -8616,10 +8792,15 @@ const ExpressionV2 = {
|
|
|
8616
8792
|
name: "String",
|
|
8617
8793
|
},
|
|
8618
8794
|
},
|
|
8619
|
-
|
|
8620
|
-
serializedName: "
|
|
8795
|
+
operators: {
|
|
8796
|
+
serializedName: "operators",
|
|
8621
8797
|
type: {
|
|
8622
|
-
name: "
|
|
8798
|
+
name: "Sequence",
|
|
8799
|
+
element: {
|
|
8800
|
+
type: {
|
|
8801
|
+
name: "String",
|
|
8802
|
+
},
|
|
8803
|
+
},
|
|
8623
8804
|
},
|
|
8624
8805
|
},
|
|
8625
8806
|
operands: {
|
|
@@ -9785,9 +9966,113 @@ const AzureSqlDWLinkedService = {
|
|
|
9785
9966
|
uberParent: "LinkedService",
|
|
9786
9967
|
additionalProperties: { type: { name: "Object" } },
|
|
9787
9968
|
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
9788
|
-
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), {
|
|
9969
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { server: {
|
|
9970
|
+
serializedName: "typeProperties.server",
|
|
9971
|
+
type: {
|
|
9972
|
+
name: "any",
|
|
9973
|
+
},
|
|
9974
|
+
}, database: {
|
|
9975
|
+
serializedName: "typeProperties.database",
|
|
9976
|
+
type: {
|
|
9977
|
+
name: "any",
|
|
9978
|
+
},
|
|
9979
|
+
}, encrypt: {
|
|
9980
|
+
serializedName: "typeProperties.encrypt",
|
|
9981
|
+
type: {
|
|
9982
|
+
name: "any",
|
|
9983
|
+
},
|
|
9984
|
+
}, trustServerCertificate: {
|
|
9985
|
+
serializedName: "typeProperties.trustServerCertificate",
|
|
9986
|
+
type: {
|
|
9987
|
+
name: "any",
|
|
9988
|
+
},
|
|
9989
|
+
}, hostNameInCertificate: {
|
|
9990
|
+
serializedName: "typeProperties.hostNameInCertificate",
|
|
9991
|
+
type: {
|
|
9992
|
+
name: "any",
|
|
9993
|
+
},
|
|
9994
|
+
}, applicationIntent: {
|
|
9995
|
+
serializedName: "typeProperties.applicationIntent",
|
|
9996
|
+
type: {
|
|
9997
|
+
name: "any",
|
|
9998
|
+
},
|
|
9999
|
+
}, connectTimeout: {
|
|
10000
|
+
serializedName: "typeProperties.connectTimeout",
|
|
10001
|
+
type: {
|
|
10002
|
+
name: "any",
|
|
10003
|
+
},
|
|
10004
|
+
}, connectRetryCount: {
|
|
10005
|
+
serializedName: "typeProperties.connectRetryCount",
|
|
10006
|
+
type: {
|
|
10007
|
+
name: "any",
|
|
10008
|
+
},
|
|
10009
|
+
}, connectRetryInterval: {
|
|
10010
|
+
serializedName: "typeProperties.connectRetryInterval",
|
|
10011
|
+
type: {
|
|
10012
|
+
name: "any",
|
|
10013
|
+
},
|
|
10014
|
+
}, loadBalanceTimeout: {
|
|
10015
|
+
serializedName: "typeProperties.loadBalanceTimeout",
|
|
10016
|
+
type: {
|
|
10017
|
+
name: "any",
|
|
10018
|
+
},
|
|
10019
|
+
}, commandTimeout: {
|
|
10020
|
+
serializedName: "typeProperties.commandTimeout",
|
|
10021
|
+
type: {
|
|
10022
|
+
name: "any",
|
|
10023
|
+
},
|
|
10024
|
+
}, integratedSecurity: {
|
|
10025
|
+
serializedName: "typeProperties.integratedSecurity",
|
|
10026
|
+
type: {
|
|
10027
|
+
name: "any",
|
|
10028
|
+
},
|
|
10029
|
+
}, failoverPartner: {
|
|
10030
|
+
serializedName: "typeProperties.failoverPartner",
|
|
10031
|
+
type: {
|
|
10032
|
+
name: "any",
|
|
10033
|
+
},
|
|
10034
|
+
}, maxPoolSize: {
|
|
10035
|
+
serializedName: "typeProperties.maxPoolSize",
|
|
10036
|
+
type: {
|
|
10037
|
+
name: "any",
|
|
10038
|
+
},
|
|
10039
|
+
}, minPoolSize: {
|
|
10040
|
+
serializedName: "typeProperties.minPoolSize",
|
|
10041
|
+
type: {
|
|
10042
|
+
name: "any",
|
|
10043
|
+
},
|
|
10044
|
+
}, multipleActiveResultSets: {
|
|
10045
|
+
serializedName: "typeProperties.multipleActiveResultSets",
|
|
10046
|
+
type: {
|
|
10047
|
+
name: "any",
|
|
10048
|
+
},
|
|
10049
|
+
}, multiSubnetFailover: {
|
|
10050
|
+
serializedName: "typeProperties.multiSubnetFailover",
|
|
10051
|
+
type: {
|
|
10052
|
+
name: "any",
|
|
10053
|
+
},
|
|
10054
|
+
}, packetSize: {
|
|
10055
|
+
serializedName: "typeProperties.packetSize",
|
|
10056
|
+
type: {
|
|
10057
|
+
name: "any",
|
|
10058
|
+
},
|
|
10059
|
+
}, pooling: {
|
|
10060
|
+
serializedName: "typeProperties.pooling",
|
|
10061
|
+
type: {
|
|
10062
|
+
name: "any",
|
|
10063
|
+
},
|
|
10064
|
+
}, connectionString: {
|
|
9789
10065
|
serializedName: "typeProperties.connectionString",
|
|
9790
|
-
|
|
10066
|
+
type: {
|
|
10067
|
+
name: "any",
|
|
10068
|
+
},
|
|
10069
|
+
}, authenticationType: {
|
|
10070
|
+
serializedName: "typeProperties.authenticationType",
|
|
10071
|
+
type: {
|
|
10072
|
+
name: "String",
|
|
10073
|
+
},
|
|
10074
|
+
}, userName: {
|
|
10075
|
+
serializedName: "typeProperties.userName",
|
|
9791
10076
|
type: {
|
|
9792
10077
|
name: "any",
|
|
9793
10078
|
},
|
|
@@ -9808,6 +10093,17 @@ const AzureSqlDWLinkedService = {
|
|
|
9808
10093
|
name: "Composite",
|
|
9809
10094
|
className: "SecretBase",
|
|
9810
10095
|
},
|
|
10096
|
+
}, servicePrincipalCredentialType: {
|
|
10097
|
+
serializedName: "typeProperties.servicePrincipalCredentialType",
|
|
10098
|
+
type: {
|
|
10099
|
+
name: "any",
|
|
10100
|
+
},
|
|
10101
|
+
}, servicePrincipalCredential: {
|
|
10102
|
+
serializedName: "typeProperties.servicePrincipalCredential",
|
|
10103
|
+
type: {
|
|
10104
|
+
name: "Composite",
|
|
10105
|
+
className: "SecretBase",
|
|
10106
|
+
},
|
|
9811
10107
|
}, tenant: {
|
|
9812
10108
|
serializedName: "typeProperties.tenant",
|
|
9813
10109
|
type: {
|
|
@@ -9840,12 +10136,111 @@ const SqlServerLinkedService = {
|
|
|
9840
10136
|
uberParent: "LinkedService",
|
|
9841
10137
|
additionalProperties: { type: { name: "Object" } },
|
|
9842
10138
|
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
9843
|
-
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), {
|
|
10139
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { server: {
|
|
10140
|
+
serializedName: "typeProperties.server",
|
|
10141
|
+
type: {
|
|
10142
|
+
name: "any",
|
|
10143
|
+
},
|
|
10144
|
+
}, database: {
|
|
10145
|
+
serializedName: "typeProperties.database",
|
|
10146
|
+
type: {
|
|
10147
|
+
name: "any",
|
|
10148
|
+
},
|
|
10149
|
+
}, encrypt: {
|
|
10150
|
+
serializedName: "typeProperties.encrypt",
|
|
10151
|
+
type: {
|
|
10152
|
+
name: "any",
|
|
10153
|
+
},
|
|
10154
|
+
}, trustServerCertificate: {
|
|
10155
|
+
serializedName: "typeProperties.trustServerCertificate",
|
|
10156
|
+
type: {
|
|
10157
|
+
name: "any",
|
|
10158
|
+
},
|
|
10159
|
+
}, hostNameInCertificate: {
|
|
10160
|
+
serializedName: "typeProperties.hostNameInCertificate",
|
|
10161
|
+
type: {
|
|
10162
|
+
name: "any",
|
|
10163
|
+
},
|
|
10164
|
+
}, applicationIntent: {
|
|
10165
|
+
serializedName: "typeProperties.applicationIntent",
|
|
10166
|
+
type: {
|
|
10167
|
+
name: "any",
|
|
10168
|
+
},
|
|
10169
|
+
}, connectTimeout: {
|
|
10170
|
+
serializedName: "typeProperties.connectTimeout",
|
|
10171
|
+
type: {
|
|
10172
|
+
name: "any",
|
|
10173
|
+
},
|
|
10174
|
+
}, connectRetryCount: {
|
|
10175
|
+
serializedName: "typeProperties.connectRetryCount",
|
|
10176
|
+
type: {
|
|
10177
|
+
name: "any",
|
|
10178
|
+
},
|
|
10179
|
+
}, connectRetryInterval: {
|
|
10180
|
+
serializedName: "typeProperties.connectRetryInterval",
|
|
10181
|
+
type: {
|
|
10182
|
+
name: "any",
|
|
10183
|
+
},
|
|
10184
|
+
}, loadBalanceTimeout: {
|
|
10185
|
+
serializedName: "typeProperties.loadBalanceTimeout",
|
|
10186
|
+
type: {
|
|
10187
|
+
name: "any",
|
|
10188
|
+
},
|
|
10189
|
+
}, commandTimeout: {
|
|
10190
|
+
serializedName: "typeProperties.commandTimeout",
|
|
10191
|
+
type: {
|
|
10192
|
+
name: "any",
|
|
10193
|
+
},
|
|
10194
|
+
}, integratedSecurity: {
|
|
10195
|
+
serializedName: "typeProperties.integratedSecurity",
|
|
10196
|
+
type: {
|
|
10197
|
+
name: "any",
|
|
10198
|
+
},
|
|
10199
|
+
}, failoverPartner: {
|
|
10200
|
+
serializedName: "typeProperties.failoverPartner",
|
|
10201
|
+
type: {
|
|
10202
|
+
name: "any",
|
|
10203
|
+
},
|
|
10204
|
+
}, maxPoolSize: {
|
|
10205
|
+
serializedName: "typeProperties.maxPoolSize",
|
|
10206
|
+
type: {
|
|
10207
|
+
name: "any",
|
|
10208
|
+
},
|
|
10209
|
+
}, minPoolSize: {
|
|
10210
|
+
serializedName: "typeProperties.minPoolSize",
|
|
10211
|
+
type: {
|
|
10212
|
+
name: "any",
|
|
10213
|
+
},
|
|
10214
|
+
}, multipleActiveResultSets: {
|
|
10215
|
+
serializedName: "typeProperties.multipleActiveResultSets",
|
|
10216
|
+
type: {
|
|
10217
|
+
name: "any",
|
|
10218
|
+
},
|
|
10219
|
+
}, multiSubnetFailover: {
|
|
10220
|
+
serializedName: "typeProperties.multiSubnetFailover",
|
|
10221
|
+
type: {
|
|
10222
|
+
name: "any",
|
|
10223
|
+
},
|
|
10224
|
+
}, packetSize: {
|
|
10225
|
+
serializedName: "typeProperties.packetSize",
|
|
10226
|
+
type: {
|
|
10227
|
+
name: "any",
|
|
10228
|
+
},
|
|
10229
|
+
}, pooling: {
|
|
10230
|
+
serializedName: "typeProperties.pooling",
|
|
10231
|
+
type: {
|
|
10232
|
+
name: "any",
|
|
10233
|
+
},
|
|
10234
|
+
}, connectionString: {
|
|
9844
10235
|
serializedName: "typeProperties.connectionString",
|
|
9845
|
-
required: true,
|
|
9846
10236
|
type: {
|
|
9847
10237
|
name: "any",
|
|
9848
10238
|
},
|
|
10239
|
+
}, authenticationType: {
|
|
10240
|
+
serializedName: "typeProperties.authenticationType",
|
|
10241
|
+
type: {
|
|
10242
|
+
name: "String",
|
|
10243
|
+
},
|
|
9849
10244
|
}, userName: {
|
|
9850
10245
|
serializedName: "typeProperties.userName",
|
|
9851
10246
|
type: {
|
|
@@ -9879,12 +10274,111 @@ const AmazonRdsForSqlServerLinkedService = {
|
|
|
9879
10274
|
uberParent: "LinkedService",
|
|
9880
10275
|
additionalProperties: { type: { name: "Object" } },
|
|
9881
10276
|
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
9882
|
-
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), {
|
|
10277
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { server: {
|
|
10278
|
+
serializedName: "typeProperties.server",
|
|
10279
|
+
type: {
|
|
10280
|
+
name: "any",
|
|
10281
|
+
},
|
|
10282
|
+
}, database: {
|
|
10283
|
+
serializedName: "typeProperties.database",
|
|
10284
|
+
type: {
|
|
10285
|
+
name: "any",
|
|
10286
|
+
},
|
|
10287
|
+
}, encrypt: {
|
|
10288
|
+
serializedName: "typeProperties.encrypt",
|
|
10289
|
+
type: {
|
|
10290
|
+
name: "any",
|
|
10291
|
+
},
|
|
10292
|
+
}, trustServerCertificate: {
|
|
10293
|
+
serializedName: "typeProperties.trustServerCertificate",
|
|
10294
|
+
type: {
|
|
10295
|
+
name: "any",
|
|
10296
|
+
},
|
|
10297
|
+
}, hostNameInCertificate: {
|
|
10298
|
+
serializedName: "typeProperties.hostNameInCertificate",
|
|
10299
|
+
type: {
|
|
10300
|
+
name: "any",
|
|
10301
|
+
},
|
|
10302
|
+
}, applicationIntent: {
|
|
10303
|
+
serializedName: "typeProperties.applicationIntent",
|
|
10304
|
+
type: {
|
|
10305
|
+
name: "any",
|
|
10306
|
+
},
|
|
10307
|
+
}, connectTimeout: {
|
|
10308
|
+
serializedName: "typeProperties.connectTimeout",
|
|
10309
|
+
type: {
|
|
10310
|
+
name: "any",
|
|
10311
|
+
},
|
|
10312
|
+
}, connectRetryCount: {
|
|
10313
|
+
serializedName: "typeProperties.connectRetryCount",
|
|
10314
|
+
type: {
|
|
10315
|
+
name: "any",
|
|
10316
|
+
},
|
|
10317
|
+
}, connectRetryInterval: {
|
|
10318
|
+
serializedName: "typeProperties.connectRetryInterval",
|
|
10319
|
+
type: {
|
|
10320
|
+
name: "any",
|
|
10321
|
+
},
|
|
10322
|
+
}, loadBalanceTimeout: {
|
|
10323
|
+
serializedName: "typeProperties.loadBalanceTimeout",
|
|
10324
|
+
type: {
|
|
10325
|
+
name: "any",
|
|
10326
|
+
},
|
|
10327
|
+
}, commandTimeout: {
|
|
10328
|
+
serializedName: "typeProperties.commandTimeout",
|
|
10329
|
+
type: {
|
|
10330
|
+
name: "any",
|
|
10331
|
+
},
|
|
10332
|
+
}, integratedSecurity: {
|
|
10333
|
+
serializedName: "typeProperties.integratedSecurity",
|
|
10334
|
+
type: {
|
|
10335
|
+
name: "any",
|
|
10336
|
+
},
|
|
10337
|
+
}, failoverPartner: {
|
|
10338
|
+
serializedName: "typeProperties.failoverPartner",
|
|
10339
|
+
type: {
|
|
10340
|
+
name: "any",
|
|
10341
|
+
},
|
|
10342
|
+
}, maxPoolSize: {
|
|
10343
|
+
serializedName: "typeProperties.maxPoolSize",
|
|
10344
|
+
type: {
|
|
10345
|
+
name: "any",
|
|
10346
|
+
},
|
|
10347
|
+
}, minPoolSize: {
|
|
10348
|
+
serializedName: "typeProperties.minPoolSize",
|
|
10349
|
+
type: {
|
|
10350
|
+
name: "any",
|
|
10351
|
+
},
|
|
10352
|
+
}, multipleActiveResultSets: {
|
|
10353
|
+
serializedName: "typeProperties.multipleActiveResultSets",
|
|
10354
|
+
type: {
|
|
10355
|
+
name: "any",
|
|
10356
|
+
},
|
|
10357
|
+
}, multiSubnetFailover: {
|
|
10358
|
+
serializedName: "typeProperties.multiSubnetFailover",
|
|
10359
|
+
type: {
|
|
10360
|
+
name: "any",
|
|
10361
|
+
},
|
|
10362
|
+
}, packetSize: {
|
|
10363
|
+
serializedName: "typeProperties.packetSize",
|
|
10364
|
+
type: {
|
|
10365
|
+
name: "any",
|
|
10366
|
+
},
|
|
10367
|
+
}, pooling: {
|
|
10368
|
+
serializedName: "typeProperties.pooling",
|
|
10369
|
+
type: {
|
|
10370
|
+
name: "any",
|
|
10371
|
+
},
|
|
10372
|
+
}, connectionString: {
|
|
9883
10373
|
serializedName: "typeProperties.connectionString",
|
|
9884
|
-
required: true,
|
|
9885
10374
|
type: {
|
|
9886
10375
|
name: "any",
|
|
9887
10376
|
},
|
|
10377
|
+
}, authenticationType: {
|
|
10378
|
+
serializedName: "typeProperties.authenticationType",
|
|
10379
|
+
type: {
|
|
10380
|
+
name: "String",
|
|
10381
|
+
},
|
|
9888
10382
|
}, userName: {
|
|
9889
10383
|
serializedName: "typeProperties.userName",
|
|
9890
10384
|
type: {
|
|
@@ -9918,9 +10412,113 @@ const AzureSqlDatabaseLinkedService = {
|
|
|
9918
10412
|
uberParent: "LinkedService",
|
|
9919
10413
|
additionalProperties: { type: { name: "Object" } },
|
|
9920
10414
|
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
9921
|
-
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), {
|
|
10415
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { server: {
|
|
10416
|
+
serializedName: "typeProperties.server",
|
|
10417
|
+
type: {
|
|
10418
|
+
name: "any",
|
|
10419
|
+
},
|
|
10420
|
+
}, database: {
|
|
10421
|
+
serializedName: "typeProperties.database",
|
|
10422
|
+
type: {
|
|
10423
|
+
name: "any",
|
|
10424
|
+
},
|
|
10425
|
+
}, encrypt: {
|
|
10426
|
+
serializedName: "typeProperties.encrypt",
|
|
10427
|
+
type: {
|
|
10428
|
+
name: "any",
|
|
10429
|
+
},
|
|
10430
|
+
}, trustServerCertificate: {
|
|
10431
|
+
serializedName: "typeProperties.trustServerCertificate",
|
|
10432
|
+
type: {
|
|
10433
|
+
name: "any",
|
|
10434
|
+
},
|
|
10435
|
+
}, hostNameInCertificate: {
|
|
10436
|
+
serializedName: "typeProperties.hostNameInCertificate",
|
|
10437
|
+
type: {
|
|
10438
|
+
name: "any",
|
|
10439
|
+
},
|
|
10440
|
+
}, applicationIntent: {
|
|
10441
|
+
serializedName: "typeProperties.applicationIntent",
|
|
10442
|
+
type: {
|
|
10443
|
+
name: "any",
|
|
10444
|
+
},
|
|
10445
|
+
}, connectTimeout: {
|
|
10446
|
+
serializedName: "typeProperties.connectTimeout",
|
|
10447
|
+
type: {
|
|
10448
|
+
name: "any",
|
|
10449
|
+
},
|
|
10450
|
+
}, connectRetryCount: {
|
|
10451
|
+
serializedName: "typeProperties.connectRetryCount",
|
|
10452
|
+
type: {
|
|
10453
|
+
name: "any",
|
|
10454
|
+
},
|
|
10455
|
+
}, connectRetryInterval: {
|
|
10456
|
+
serializedName: "typeProperties.connectRetryInterval",
|
|
10457
|
+
type: {
|
|
10458
|
+
name: "any",
|
|
10459
|
+
},
|
|
10460
|
+
}, loadBalanceTimeout: {
|
|
10461
|
+
serializedName: "typeProperties.loadBalanceTimeout",
|
|
10462
|
+
type: {
|
|
10463
|
+
name: "any",
|
|
10464
|
+
},
|
|
10465
|
+
}, commandTimeout: {
|
|
10466
|
+
serializedName: "typeProperties.commandTimeout",
|
|
10467
|
+
type: {
|
|
10468
|
+
name: "any",
|
|
10469
|
+
},
|
|
10470
|
+
}, integratedSecurity: {
|
|
10471
|
+
serializedName: "typeProperties.integratedSecurity",
|
|
10472
|
+
type: {
|
|
10473
|
+
name: "any",
|
|
10474
|
+
},
|
|
10475
|
+
}, failoverPartner: {
|
|
10476
|
+
serializedName: "typeProperties.failoverPartner",
|
|
10477
|
+
type: {
|
|
10478
|
+
name: "any",
|
|
10479
|
+
},
|
|
10480
|
+
}, maxPoolSize: {
|
|
10481
|
+
serializedName: "typeProperties.maxPoolSize",
|
|
10482
|
+
type: {
|
|
10483
|
+
name: "any",
|
|
10484
|
+
},
|
|
10485
|
+
}, minPoolSize: {
|
|
10486
|
+
serializedName: "typeProperties.minPoolSize",
|
|
10487
|
+
type: {
|
|
10488
|
+
name: "any",
|
|
10489
|
+
},
|
|
10490
|
+
}, multipleActiveResultSets: {
|
|
10491
|
+
serializedName: "typeProperties.multipleActiveResultSets",
|
|
10492
|
+
type: {
|
|
10493
|
+
name: "any",
|
|
10494
|
+
},
|
|
10495
|
+
}, multiSubnetFailover: {
|
|
10496
|
+
serializedName: "typeProperties.multiSubnetFailover",
|
|
10497
|
+
type: {
|
|
10498
|
+
name: "any",
|
|
10499
|
+
},
|
|
10500
|
+
}, packetSize: {
|
|
10501
|
+
serializedName: "typeProperties.packetSize",
|
|
10502
|
+
type: {
|
|
10503
|
+
name: "any",
|
|
10504
|
+
},
|
|
10505
|
+
}, pooling: {
|
|
10506
|
+
serializedName: "typeProperties.pooling",
|
|
10507
|
+
type: {
|
|
10508
|
+
name: "any",
|
|
10509
|
+
},
|
|
10510
|
+
}, connectionString: {
|
|
9922
10511
|
serializedName: "typeProperties.connectionString",
|
|
9923
|
-
|
|
10512
|
+
type: {
|
|
10513
|
+
name: "any",
|
|
10514
|
+
},
|
|
10515
|
+
}, authenticationType: {
|
|
10516
|
+
serializedName: "typeProperties.authenticationType",
|
|
10517
|
+
type: {
|
|
10518
|
+
name: "String",
|
|
10519
|
+
},
|
|
10520
|
+
}, userName: {
|
|
10521
|
+
serializedName: "typeProperties.userName",
|
|
9924
10522
|
type: {
|
|
9925
10523
|
name: "any",
|
|
9926
10524
|
},
|
|
@@ -9941,6 +10539,17 @@ const AzureSqlDatabaseLinkedService = {
|
|
|
9941
10539
|
name: "Composite",
|
|
9942
10540
|
className: "SecretBase",
|
|
9943
10541
|
},
|
|
10542
|
+
}, servicePrincipalCredentialType: {
|
|
10543
|
+
serializedName: "typeProperties.servicePrincipalCredentialType",
|
|
10544
|
+
type: {
|
|
10545
|
+
name: "any",
|
|
10546
|
+
},
|
|
10547
|
+
}, servicePrincipalCredential: {
|
|
10548
|
+
serializedName: "typeProperties.servicePrincipalCredential",
|
|
10549
|
+
type: {
|
|
10550
|
+
name: "Composite",
|
|
10551
|
+
className: "SecretBase",
|
|
10552
|
+
},
|
|
9944
10553
|
}, tenant: {
|
|
9945
10554
|
serializedName: "typeProperties.tenant",
|
|
9946
10555
|
type: {
|
|
@@ -9979,9 +10588,113 @@ const AzureSqlMILinkedService = {
|
|
|
9979
10588
|
uberParent: "LinkedService",
|
|
9980
10589
|
additionalProperties: { type: { name: "Object" } },
|
|
9981
10590
|
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
9982
|
-
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), {
|
|
10591
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { server: {
|
|
10592
|
+
serializedName: "typeProperties.server",
|
|
10593
|
+
type: {
|
|
10594
|
+
name: "any",
|
|
10595
|
+
},
|
|
10596
|
+
}, database: {
|
|
10597
|
+
serializedName: "typeProperties.database",
|
|
10598
|
+
type: {
|
|
10599
|
+
name: "any",
|
|
10600
|
+
},
|
|
10601
|
+
}, encrypt: {
|
|
10602
|
+
serializedName: "typeProperties.encrypt",
|
|
10603
|
+
type: {
|
|
10604
|
+
name: "any",
|
|
10605
|
+
},
|
|
10606
|
+
}, trustServerCertificate: {
|
|
10607
|
+
serializedName: "typeProperties.trustServerCertificate",
|
|
10608
|
+
type: {
|
|
10609
|
+
name: "any",
|
|
10610
|
+
},
|
|
10611
|
+
}, hostNameInCertificate: {
|
|
10612
|
+
serializedName: "typeProperties.hostNameInCertificate",
|
|
10613
|
+
type: {
|
|
10614
|
+
name: "any",
|
|
10615
|
+
},
|
|
10616
|
+
}, applicationIntent: {
|
|
10617
|
+
serializedName: "typeProperties.applicationIntent",
|
|
10618
|
+
type: {
|
|
10619
|
+
name: "any",
|
|
10620
|
+
},
|
|
10621
|
+
}, connectTimeout: {
|
|
10622
|
+
serializedName: "typeProperties.connectTimeout",
|
|
10623
|
+
type: {
|
|
10624
|
+
name: "any",
|
|
10625
|
+
},
|
|
10626
|
+
}, connectRetryCount: {
|
|
10627
|
+
serializedName: "typeProperties.connectRetryCount",
|
|
10628
|
+
type: {
|
|
10629
|
+
name: "any",
|
|
10630
|
+
},
|
|
10631
|
+
}, connectRetryInterval: {
|
|
10632
|
+
serializedName: "typeProperties.connectRetryInterval",
|
|
10633
|
+
type: {
|
|
10634
|
+
name: "any",
|
|
10635
|
+
},
|
|
10636
|
+
}, loadBalanceTimeout: {
|
|
10637
|
+
serializedName: "typeProperties.loadBalanceTimeout",
|
|
10638
|
+
type: {
|
|
10639
|
+
name: "any",
|
|
10640
|
+
},
|
|
10641
|
+
}, commandTimeout: {
|
|
10642
|
+
serializedName: "typeProperties.commandTimeout",
|
|
10643
|
+
type: {
|
|
10644
|
+
name: "any",
|
|
10645
|
+
},
|
|
10646
|
+
}, integratedSecurity: {
|
|
10647
|
+
serializedName: "typeProperties.integratedSecurity",
|
|
10648
|
+
type: {
|
|
10649
|
+
name: "any",
|
|
10650
|
+
},
|
|
10651
|
+
}, failoverPartner: {
|
|
10652
|
+
serializedName: "typeProperties.failoverPartner",
|
|
10653
|
+
type: {
|
|
10654
|
+
name: "any",
|
|
10655
|
+
},
|
|
10656
|
+
}, maxPoolSize: {
|
|
10657
|
+
serializedName: "typeProperties.maxPoolSize",
|
|
10658
|
+
type: {
|
|
10659
|
+
name: "any",
|
|
10660
|
+
},
|
|
10661
|
+
}, minPoolSize: {
|
|
10662
|
+
serializedName: "typeProperties.minPoolSize",
|
|
10663
|
+
type: {
|
|
10664
|
+
name: "any",
|
|
10665
|
+
},
|
|
10666
|
+
}, multipleActiveResultSets: {
|
|
10667
|
+
serializedName: "typeProperties.multipleActiveResultSets",
|
|
10668
|
+
type: {
|
|
10669
|
+
name: "any",
|
|
10670
|
+
},
|
|
10671
|
+
}, multiSubnetFailover: {
|
|
10672
|
+
serializedName: "typeProperties.multiSubnetFailover",
|
|
10673
|
+
type: {
|
|
10674
|
+
name: "any",
|
|
10675
|
+
},
|
|
10676
|
+
}, packetSize: {
|
|
10677
|
+
serializedName: "typeProperties.packetSize",
|
|
10678
|
+
type: {
|
|
10679
|
+
name: "any",
|
|
10680
|
+
},
|
|
10681
|
+
}, pooling: {
|
|
10682
|
+
serializedName: "typeProperties.pooling",
|
|
10683
|
+
type: {
|
|
10684
|
+
name: "any",
|
|
10685
|
+
},
|
|
10686
|
+
}, connectionString: {
|
|
9983
10687
|
serializedName: "typeProperties.connectionString",
|
|
9984
|
-
|
|
10688
|
+
type: {
|
|
10689
|
+
name: "any",
|
|
10690
|
+
},
|
|
10691
|
+
}, authenticationType: {
|
|
10692
|
+
serializedName: "typeProperties.authenticationType",
|
|
10693
|
+
type: {
|
|
10694
|
+
name: "String",
|
|
10695
|
+
},
|
|
10696
|
+
}, userName: {
|
|
10697
|
+
serializedName: "typeProperties.userName",
|
|
9985
10698
|
type: {
|
|
9986
10699
|
name: "any",
|
|
9987
10700
|
},
|
|
@@ -10002,6 +10715,17 @@ const AzureSqlMILinkedService = {
|
|
|
10002
10715
|
name: "Composite",
|
|
10003
10716
|
className: "SecretBase",
|
|
10004
10717
|
},
|
|
10718
|
+
}, servicePrincipalCredentialType: {
|
|
10719
|
+
serializedName: "typeProperties.servicePrincipalCredentialType",
|
|
10720
|
+
type: {
|
|
10721
|
+
name: "any",
|
|
10722
|
+
},
|
|
10723
|
+
}, servicePrincipalCredential: {
|
|
10724
|
+
serializedName: "typeProperties.servicePrincipalCredential",
|
|
10725
|
+
type: {
|
|
10726
|
+
name: "Composite",
|
|
10727
|
+
className: "SecretBase",
|
|
10728
|
+
},
|
|
10005
10729
|
}, tenant: {
|
|
10006
10730
|
serializedName: "typeProperties.tenant",
|
|
10007
10731
|
type: {
|
|
@@ -10329,6 +11053,12 @@ const DynamicsCrmLinkedService = {
|
|
|
10329
11053
|
name: "Composite",
|
|
10330
11054
|
className: "SecretBase",
|
|
10331
11055
|
},
|
|
11056
|
+
}, credential: {
|
|
11057
|
+
serializedName: "typeProperties.credential",
|
|
11058
|
+
type: {
|
|
11059
|
+
name: "Composite",
|
|
11060
|
+
className: "CredentialReference",
|
|
11061
|
+
},
|
|
10332
11062
|
}, encryptedCredential: {
|
|
10333
11063
|
serializedName: "typeProperties.encryptedCredential",
|
|
10334
11064
|
type: {
|
|
@@ -18042,7 +18772,12 @@ const LakeHouseTableDataset = {
|
|
|
18042
18772
|
uberParent: "Dataset",
|
|
18043
18773
|
additionalProperties: { type: { name: "Object" } },
|
|
18044
18774
|
polymorphicDiscriminator: Dataset.type.polymorphicDiscriminator,
|
|
18045
|
-
modelProperties: Object.assign(Object.assign({}, Dataset.type.modelProperties), {
|
|
18775
|
+
modelProperties: Object.assign(Object.assign({}, Dataset.type.modelProperties), { schemaTypePropertiesSchema: {
|
|
18776
|
+
serializedName: "typeProperties.schema",
|
|
18777
|
+
type: {
|
|
18778
|
+
name: "any",
|
|
18779
|
+
},
|
|
18780
|
+
}, table: {
|
|
18046
18781
|
serializedName: "typeProperties.table",
|
|
18047
18782
|
type: {
|
|
18048
18783
|
name: "any",
|
|
@@ -18617,17 +19352,6 @@ const LinkedServiceDebugResource = {
|
|
|
18617
19352
|
} }),
|
|
18618
19353
|
},
|
|
18619
19354
|
};
|
|
18620
|
-
const ManagedIdentityCredential = {
|
|
18621
|
-
serializedName: "ManagedIdentity",
|
|
18622
|
-
type: {
|
|
18623
|
-
name: "Composite",
|
|
18624
|
-
className: "ManagedIdentityCredential",
|
|
18625
|
-
uberParent: "Credential",
|
|
18626
|
-
additionalProperties: { type: { name: "Object" } },
|
|
18627
|
-
polymorphicDiscriminator: Credential.type.polymorphicDiscriminator,
|
|
18628
|
-
modelProperties: Object.assign({}, Credential.type.modelProperties),
|
|
18629
|
-
},
|
|
18630
|
-
};
|
|
18631
19355
|
const ServicePrincipalCredential = {
|
|
18632
19356
|
serializedName: "ServicePrincipal",
|
|
18633
19357
|
type: {
|
|
@@ -18655,6 +19379,22 @@ const ServicePrincipalCredential = {
|
|
|
18655
19379
|
} }),
|
|
18656
19380
|
},
|
|
18657
19381
|
};
|
|
19382
|
+
const ManagedIdentityCredential = {
|
|
19383
|
+
serializedName: "ManagedIdentity",
|
|
19384
|
+
type: {
|
|
19385
|
+
name: "Composite",
|
|
19386
|
+
className: "ManagedIdentityCredential",
|
|
19387
|
+
uberParent: "Credential",
|
|
19388
|
+
additionalProperties: { type: { name: "Object" } },
|
|
19389
|
+
polymorphicDiscriminator: Credential.type.polymorphicDiscriminator,
|
|
19390
|
+
modelProperties: Object.assign(Object.assign({}, Credential.type.modelProperties), { resourceId: {
|
|
19391
|
+
serializedName: "typeProperties.resourceId",
|
|
19392
|
+
type: {
|
|
19393
|
+
name: "String",
|
|
19394
|
+
},
|
|
19395
|
+
} }),
|
|
19396
|
+
},
|
|
19397
|
+
};
|
|
18658
19398
|
const SecureString = {
|
|
18659
19399
|
serializedName: "SecureString",
|
|
18660
19400
|
type: {
|
|
@@ -19190,6 +19930,309 @@ const LinkedIntegrationRuntimeRbacAuthorization = {
|
|
|
19190
19930
|
} }),
|
|
19191
19931
|
},
|
|
19192
19932
|
};
|
|
19933
|
+
const AzureSqlDWLinkedServiceTypeProperties = {
|
|
19934
|
+
type: {
|
|
19935
|
+
name: "Composite",
|
|
19936
|
+
className: "AzureSqlDWLinkedServiceTypeProperties",
|
|
19937
|
+
modelProperties: Object.assign(Object.assign({}, SqlServerBaseLinkedServiceTypeProperties.type.modelProperties), { connectionString: {
|
|
19938
|
+
serializedName: "connectionString",
|
|
19939
|
+
type: {
|
|
19940
|
+
name: "any",
|
|
19941
|
+
},
|
|
19942
|
+
}, authenticationType: {
|
|
19943
|
+
serializedName: "authenticationType",
|
|
19944
|
+
type: {
|
|
19945
|
+
name: "String",
|
|
19946
|
+
},
|
|
19947
|
+
}, userName: {
|
|
19948
|
+
serializedName: "userName",
|
|
19949
|
+
type: {
|
|
19950
|
+
name: "any",
|
|
19951
|
+
},
|
|
19952
|
+
}, password: {
|
|
19953
|
+
serializedName: "password",
|
|
19954
|
+
type: {
|
|
19955
|
+
name: "Composite",
|
|
19956
|
+
className: "AzureKeyVaultSecretReference",
|
|
19957
|
+
},
|
|
19958
|
+
}, servicePrincipalId: {
|
|
19959
|
+
serializedName: "servicePrincipalId",
|
|
19960
|
+
type: {
|
|
19961
|
+
name: "any",
|
|
19962
|
+
},
|
|
19963
|
+
}, servicePrincipalKey: {
|
|
19964
|
+
serializedName: "servicePrincipalKey",
|
|
19965
|
+
type: {
|
|
19966
|
+
name: "Composite",
|
|
19967
|
+
className: "SecretBase",
|
|
19968
|
+
},
|
|
19969
|
+
}, servicePrincipalCredentialType: {
|
|
19970
|
+
serializedName: "servicePrincipalCredentialType",
|
|
19971
|
+
type: {
|
|
19972
|
+
name: "any",
|
|
19973
|
+
},
|
|
19974
|
+
}, servicePrincipalCredential: {
|
|
19975
|
+
serializedName: "servicePrincipalCredential",
|
|
19976
|
+
type: {
|
|
19977
|
+
name: "Composite",
|
|
19978
|
+
className: "SecretBase",
|
|
19979
|
+
},
|
|
19980
|
+
}, tenant: {
|
|
19981
|
+
serializedName: "tenant",
|
|
19982
|
+
type: {
|
|
19983
|
+
name: "any",
|
|
19984
|
+
},
|
|
19985
|
+
}, azureCloudType: {
|
|
19986
|
+
serializedName: "azureCloudType",
|
|
19987
|
+
type: {
|
|
19988
|
+
name: "any",
|
|
19989
|
+
},
|
|
19990
|
+
}, encryptedCredential: {
|
|
19991
|
+
serializedName: "encryptedCredential",
|
|
19992
|
+
type: {
|
|
19993
|
+
name: "String",
|
|
19994
|
+
},
|
|
19995
|
+
}, credential: {
|
|
19996
|
+
serializedName: "credential",
|
|
19997
|
+
type: {
|
|
19998
|
+
name: "Composite",
|
|
19999
|
+
className: "CredentialReference",
|
|
20000
|
+
},
|
|
20001
|
+
} }),
|
|
20002
|
+
},
|
|
20003
|
+
};
|
|
20004
|
+
const SqlServerLinkedServiceTypeProperties = {
|
|
20005
|
+
type: {
|
|
20006
|
+
name: "Composite",
|
|
20007
|
+
className: "SqlServerLinkedServiceTypeProperties",
|
|
20008
|
+
modelProperties: Object.assign(Object.assign({}, SqlServerBaseLinkedServiceTypeProperties.type.modelProperties), { connectionString: {
|
|
20009
|
+
serializedName: "connectionString",
|
|
20010
|
+
type: {
|
|
20011
|
+
name: "any",
|
|
20012
|
+
},
|
|
20013
|
+
}, authenticationType: {
|
|
20014
|
+
serializedName: "authenticationType",
|
|
20015
|
+
type: {
|
|
20016
|
+
name: "String",
|
|
20017
|
+
},
|
|
20018
|
+
}, userName: {
|
|
20019
|
+
serializedName: "userName",
|
|
20020
|
+
type: {
|
|
20021
|
+
name: "any",
|
|
20022
|
+
},
|
|
20023
|
+
}, password: {
|
|
20024
|
+
serializedName: "password",
|
|
20025
|
+
type: {
|
|
20026
|
+
name: "Composite",
|
|
20027
|
+
className: "SecretBase",
|
|
20028
|
+
},
|
|
20029
|
+
}, encryptedCredential: {
|
|
20030
|
+
serializedName: "encryptedCredential",
|
|
20031
|
+
type: {
|
|
20032
|
+
name: "String",
|
|
20033
|
+
},
|
|
20034
|
+
}, alwaysEncryptedSettings: {
|
|
20035
|
+
serializedName: "alwaysEncryptedSettings",
|
|
20036
|
+
type: {
|
|
20037
|
+
name: "Composite",
|
|
20038
|
+
className: "SqlAlwaysEncryptedProperties",
|
|
20039
|
+
},
|
|
20040
|
+
} }),
|
|
20041
|
+
},
|
|
20042
|
+
};
|
|
20043
|
+
const AmazonRdsForSqlServerLinkedServiceTypeProperties = {
|
|
20044
|
+
type: {
|
|
20045
|
+
name: "Composite",
|
|
20046
|
+
className: "AmazonRdsForSqlServerLinkedServiceTypeProperties",
|
|
20047
|
+
modelProperties: Object.assign(Object.assign({}, SqlServerBaseLinkedServiceTypeProperties.type.modelProperties), { connectionString: {
|
|
20048
|
+
serializedName: "connectionString",
|
|
20049
|
+
type: {
|
|
20050
|
+
name: "any",
|
|
20051
|
+
},
|
|
20052
|
+
}, authenticationType: {
|
|
20053
|
+
serializedName: "authenticationType",
|
|
20054
|
+
type: {
|
|
20055
|
+
name: "String",
|
|
20056
|
+
},
|
|
20057
|
+
}, userName: {
|
|
20058
|
+
serializedName: "userName",
|
|
20059
|
+
type: {
|
|
20060
|
+
name: "any",
|
|
20061
|
+
},
|
|
20062
|
+
}, password: {
|
|
20063
|
+
serializedName: "password",
|
|
20064
|
+
type: {
|
|
20065
|
+
name: "Composite",
|
|
20066
|
+
className: "SecretBase",
|
|
20067
|
+
},
|
|
20068
|
+
}, encryptedCredential: {
|
|
20069
|
+
serializedName: "encryptedCredential",
|
|
20070
|
+
type: {
|
|
20071
|
+
name: "String",
|
|
20072
|
+
},
|
|
20073
|
+
}, alwaysEncryptedSettings: {
|
|
20074
|
+
serializedName: "alwaysEncryptedSettings",
|
|
20075
|
+
type: {
|
|
20076
|
+
name: "Composite",
|
|
20077
|
+
className: "SqlAlwaysEncryptedProperties",
|
|
20078
|
+
},
|
|
20079
|
+
} }),
|
|
20080
|
+
},
|
|
20081
|
+
};
|
|
20082
|
+
const AzureSqlDatabaseLinkedServiceTypeProperties = {
|
|
20083
|
+
type: {
|
|
20084
|
+
name: "Composite",
|
|
20085
|
+
className: "AzureSqlDatabaseLinkedServiceTypeProperties",
|
|
20086
|
+
modelProperties: Object.assign(Object.assign({}, SqlServerBaseLinkedServiceTypeProperties.type.modelProperties), { connectionString: {
|
|
20087
|
+
serializedName: "connectionString",
|
|
20088
|
+
type: {
|
|
20089
|
+
name: "any",
|
|
20090
|
+
},
|
|
20091
|
+
}, authenticationType: {
|
|
20092
|
+
serializedName: "authenticationType",
|
|
20093
|
+
type: {
|
|
20094
|
+
name: "String",
|
|
20095
|
+
},
|
|
20096
|
+
}, userName: {
|
|
20097
|
+
serializedName: "userName",
|
|
20098
|
+
type: {
|
|
20099
|
+
name: "any",
|
|
20100
|
+
},
|
|
20101
|
+
}, password: {
|
|
20102
|
+
serializedName: "password",
|
|
20103
|
+
type: {
|
|
20104
|
+
name: "Composite",
|
|
20105
|
+
className: "AzureKeyVaultSecretReference",
|
|
20106
|
+
},
|
|
20107
|
+
}, servicePrincipalId: {
|
|
20108
|
+
serializedName: "servicePrincipalId",
|
|
20109
|
+
type: {
|
|
20110
|
+
name: "any",
|
|
20111
|
+
},
|
|
20112
|
+
}, servicePrincipalKey: {
|
|
20113
|
+
serializedName: "servicePrincipalKey",
|
|
20114
|
+
type: {
|
|
20115
|
+
name: "Composite",
|
|
20116
|
+
className: "SecretBase",
|
|
20117
|
+
},
|
|
20118
|
+
}, servicePrincipalCredentialType: {
|
|
20119
|
+
serializedName: "servicePrincipalCredentialType",
|
|
20120
|
+
type: {
|
|
20121
|
+
name: "any",
|
|
20122
|
+
},
|
|
20123
|
+
}, servicePrincipalCredential: {
|
|
20124
|
+
serializedName: "servicePrincipalCredential",
|
|
20125
|
+
type: {
|
|
20126
|
+
name: "Composite",
|
|
20127
|
+
className: "SecretBase",
|
|
20128
|
+
},
|
|
20129
|
+
}, tenant: {
|
|
20130
|
+
serializedName: "tenant",
|
|
20131
|
+
type: {
|
|
20132
|
+
name: "any",
|
|
20133
|
+
},
|
|
20134
|
+
}, azureCloudType: {
|
|
20135
|
+
serializedName: "azureCloudType",
|
|
20136
|
+
type: {
|
|
20137
|
+
name: "any",
|
|
20138
|
+
},
|
|
20139
|
+
}, encryptedCredential: {
|
|
20140
|
+
serializedName: "encryptedCredential",
|
|
20141
|
+
type: {
|
|
20142
|
+
name: "String",
|
|
20143
|
+
},
|
|
20144
|
+
}, alwaysEncryptedSettings: {
|
|
20145
|
+
serializedName: "alwaysEncryptedSettings",
|
|
20146
|
+
type: {
|
|
20147
|
+
name: "Composite",
|
|
20148
|
+
className: "SqlAlwaysEncryptedProperties",
|
|
20149
|
+
},
|
|
20150
|
+
}, credential: {
|
|
20151
|
+
serializedName: "credential",
|
|
20152
|
+
type: {
|
|
20153
|
+
name: "Composite",
|
|
20154
|
+
className: "CredentialReference",
|
|
20155
|
+
},
|
|
20156
|
+
} }),
|
|
20157
|
+
},
|
|
20158
|
+
};
|
|
20159
|
+
const AzureSqlMILinkedServiceTypeProperties = {
|
|
20160
|
+
type: {
|
|
20161
|
+
name: "Composite",
|
|
20162
|
+
className: "AzureSqlMILinkedServiceTypeProperties",
|
|
20163
|
+
modelProperties: Object.assign(Object.assign({}, SqlServerBaseLinkedServiceTypeProperties.type.modelProperties), { connectionString: {
|
|
20164
|
+
serializedName: "connectionString",
|
|
20165
|
+
type: {
|
|
20166
|
+
name: "any",
|
|
20167
|
+
},
|
|
20168
|
+
}, authenticationType: {
|
|
20169
|
+
serializedName: "authenticationType",
|
|
20170
|
+
type: {
|
|
20171
|
+
name: "String",
|
|
20172
|
+
},
|
|
20173
|
+
}, userName: {
|
|
20174
|
+
serializedName: "userName",
|
|
20175
|
+
type: {
|
|
20176
|
+
name: "any",
|
|
20177
|
+
},
|
|
20178
|
+
}, password: {
|
|
20179
|
+
serializedName: "password",
|
|
20180
|
+
type: {
|
|
20181
|
+
name: "Composite",
|
|
20182
|
+
className: "AzureKeyVaultSecretReference",
|
|
20183
|
+
},
|
|
20184
|
+
}, servicePrincipalId: {
|
|
20185
|
+
serializedName: "servicePrincipalId",
|
|
20186
|
+
type: {
|
|
20187
|
+
name: "any",
|
|
20188
|
+
},
|
|
20189
|
+
}, servicePrincipalKey: {
|
|
20190
|
+
serializedName: "servicePrincipalKey",
|
|
20191
|
+
type: {
|
|
20192
|
+
name: "Composite",
|
|
20193
|
+
className: "SecretBase",
|
|
20194
|
+
},
|
|
20195
|
+
}, servicePrincipalCredentialType: {
|
|
20196
|
+
serializedName: "servicePrincipalCredentialType",
|
|
20197
|
+
type: {
|
|
20198
|
+
name: "any",
|
|
20199
|
+
},
|
|
20200
|
+
}, servicePrincipalCredential: {
|
|
20201
|
+
serializedName: "servicePrincipalCredential",
|
|
20202
|
+
type: {
|
|
20203
|
+
name: "Composite",
|
|
20204
|
+
className: "SecretBase",
|
|
20205
|
+
},
|
|
20206
|
+
}, tenant: {
|
|
20207
|
+
serializedName: "tenant",
|
|
20208
|
+
type: {
|
|
20209
|
+
name: "any",
|
|
20210
|
+
},
|
|
20211
|
+
}, azureCloudType: {
|
|
20212
|
+
serializedName: "azureCloudType",
|
|
20213
|
+
type: {
|
|
20214
|
+
name: "any",
|
|
20215
|
+
},
|
|
20216
|
+
}, encryptedCredential: {
|
|
20217
|
+
serializedName: "encryptedCredential",
|
|
20218
|
+
type: {
|
|
20219
|
+
name: "String",
|
|
20220
|
+
},
|
|
20221
|
+
}, alwaysEncryptedSettings: {
|
|
20222
|
+
serializedName: "alwaysEncryptedSettings",
|
|
20223
|
+
type: {
|
|
20224
|
+
name: "Composite",
|
|
20225
|
+
className: "SqlAlwaysEncryptedProperties",
|
|
20226
|
+
},
|
|
20227
|
+
}, credential: {
|
|
20228
|
+
serializedName: "credential",
|
|
20229
|
+
type: {
|
|
20230
|
+
name: "Composite",
|
|
20231
|
+
className: "CredentialReference",
|
|
20232
|
+
},
|
|
20233
|
+
} }),
|
|
20234
|
+
},
|
|
20235
|
+
};
|
|
19193
20236
|
const WebAnonymousAuthentication = {
|
|
19194
20237
|
serializedName: "Anonymous",
|
|
19195
20238
|
type: {
|
|
@@ -21488,6 +22531,11 @@ const SalesforceServiceCloudV2Source = {
|
|
|
21488
22531
|
type: {
|
|
21489
22532
|
name: "any",
|
|
21490
22533
|
},
|
|
22534
|
+
}, query: {
|
|
22535
|
+
serializedName: "query",
|
|
22536
|
+
type: {
|
|
22537
|
+
name: "any",
|
|
22538
|
+
},
|
|
21491
22539
|
}, includeDeletedObjects: {
|
|
21492
22540
|
serializedName: "includeDeletedObjects",
|
|
21493
22541
|
type: {
|
|
@@ -22871,32 +23919,6 @@ const SelfDependencyTumblingWindowTriggerReference = {
|
|
|
22871
23919
|
} }),
|
|
22872
23920
|
},
|
|
22873
23921
|
};
|
|
22874
|
-
const ManagedIdentityCredentialResource = {
|
|
22875
|
-
type: {
|
|
22876
|
-
name: "Composite",
|
|
22877
|
-
className: "ManagedIdentityCredentialResource",
|
|
22878
|
-
modelProperties: Object.assign(Object.assign({}, CredentialResource.type.modelProperties), { properties: {
|
|
22879
|
-
serializedName: "properties",
|
|
22880
|
-
type: {
|
|
22881
|
-
name: "Composite",
|
|
22882
|
-
className: "ManagedIdentityCredential",
|
|
22883
|
-
},
|
|
22884
|
-
} }),
|
|
22885
|
-
},
|
|
22886
|
-
};
|
|
22887
|
-
const ServicePrincipalCredentialResource = {
|
|
22888
|
-
type: {
|
|
22889
|
-
name: "Composite",
|
|
22890
|
-
className: "ServicePrincipalCredentialResource",
|
|
22891
|
-
modelProperties: Object.assign(Object.assign({}, CredentialResource.type.modelProperties), { properties: {
|
|
22892
|
-
serializedName: "properties",
|
|
22893
|
-
type: {
|
|
22894
|
-
name: "Composite",
|
|
22895
|
-
className: "ServicePrincipalCredential",
|
|
22896
|
-
},
|
|
22897
|
-
} }),
|
|
22898
|
-
},
|
|
22899
|
-
};
|
|
22900
23922
|
const ExecutePipelineActivity = {
|
|
22901
23923
|
serializedName: "ExecutePipeline",
|
|
22902
23924
|
type: {
|
|
@@ -26240,6 +27262,11 @@ const SalesforceV2Source = {
|
|
|
26240
27262
|
type: {
|
|
26241
27263
|
name: "any",
|
|
26242
27264
|
},
|
|
27265
|
+
}, query: {
|
|
27266
|
+
serializedName: "query",
|
|
27267
|
+
type: {
|
|
27268
|
+
name: "any",
|
|
27269
|
+
},
|
|
26243
27270
|
}, includeDeletedObjects: {
|
|
26244
27271
|
serializedName: "includeDeletedObjects",
|
|
26245
27272
|
type: {
|
|
@@ -26596,8 +27623,8 @@ let discriminators = {
|
|
|
26596
27623
|
"DataFlow.MappingDataFlow": MappingDataFlow,
|
|
26597
27624
|
"DataFlow.Flowlet": Flowlet,
|
|
26598
27625
|
"DataFlow.WranglingDataFlow": WranglingDataFlow,
|
|
26599
|
-
"Credential.ManagedIdentity": ManagedIdentityCredential,
|
|
26600
27626
|
"Credential.ServicePrincipal": ServicePrincipalCredential,
|
|
27627
|
+
"Credential.ManagedIdentity": ManagedIdentityCredential,
|
|
26601
27628
|
"SecretBase.SecureString": SecureString,
|
|
26602
27629
|
"SecretBase.AzureKeyVaultSecret": AzureKeyVaultSecretReference,
|
|
26603
27630
|
"DatasetLocation.AzureBlobStorageLocation": AzureBlobStorageLocation,
|
|
@@ -26880,6 +27907,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
26880
27907
|
AmazonRdsForOracleSource: AmazonRdsForOracleSource,
|
|
26881
27908
|
AmazonRdsForOracleTableDataset: AmazonRdsForOracleTableDataset,
|
|
26882
27909
|
AmazonRdsForSqlServerLinkedService: AmazonRdsForSqlServerLinkedService,
|
|
27910
|
+
AmazonRdsForSqlServerLinkedServiceTypeProperties: AmazonRdsForSqlServerLinkedServiceTypeProperties,
|
|
26883
27911
|
AmazonRdsForSqlServerSource: AmazonRdsForSqlServerSource,
|
|
26884
27912
|
AmazonRdsForSqlServerTableDataset: AmazonRdsForSqlServerTableDataset,
|
|
26885
27913
|
AmazonRedshiftLinkedService: AmazonRedshiftLinkedService,
|
|
@@ -26965,9 +27993,12 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
26965
27993
|
AzureSearchIndexSink: AzureSearchIndexSink,
|
|
26966
27994
|
AzureSearchLinkedService: AzureSearchLinkedService,
|
|
26967
27995
|
AzureSqlDWLinkedService: AzureSqlDWLinkedService,
|
|
27996
|
+
AzureSqlDWLinkedServiceTypeProperties: AzureSqlDWLinkedServiceTypeProperties,
|
|
26968
27997
|
AzureSqlDWTableDataset: AzureSqlDWTableDataset,
|
|
26969
27998
|
AzureSqlDatabaseLinkedService: AzureSqlDatabaseLinkedService,
|
|
27999
|
+
AzureSqlDatabaseLinkedServiceTypeProperties: AzureSqlDatabaseLinkedServiceTypeProperties,
|
|
26970
28000
|
AzureSqlMILinkedService: AzureSqlMILinkedService,
|
|
28001
|
+
AzureSqlMILinkedServiceTypeProperties: AzureSqlMILinkedServiceTypeProperties,
|
|
26971
28002
|
AzureSqlMITableDataset: AzureSqlMITableDataset,
|
|
26972
28003
|
AzureSqlSink: AzureSqlSink,
|
|
26973
28004
|
AzureSqlSource: AzureSqlSource,
|
|
@@ -27273,7 +28304,6 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
27273
28304
|
MagentoObjectDataset: MagentoObjectDataset,
|
|
27274
28305
|
MagentoSource: MagentoSource,
|
|
27275
28306
|
ManagedIdentityCredential: ManagedIdentityCredential,
|
|
27276
|
-
ManagedIdentityCredentialResource: ManagedIdentityCredentialResource,
|
|
27277
28307
|
ManagedIntegrationRuntime: ManagedIntegrationRuntime,
|
|
27278
28308
|
ManagedIntegrationRuntimeError: ManagedIntegrationRuntimeError,
|
|
27279
28309
|
ManagedIntegrationRuntimeNode: ManagedIntegrationRuntimeNode,
|
|
@@ -27502,7 +28532,6 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
27502
28532
|
ServiceNowV2ObjectDataset: ServiceNowV2ObjectDataset,
|
|
27503
28533
|
ServiceNowV2Source: ServiceNowV2Source,
|
|
27504
28534
|
ServicePrincipalCredential: ServicePrincipalCredential,
|
|
27505
|
-
ServicePrincipalCredentialResource: ServicePrincipalCredentialResource,
|
|
27506
28535
|
SetVariableActivity: SetVariableActivity,
|
|
27507
28536
|
SftpLocation: SftpLocation,
|
|
27508
28537
|
SftpReadSettings: SftpReadSettings,
|
|
@@ -27537,7 +28566,9 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
27537
28566
|
SqlMISink: SqlMISink,
|
|
27538
28567
|
SqlMISource: SqlMISource,
|
|
27539
28568
|
SqlPartitionSettings: SqlPartitionSettings,
|
|
28569
|
+
SqlServerBaseLinkedServiceTypeProperties: SqlServerBaseLinkedServiceTypeProperties,
|
|
27540
28570
|
SqlServerLinkedService: SqlServerLinkedService,
|
|
28571
|
+
SqlServerLinkedServiceTypeProperties: SqlServerLinkedServiceTypeProperties,
|
|
27541
28572
|
SqlServerSink: SqlServerSink,
|
|
27542
28573
|
SqlServerSource: SqlServerSource,
|
|
27543
28574
|
SqlServerStoredProcedureActivity: SqlServerStoredProcedureActivity,
|
|
@@ -34106,7 +35137,7 @@ class DataFactoryManagementClient extends coreClient__namespace.ServiceClient {
|
|
|
34106
35137
|
requestContentType: "application/json; charset=utf-8",
|
|
34107
35138
|
credential: credentials,
|
|
34108
35139
|
};
|
|
34109
|
-
const packageDetails = `azsdk-js-arm-datafactory/
|
|
35140
|
+
const packageDetails = `azsdk-js-arm-datafactory/16.0.0`;
|
|
34110
35141
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
34111
35142
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
34112
35143
|
: `${packageDetails}`;
|