-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Expand file tree
/
Copy pathcreateOrUpdateFlowProfile.json
More file actions
85 lines (85 loc) · 2.59 KB
/
Copy pathcreateOrUpdateFlowProfile.json
File metadata and controls
85 lines (85 loc) · 2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"operationId": "FlowProfiles_CreateOrUpdate",
"parameters": {
"api-version": "2026-02-06-preview",
"pipelineName": "testPipeline",
"resource": {
"location": "East US",
"properties": {
"replicationScenario": "Files",
"status": "Enabled",
"description": "Hello world description",
"rulesets": {
"mimeFilters": {
"type": "Allow",
"filters": [
{
"media": "application/json",
"extensions": [
".json",
".app",
".js"
]
}
]
},
"textMatching": {
"deny": [
{
"text": "hello world",
"matchType": "Partial",
"caseSensitivity": "Insensitive"
},
{
"text": "hello",
"matchType": "Complete",
"caseSensitivity": "Sensitive"
}
]
},
"antivirus": {
"avSolutions": [
"Defender",
"ClamAv"
]
},
"archives": {
"minimumSizeForExpansion": 1,
"maximumExpansionSizeLimit": 123456,
"maximumDepthLimit": 12,
"maximumCompressionRatioLimit": 123
},
"dataSize": {
"maximum": 123456789,
"minimum": 1
},
"xmlFilters": {
"defaultNamespace": "testnamespace",
"reference": "Inline",
"schema": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?> <xs:schema xmlns:xs=\"http://www.w3.org/2001/XMLSchema\"></xs:schema>"
}
}
}
},
"flowProfileName": "testFlowProfile",
"resourceGroupName": "testRG",
"subscriptionId": "00000000-0000-0000-0000-000000000000"
},
"title": "Creates or updates the FlowPRofile resource",
"responses": {
"200": {
"body": {
"type": "Microsoft.AzureDataTransfer/pipelines/flowprofiles",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/pipelines/testPipeline/flowProfiles/testFlowProfile",
"location": "East US"
}
},
"201": {
"body": {
"type": "Microsoft.AzureDataTransfer/pipelines/flowprofiles",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/pipelines/testPipeline/flowProfiles/testFlowProfile",
"location": "East US"
}
}
}
}