Skip to content

Commit fd67839

Browse files
SDKAutoKevin Naddoni
andcommitted
CodeGen from PR 18439 in Azure/azure-rest-api-specs
[Hub Generated] Review request for Microsoft.DataFactory to add version stable/2018-06-01 (#18439) * Added Global Parameters CRUD APIs * Small JSON fix * Updated Global parameters definitions * Small typo fix * Added spec and fixed delete * Correct path * Fixed casing * Added references * Small case fix * Small fix and prettier cleanup * Added type object Co-authored-by: Kevin Naddoni <naddonik@microsoft.com>
1 parent 7476b47 commit fd67839

File tree

2 files changed

+165
-0
lines changed

2 files changed

+165
-0
lines changed

schemas/2018-06-01/Microsoft.DataFactory.json

Lines changed: 162 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@
8080
},
8181
{
8282
"$ref": "#/definitions/factories_privateEndpointConnections_childResource"
83+
},
84+
{
85+
"$ref": "#/definitions/factories_globalParameters_childResource"
8386
}
8487
]
8588
}
@@ -212,6 +215,59 @@
212215
],
213216
"description": "Microsoft.DataFactory/factories/datasets"
214217
},
218+
"factories_globalParameters": {
219+
"type": "object",
220+
"properties": {
221+
"apiVersion": {
222+
"type": "string",
223+
"enum": [
224+
"2018-06-01"
225+
]
226+
},
227+
"name": {
228+
"oneOf": [
229+
{
230+
"type": "string",
231+
"pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$",
232+
"minLength": 1,
233+
"maxLength": 260
234+
},
235+
{
236+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
237+
}
238+
],
239+
"description": "The global parameter name."
240+
},
241+
"properties": {
242+
"oneOf": [
243+
{
244+
"type": "object",
245+
"additionalProperties": {
246+
"$ref": "#/definitions/GlobalParameterSpecification"
247+
},
248+
"properties": {}
249+
},
250+
{
251+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
252+
}
253+
],
254+
"description": "Global parameters associated with the Azure Data Factory"
255+
},
256+
"type": {
257+
"type": "string",
258+
"enum": [
259+
"Microsoft.DataFactory/factories/globalParameters"
260+
]
261+
}
262+
},
263+
"required": [
264+
"apiVersion",
265+
"name",
266+
"properties",
267+
"type"
268+
],
269+
"description": "Microsoft.DataFactory/factories/globalParameters"
270+
},
215271
"factories_integrationRuntimes": {
216272
"type": "object",
217273
"properties": {
@@ -8988,6 +9044,17 @@
89889044
"type": "string",
89899045
"description": "Transformation name."
89909046
},
9047+
"rejectedDataLinkedService": {
9048+
"oneOf": [
9049+
{
9050+
"$ref": "#/definitions/LinkedServiceReference"
9051+
},
9052+
{
9053+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
9054+
}
9055+
],
9056+
"description": "Linked service reference type."
9057+
},
89919058
"schemaLinkedService": {
89929059
"oneOf": [
89939060
{
@@ -11630,6 +11697,11 @@
1163011697
"properties": {},
1163111698
"description": "Concurrent run setting used for data flow execution. Allows sinks with the same save order to be processed concurrently. Type: boolean (or Expression with resultType boolean)"
1163211699
},
11700+
"sourceStagingConcurrency": {
11701+
"type": "object",
11702+
"properties": {},
11703+
"description": "Specify number of parallel staging for sources applicable to the sink. Type: integer (or Expression with resultType integer)"
11704+
},
1163311705
"staging": {
1163411706
"oneOf": [
1163511707
{
@@ -11861,6 +11933,11 @@
1186111933
],
1186211934
"description": "(Deprecated. Please use Queries). List of Power Query activity sinks mapped to a queryName."
1186311935
},
11936+
"sourceStagingConcurrency": {
11937+
"type": "object",
11938+
"properties": {},
11939+
"description": "Specify number of parallel staging for sources applicable to the sink. Type: integer (or Expression with resultType integer)"
11940+
},
1186411941
"staging": {
1186511942
"oneOf": [
1186611943
{
@@ -12337,6 +12414,59 @@
1233712414
],
1233812415
"description": "Microsoft.DataFactory/factories/datasets"
1233912416
},
12417+
"factories_globalParameters_childResource": {
12418+
"type": "object",
12419+
"properties": {
12420+
"apiVersion": {
12421+
"type": "string",
12422+
"enum": [
12423+
"2018-06-01"
12424+
]
12425+
},
12426+
"name": {
12427+
"oneOf": [
12428+
{
12429+
"type": "string",
12430+
"pattern": "^[A-Za-z0-9_][^<>*#.%&:\\\\+?/]*$",
12431+
"minLength": 1,
12432+
"maxLength": 260
12433+
},
12434+
{
12435+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
12436+
}
12437+
],
12438+
"description": "The global parameter name."
12439+
},
12440+
"properties": {
12441+
"oneOf": [
12442+
{
12443+
"type": "object",
12444+
"additionalProperties": {
12445+
"$ref": "#/definitions/GlobalParameterSpecification"
12446+
},
12447+
"properties": {}
12448+
},
12449+
{
12450+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
12451+
}
12452+
],
12453+
"description": "Global parameters associated with the Azure Data Factory"
12454+
},
12455+
"type": {
12456+
"type": "string",
12457+
"enum": [
12458+
"globalParameters"
12459+
]
12460+
}
12461+
},
12462+
"required": [
12463+
"apiVersion",
12464+
"name",
12465+
"properties",
12466+
"type"
12467+
],
12468+
"description": "Microsoft.DataFactory/factories/globalParameters"
12469+
},
1234012470
"factories_integrationRuntimes_childResource": {
1234112471
"type": "object",
1234212472
"properties": {
@@ -12789,6 +12919,17 @@
1278912919
],
1279012920
"description": "Whether or not public network access is allowed for the data factory."
1279112921
},
12922+
"purviewConfiguration": {
12923+
"oneOf": [
12924+
{
12925+
"$ref": "#/definitions/PurviewConfiguration"
12926+
},
12927+
{
12928+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
12929+
}
12930+
],
12931+
"description": "Purview configuration."
12932+
},
1279212933
"repoConfiguration": {
1279312934
"oneOf": [
1279412935
{
@@ -22180,6 +22321,17 @@
2218022321
"type": "string",
2218122322
"description": "Transformation name."
2218222323
},
22324+
"rejectedDataLinkedService": {
22325+
"oneOf": [
22326+
{
22327+
"$ref": "#/definitions/LinkedServiceReference"
22328+
},
22329+
{
22330+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
22331+
}
22332+
],
22333+
"description": "Linked service reference type."
22334+
},
2218322335
"schemaLinkedService": {
2218422336
"oneOf": [
2218522337
{
@@ -22566,6 +22718,16 @@
2256622718
},
2256722719
"description": "The state of a private link connection"
2256822720
},
22721+
"PurviewConfiguration": {
22722+
"type": "object",
22723+
"properties": {
22724+
"purviewResourceId": {
22725+
"type": "string",
22726+
"description": "Purview resource id."
22727+
}
22728+
},
22729+
"description": "Purview configuration."
22730+
},
2256922731
"QuickbaseLinkedService": {
2257022732
"type": "object",
2257122733
"properties": {

schemas/common/autogeneratedResources.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5815,6 +5815,9 @@
58155815
{
58165816
"$ref": "https://schema.management.azure.com/schemas/2018-06-01/Microsoft.DataFactory.json#/resourceDefinitions/factories_datasets"
58175817
},
5818+
{
5819+
"$ref": "https://schema.management.azure.com/schemas/2018-06-01/Microsoft.DataFactory.json#/resourceDefinitions/factories_globalParameters"
5820+
},
58185821
{
58195822
"$ref": "https://schema.management.azure.com/schemas/2018-06-01/Microsoft.DataFactory.json#/resourceDefinitions/factories_integrationRuntimes"
58205823
},

0 commit comments

Comments
 (0)