Skip to content

Commit 78dca4e

Browse files
vayadajnlycklama
authored andcommitted
Added mobo resource configuration to common-types. (#25717)
* Added mobo resource configuration to common-types. * Code flow comments. * Code flow comments. * Code flow comments. * Code flow comments. * Code flow comments. * Code flow comments.
1 parent 2af4c8c commit 78dca4e

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

custom-words.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1623,6 +1623,7 @@ mlflowtrackinguri
16231623
mltable
16241624
mmtc
16251625
mnist
1626+
mobo
16261627
modelmanagement
16271628
modifiedtime
16281629
modifyaclentries
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"swagger": "2.0",
3+
"info": {
4+
"version": "5.0",
5+
"title": "Common types"
6+
},
7+
"paths": {},
8+
"definitions": {
9+
"ManagedOnBehalfOfConfiguration": {
10+
"type": "object",
11+
"description": "Managed-On-Behalf-Of configuration properties. This configuration exists for the resources where a resource provider manages those resources on behalf of the resource owner.",
12+
"properties": {
13+
"moboBrokerResources": {
14+
"type": "array",
15+
"description": "Managed-On-Behalf-Of broker resources",
16+
"items": {
17+
"$ref": "#/definitions/MoboBrokerResource"
18+
},
19+
"x-ms-identifiers": [
20+
"id"
21+
]
22+
}
23+
},
24+
"readOnly": true
25+
},
26+
"MoboBrokerResource": {
27+
"type": "object",
28+
"description": "Managed-On-Behalf-Of broker resource. This resource is created by the Resource Provider to manage some resources on behalf of the user.",
29+
"properties": {
30+
"id": {
31+
"type": "string",
32+
"format": "arm-id",
33+
"description": "Resource identifier of a Managed-On-Behalf-Of broker resource"
34+
}
35+
}
36+
}
37+
}
38+
}

0 commit comments

Comments
 (0)