@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/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,149 @@
|
|
|
1
1
|
# Release History
|
|
2
|
+
|
|
3
|
+
## 16.0.0 (2024-06-11)
|
|
4
|
+
|
|
5
|
+
**Features**
|
|
2
6
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
- Added Interface AmazonRdsForSqlServerLinkedServiceTypeProperties
|
|
8
|
+
- Added Interface AzureSqlDatabaseLinkedServiceTypeProperties
|
|
9
|
+
- Added Interface AzureSqlDWLinkedServiceTypeProperties
|
|
10
|
+
- Added Interface AzureSqlMILinkedServiceTypeProperties
|
|
11
|
+
- Added Interface SqlServerBaseLinkedServiceTypeProperties
|
|
12
|
+
- Added Interface SqlServerLinkedServiceTypeProperties
|
|
13
|
+
- Added Type Alias AmazonRdsForSqlAuthenticationType
|
|
14
|
+
- Added Type Alias AzureSqlDatabaseAuthenticationType
|
|
15
|
+
- Added Type Alias AzureSqlDWAuthenticationType
|
|
16
|
+
- Added Type Alias AzureSqlMIAuthenticationType
|
|
17
|
+
- Added Type Alias SqlServerAuthenticationType
|
|
18
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter applicationIntent
|
|
19
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter authenticationType
|
|
20
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter commandTimeout
|
|
21
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter connectRetryCount
|
|
22
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter connectRetryInterval
|
|
23
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter connectTimeout
|
|
24
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter database
|
|
25
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter encrypt
|
|
26
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter failoverPartner
|
|
27
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter hostNameInCertificate
|
|
28
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter integratedSecurity
|
|
29
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter loadBalanceTimeout
|
|
30
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter maxPoolSize
|
|
31
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter minPoolSize
|
|
32
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter multipleActiveResultSets
|
|
33
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter multiSubnetFailover
|
|
34
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter packetSize
|
|
35
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter pooling
|
|
36
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter server
|
|
37
|
+
- Interface AmazonRdsForSqlServerLinkedService has a new optional parameter trustServerCertificate
|
|
38
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter applicationIntent
|
|
39
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter authenticationType
|
|
40
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter commandTimeout
|
|
41
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter connectRetryCount
|
|
42
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter connectRetryInterval
|
|
43
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter connectTimeout
|
|
44
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter database
|
|
45
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter encrypt
|
|
46
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter failoverPartner
|
|
47
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter hostNameInCertificate
|
|
48
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter integratedSecurity
|
|
49
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter loadBalanceTimeout
|
|
50
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter maxPoolSize
|
|
51
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter minPoolSize
|
|
52
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter multipleActiveResultSets
|
|
53
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter multiSubnetFailover
|
|
54
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter packetSize
|
|
55
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter pooling
|
|
56
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter server
|
|
57
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter servicePrincipalCredential
|
|
58
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter servicePrincipalCredentialType
|
|
59
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter trustServerCertificate
|
|
60
|
+
- Interface AzureSqlDatabaseLinkedService has a new optional parameter userName
|
|
61
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter applicationIntent
|
|
62
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter authenticationType
|
|
63
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter commandTimeout
|
|
64
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter connectRetryCount
|
|
65
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter connectRetryInterval
|
|
66
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter connectTimeout
|
|
67
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter database
|
|
68
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter encrypt
|
|
69
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter failoverPartner
|
|
70
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter hostNameInCertificate
|
|
71
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter integratedSecurity
|
|
72
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter loadBalanceTimeout
|
|
73
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter maxPoolSize
|
|
74
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter minPoolSize
|
|
75
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter multipleActiveResultSets
|
|
76
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter multiSubnetFailover
|
|
77
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter packetSize
|
|
78
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter pooling
|
|
79
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter server
|
|
80
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter servicePrincipalCredential
|
|
81
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter servicePrincipalCredentialType
|
|
82
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter trustServerCertificate
|
|
83
|
+
- Interface AzureSqlDWLinkedService has a new optional parameter userName
|
|
84
|
+
- Interface AzureSqlMILinkedService has a new optional parameter applicationIntent
|
|
85
|
+
- Interface AzureSqlMILinkedService has a new optional parameter authenticationType
|
|
86
|
+
- Interface AzureSqlMILinkedService has a new optional parameter commandTimeout
|
|
87
|
+
- Interface AzureSqlMILinkedService has a new optional parameter connectRetryCount
|
|
88
|
+
- Interface AzureSqlMILinkedService has a new optional parameter connectRetryInterval
|
|
89
|
+
- Interface AzureSqlMILinkedService has a new optional parameter connectTimeout
|
|
90
|
+
- Interface AzureSqlMILinkedService has a new optional parameter database
|
|
91
|
+
- Interface AzureSqlMILinkedService has a new optional parameter encrypt
|
|
92
|
+
- Interface AzureSqlMILinkedService has a new optional parameter failoverPartner
|
|
93
|
+
- Interface AzureSqlMILinkedService has a new optional parameter hostNameInCertificate
|
|
94
|
+
- Interface AzureSqlMILinkedService has a new optional parameter integratedSecurity
|
|
95
|
+
- Interface AzureSqlMILinkedService has a new optional parameter loadBalanceTimeout
|
|
96
|
+
- Interface AzureSqlMILinkedService has a new optional parameter maxPoolSize
|
|
97
|
+
- Interface AzureSqlMILinkedService has a new optional parameter minPoolSize
|
|
98
|
+
- Interface AzureSqlMILinkedService has a new optional parameter multipleActiveResultSets
|
|
99
|
+
- Interface AzureSqlMILinkedService has a new optional parameter multiSubnetFailover
|
|
100
|
+
- Interface AzureSqlMILinkedService has a new optional parameter packetSize
|
|
101
|
+
- Interface AzureSqlMILinkedService has a new optional parameter pooling
|
|
102
|
+
- Interface AzureSqlMILinkedService has a new optional parameter server
|
|
103
|
+
- Interface AzureSqlMILinkedService has a new optional parameter servicePrincipalCredential
|
|
104
|
+
- Interface AzureSqlMILinkedService has a new optional parameter servicePrincipalCredentialType
|
|
105
|
+
- Interface AzureSqlMILinkedService has a new optional parameter trustServerCertificate
|
|
106
|
+
- Interface AzureSqlMILinkedService has a new optional parameter userName
|
|
107
|
+
- Interface DynamicsCrmLinkedService has a new optional parameter credential
|
|
108
|
+
- Interface ExpressionV2 has a new optional parameter operators
|
|
109
|
+
- Interface LakeHouseTableDataset has a new optional parameter schemaTypePropertiesSchema
|
|
110
|
+
- Interface ManagedIdentityCredential has a new optional parameter resourceId
|
|
111
|
+
- Interface SalesforceServiceCloudV2Source has a new optional parameter query
|
|
112
|
+
- Interface SalesforceV2Source has a new optional parameter query
|
|
113
|
+
- Interface SqlServerLinkedService has a new optional parameter applicationIntent
|
|
114
|
+
- Interface SqlServerLinkedService has a new optional parameter authenticationType
|
|
115
|
+
- Interface SqlServerLinkedService has a new optional parameter commandTimeout
|
|
116
|
+
- Interface SqlServerLinkedService has a new optional parameter connectRetryCount
|
|
117
|
+
- Interface SqlServerLinkedService has a new optional parameter connectRetryInterval
|
|
118
|
+
- Interface SqlServerLinkedService has a new optional parameter connectTimeout
|
|
119
|
+
- Interface SqlServerLinkedService has a new optional parameter database
|
|
120
|
+
- Interface SqlServerLinkedService has a new optional parameter encrypt
|
|
121
|
+
- Interface SqlServerLinkedService has a new optional parameter failoverPartner
|
|
122
|
+
- Interface SqlServerLinkedService has a new optional parameter hostNameInCertificate
|
|
123
|
+
- Interface SqlServerLinkedService has a new optional parameter integratedSecurity
|
|
124
|
+
- Interface SqlServerLinkedService has a new optional parameter loadBalanceTimeout
|
|
125
|
+
- Interface SqlServerLinkedService has a new optional parameter maxPoolSize
|
|
126
|
+
- Interface SqlServerLinkedService has a new optional parameter minPoolSize
|
|
127
|
+
- Interface SqlServerLinkedService has a new optional parameter multipleActiveResultSets
|
|
128
|
+
- Interface SqlServerLinkedService has a new optional parameter multiSubnetFailover
|
|
129
|
+
- Interface SqlServerLinkedService has a new optional parameter packetSize
|
|
130
|
+
- Interface SqlServerLinkedService has a new optional parameter pooling
|
|
131
|
+
- Interface SqlServerLinkedService has a new optional parameter server
|
|
132
|
+
- Interface SqlServerLinkedService has a new optional parameter trustServerCertificate
|
|
133
|
+
- Type of parameter type of interface Credential_2 is changed from "ManagedIdentity" | "ServicePrincipal" to "ServicePrincipal" | "ManagedIdentity"
|
|
134
|
+
- Added Enum KnownAmazonRdsForSqlAuthenticationType
|
|
135
|
+
- Added Enum KnownAzureSqlDatabaseAuthenticationType
|
|
136
|
+
- Added Enum KnownAzureSqlDWAuthenticationType
|
|
137
|
+
- Added Enum KnownAzureSqlMIAuthenticationType
|
|
138
|
+
- Added Enum KnownSqlServerAuthenticationType
|
|
139
|
+
- Enum KnownExpressionV2Type has a new value NAry
|
|
10
140
|
|
|
11
|
-
|
|
141
|
+
**Breaking Changes**
|
|
12
142
|
|
|
143
|
+
- Interface ExpressionV2 no longer has parameter operator
|
|
144
|
+
- Type of parameter type of interface ScriptActivityScriptBlock is changed from ScriptType to any
|
|
145
|
+
|
|
146
|
+
|
|
13
147
|
## 15.0.0 (2024-04-12)
|
|
14
148
|
|
|
15
149
|
**Features**
|