Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
}
],
"tags": [
"partner"
"Partner"
],
"responses": {
"200": {
Expand Down Expand Up @@ -81,7 +81,7 @@
}
],
"tags": [
"partner"
"Partner"
],
"responses": {
"200": {
Expand Down Expand Up @@ -116,7 +116,7 @@
}
],
"tags": [
"partner"
"Partner"
],
"responses": {
"200": {
Expand Down Expand Up @@ -151,7 +151,7 @@
}
],
"tags": [
"partner"
"Partner"
],
"responses": {
"200": {
Expand Down Expand Up @@ -202,6 +202,40 @@
}
}
}
},
"/providers/Microsoft.ManagementPartner/partners": {
"get": {
"summary": "Get a specific `Partner`.",
"description": "Get the management partner using the objectId and tenantId.",
"operationId": "Partners_Get",
"x-ms-examples": {
"GetPartnerDetails": {
"$ref": "./examples/GetPartnerDetailsNoPartnerId.json"
}
},
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"tags": [
"Partners"
],
"responses": {
"200": {
"description": "Get the details of the `Partner`.",
"schema": {
"$ref": "#/definitions/PartnerResponse"
}
},
"default": {
"description": "Unexpected error",
"schema": {
"$ref": "#/definitions/Error"
}
}
}
}
}
},
"definitions": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"parameters": {
"api-version": "2018-02-01"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jetts you updated existing spec with new tags.
Do you mind adding an example that shows the request that has the newly added tags.

},
"responses": {
"200": {
"body": {
"id": "/providers/microsoft.managementpartner/partners",
"type": "Microsoft.ManagementPartner/partner",
"name": "123456",
"etag": 3,
"properties": {
"partnerId": "123456",
"partnerName": "Test_jefl",
"tenantId": "1b1121dd-6900-412a-af73-e8d44f81e1c1",
"objectId": "aa67f786-0552-423e-8849-244ed12bf581",
"version": "3",
"updatedTime": "2018-01-20T01:52:57.9126052Z",
"createdTime": "2018-01-20T01:23:40.5280496Z",
"state": "Active"
}
}
}
}
}