You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* This Flow has been disabled as the flow type this flow uses has been disabled.
118
+
* Defines disablement of a Flow due to the linked flow type being disabled.
122
119
*/
123
120
FlowTypeForceDisabled:"FlowTypeForceDisabled",
124
121
}
@@ -130,20 +127,18 @@ union LinkStatus {
130
127
string,
131
128
132
129
/**
133
-
* The pipeline, connection, or flow is currently linked with another corresponding pipeline,
134
-
* connection, or flow, and can be used.
130
+
* The pipeline, connection, or flow is currently linked with another corresponding pipeline, connection, or flow, and can be used.
135
131
*/
136
132
Linked:"Linked",
137
133
138
134
/**
139
-
* The pipeline, connection, or flow is not linked with another corresponding pipeline,
140
-
* connection, or flow, and cannot be used.
135
+
* The pipeline, connection, or flow is not linked with another corresponding pipeline, connection, or flow, and cannot be used.
141
136
*/
142
137
Unlinked:"Unlinked",
143
138
}
144
139
145
140
/**
146
-
* Flow type for the specified resource
141
+
* Flow type for the specified resource. FlowType will be deprecated starting from version 2025_05_30_preview - please create a FlowProfile resource instead.
147
142
*/
148
143
unionFlowType {
149
144
string,
@@ -169,7 +164,7 @@ union FlowType {
169
164
Messaging:"Messaging",
170
165
171
166
/**
172
-
* This flow sends data that will not be processed by any security system.
167
+
* This flow sends standard data but is subject to strict cloud owner approval.
173
168
*/
174
169
Mission:"Mission",
175
170
@@ -199,12 +194,12 @@ union FlowType {
199
194
StreamingVideo:"StreamingVideo",
200
195
201
196
/**
202
-
* This flow sends blobs that will not be processed by any security system.
197
+
* This flow sends blobs but is subject to cloud owner approval.
203
198
*/
204
199
Opaque:"Opaque",
205
200
206
201
/**
207
-
* This flow sends Extensible Markup Language that will not be processed by any security system.
202
+
* This flow sends Extensible Markup Language that is subject to strict cloud owner approval
208
203
*/
209
204
MissionOpaqueXML:"MissionOpaqueXML",
210
205
@@ -263,6 +258,40 @@ union OperationStatusEnum {
263
258
Succeeded:"Succeeded",
264
259
}
265
260
261
+
/**
262
+
* The allowed statuses of a FlowProfile.
263
+
*/
264
+
unionFlowProfileStatus {
265
+
string,
266
+
267
+
/**
268
+
* Defines a FlowProfile that can no longer be selected.
269
+
*/
270
+
Obsolete:"Obsolete",
271
+
272
+
/**
273
+
* Defines a FlowProfile that is enabled.
274
+
*/
275
+
Enabled:"Enabled",
276
+
}
277
+
278
+
/**
279
+
* Enablement statuses
280
+
*/
281
+
unionEnablementStatus {
282
+
string,
283
+
284
+
/**
285
+
* Represents an enabled status.
286
+
*/
287
+
Enabled:"Enabled",
288
+
289
+
/**
290
+
* Represents a disabled status.
291
+
*/
292
+
Disabled:"Disabled",
293
+
}
294
+
266
295
/**
267
296
* Status of the current pipeline
268
297
*/
@@ -360,8 +389,7 @@ union IdentityTranslation {
360
389
string,
361
390
362
391
/**
363
-
* The API flow will make use of the user identity that called this API flow, and pass that token
364
-
* through the boundary.
392
+
* The API flow will make use of the user identity that called this API flow, and pass that token through the boundary.
365
393
*/
366
394
UserIdentity:"UserIdentity",
367
395
@@ -416,7 +444,7 @@ union TargetType {
416
444
}
417
445
418
446
/**
419
-
* The request used to list approved schemas within the resource provider.
447
+
* The request used to list approved schemas within the resource provider. ListApprovedSchemaRequest will be deprecated after from version 2025_05_30_preview - please manage schemas with a FlowProfile resource instead.
420
448
*/
421
449
modelListApprovedSchemasRequest {
422
450
/**
@@ -431,7 +459,7 @@ model ListApprovedSchemasRequest {
431
459
}
432
460
433
461
/**
434
-
* The schemas list result.
462
+
* The schemas list result. SchemaListResults will be deprecated starting from version 2025_05_30_preview - please manage schemas with a FlowProfile resource instead.
435
463
*/
436
464
modelSchemasListResult {
437
465
/**
@@ -441,7 +469,7 @@ model SchemasListResult {
441
469
}
442
470
443
471
/**
444
-
* The schema object.
472
+
* The schema object. Schemas will be deprecated starting from version 2025_05_30_preview - please manage schemas with a FlowProfile resource instead.
445
473
*/
446
474
modelSchema {
447
475
/**
@@ -486,7 +514,7 @@ model Schema {
486
514
}
487
515
488
516
/**
489
-
* Result of the schema validation.
517
+
* Result of the schema validation. ValidateSchemaResult will be deprecated starting from version 2025_05_30_preview - please manage schemas with a FlowProfile resource instead.
490
518
*/
491
519
modelValidateSchemaResult {
492
520
/**
@@ -550,7 +578,7 @@ model ConnectionProperties {
550
578
linkedConnectionId?:string;
551
579
552
580
/**
553
-
* The flow types being requested for this connection
581
+
* The flow types being requested for this connection. This FlowType property is deprecated starting from version 2025_05_30_preview - please create a FlowProfile resource instead.
554
582
*/
555
583
flowTypes?:FlowType[];
556
584
@@ -632,7 +660,7 @@ model PipelineProperties {
632
660
*/
633
661
@visibility(Lifecycle.Read)
634
662
@OpenAPI.extension("x-ms-identifiers", #["id"])
635
-
connections?:Read<PipelineConnection>[];
663
+
connections?:ReadPipelineConnection[];
636
664
637
665
/**
638
666
* Subscribers of this resource
@@ -652,7 +680,7 @@ model PipelineProperties {
652
680
policies?:string[];
653
681
654
682
/**
655
-
* The flow types allowed for this pipeline
683
+
* The flow type for this flow
656
684
*/
657
685
flowTypes?:FlowType[];
658
686
@@ -718,25 +746,6 @@ model PipelineConnection {
718
746
*/
719
747
@visibility(Lifecycle.Read)
720
748
systemData?:SystemData;
721
-
722
-
/**
723
-
* Connection properties inside pipeline
724
-
*/
725
-
@visibility(Lifecycle.Read)
726
-
properties?:PipelineConnectionProperties;
727
-
}
728
-
729
-
/**
730
-
* Connection properties inside pipeline
731
-
*/
732
-
modelPipelineConnectionProperties {
733
-
...Record<unknown>;
734
-
735
-
/**
736
-
* Internal metadata of the connection inside pipeline.
737
-
*/
738
-
@visibility(Lifecycle.Read)
739
-
internalMetadata?:InternalMetadataProperties;
740
749
}
741
750
742
751
/**
@@ -1012,7 +1021,7 @@ model MessagingOptions {
1012
1021
*/
1013
1022
modelApiFlowOptions {
1014
1023
/**
1015
-
* Remote host to which communication needs to be made
1024
+
* Remote host to which communication needs to be made. Deprecated starting 2025-05-30-preview.
1016
1025
*/
1017
1026
remoteEndpoint?:string;
1018
1027
@@ -1027,22 +1036,22 @@ model ApiFlowOptions {
1027
1036
apiMode?:ApiMode;
1028
1037
1029
1038
/**
1030
-
* Flag for if Azure Data Transfer API Flow should extract the user token
1039
+
* Determines which identity to use for extracting the user token for Azure Data Transfer API Flow. Deprecated starting 2025-05-30-preview.
1031
1040
*/
1032
1041
identityTranslation?:IdentityTranslation;
1033
1042
1034
1043
/**
1035
-
* Sender's app user assigned Manage Identity client ID
0 commit comments