desc:"Annotation to annotate list of HTTP status codes that are expected in response from a REST endpoint.\n\n**Example:**\n\n```java\n@ExpectedResponses({200, 201})\n @Post(\"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CustomerInsights/\"\n + \"hubs/{hubName}/images/getEntityTypeImageUploadUrl\")\n void getUploadUrlForEntityType(@PathParam(\"resourceGroupName\") String resourceGroupName,\n @PathParam(\"hubName\") String hubName,\n @PathParam(\"subscriptionId\") String subscriptionId,\n @BodyParam(\"application/json\") RequestBody parameters);\n```"