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 @@ -623,6 +623,42 @@
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.ApiManagement/getDomainOwnershipIdentifier": {
"post": {
Comment thread
solankisamir marked this conversation as resolved.
"tags": [
"ApiManagementService"
],
"operationId": "ApiManagementService_GetDomainOwnershipIdentifier",
"description": "Get the custom domain ownership identifier for an API Management service.",
"x-ms-examples": {
"ApiManagementServiceGetDomainOwnershipIdentifier": {
"$ref": "./examples/ApiManagementServiceGetDomainOwnershipIdentifier.json"
}
},
"parameters": [
{
"$ref": "./apimanagement.json#/parameters/ApiVersionParameter"
},
{
"$ref": "./apimanagement.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "The result of getting domain ownership identifier.",
"schema": {
"$ref": "#/definitions/ApiManagementServiceGetDomainOwnershipIdentifierResult"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/applynetworkconfigurationupdates": {
"post": {
"tags": [
Expand Down Expand Up @@ -1469,6 +1505,16 @@
},
"description": "Response of the CheckNameAvailability operation."
},
"ApiManagementServiceGetDomainOwnershipIdentifierResult": {
Comment thread
solankisamir marked this conversation as resolved.
"properties": {
"domainOwnershipIdentifier": {
"type": "string",
"description": "The domain ownership identifer value.",
"readOnly": true
}
},
"description": "Response of the GetDomainOwnershipIdentifier operation."
},
"ApiManagementServiceApplyNetworkConfigurationParameters": {
"properties": {
"location": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"parameters": {
"resourceGroupName": "rg1",
"api-version": "2020-06-01-preview",
"subscriptionId": "subid"
},
"responses": {
"200": {
"body": {
"domainOwnershipIdentifier": ""
}
}
}
}