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 @@ -293,7 +293,10 @@
"readOnly": true,
"items": {
"$ref": "#/definitions/Operation"
}
},
"x-ms-identifiers": [
"name"
]
},
"nextLink": {
"description": "URL to get the next set of operation list results if there are any.",
Expand Down Expand Up @@ -561,6 +564,7 @@
"items": {
"$ref": "#/definitions/ErrorAdditionalInfo"
},
"x-ms-identifiers": [],
"description": "A list of error details about the error."
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,14 @@
}
],
"responses": {
"201": {
"description": "Created response definition. Resource has been created",
"200": {
"description": "OK response definition. Resource already exists and the changes have been accepted",
"schema": {
"$ref": "#/definitions/CustomRPManifest"
}
},
"200": {
"description": "OK response definition. Resource already exists and the changes have been accepted",
"201": {
"description": "Created response definition. Resource has been created",
"schema": {
"$ref": "#/definitions/CustomRPManifest"
}
Expand Down Expand Up @@ -424,14 +424,14 @@
}
],
"responses": {
"201": {
"description": "Created. Association has been created.",
"200": {
"description": "OK. Association already exists and the changes have been accepted.",
"schema": {
"$ref": "#/definitions/Association"
}
},
"200": {
"description": "OK. Association already exists and the changes have been accepted.",
"201": {
"description": "Created. Association has been created.",
"schema": {
"$ref": "#/definitions/Association"
}
Expand Down Expand Up @@ -715,21 +715,30 @@
"description": "A list of actions that the custom resource provider implements.",
"items": {
"$ref": "#/definitions/CustomRPActionRouteDefinition"
}
},
"x-ms-identifiers": [
"name",
"endpoint"
]
},
"resourceTypes": {
"type": "array",
"description": "A list of resource types that the custom resource provider implements.",
"items": {
"$ref": "#/definitions/CustomRPResourceTypeRouteDefinition"
}
},
"x-ms-identifiers": [
"name",
"endpoint"
]
},
"validations": {
"type": "array",
"description": "A list of validations to run on the custom resource provider's requests.",
"items": {
"$ref": "#/definitions/CustomRPValidations"
}
},
"x-ms-identifiers": []
},
"provisioningState": {
"type": "string",
Expand Down Expand Up @@ -766,6 +775,9 @@
"items": {
"$ref": "#/definitions/ResourceProviderOperation"
},
"x-ms-identifiers": [
"name"
],
"description": "List of operations supported by this resource provider."
},
"nextLink": {
Expand Down Expand Up @@ -949,6 +961,7 @@
"items": {
"$ref": "#/definitions/ErrorDefinition"
},
"x-ms-identifiers": [],
"readOnly": true
}
}
Expand Down