File tree Expand file tree Collapse file tree 1 file changed +32
-1
lines changed
specification/search/resource-manager Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
These settings apply only when ` --java ` is specified on the command line.
4
4
5
- ``` yaml $(java)
5
+ ``` yaml $(java)
6
6
enable-sync-stack : false
7
7
remove-inner : CheckNameAvailabilityOutput
8
+ directive :
9
+ - from : search.json
10
+ where-operation : Services_Update
11
+ transform : >
12
+ $["x-ms-long-running-operation"] = true;
13
+ reason : Swagger bug. PATCH is LRO.
14
+ - from : search.json
15
+ where : $.definitions.SearchServiceProperties.properties.publicNetworkAccess
16
+ transform : >
17
+ $['x-ms-enum']['modelAsString'] = false;
18
+ reason : Handle breaking change. Also, service will return "Disabled"/"Enabled",instead of "disabled"/"enabled" defined in Swagger. Making it sealed enum will mitigate this.
19
+ - from : search.json
20
+ where : $.definitions.SharedPrivateLinkResourceProperties.properties.status
21
+ transform : >
22
+ $['x-ms-enum']['modelAsString'] = false;
23
+ reason : Handle breaking change.
24
+ - from : search.json
25
+ where : $.definitions.SharedPrivateLinkResourceProperties.properties.provisioningState
26
+ transform : >
27
+ $['x-ms-enum']['modelAsString'] = false;
28
+ reason : Handle breaking change.
29
+ - from : search.json
30
+ where : $.definitions.Identity.properties.type
31
+ transform : >
32
+ $['x-ms-enum']['modelAsString'] = false;
33
+ reason : Handle breaking change.
34
+ - from : search.json
35
+ where : $.definitions.Sku.properties.name
36
+ transform : >
37
+ $['x-ms-enum']['modelAsString'] = false;
38
+ reason : Handle breaking change.
8
39
` ` `
You can’t perform that action at this time.
0 commit comments