Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix operationIds in RP education #18846

Merged
Merged
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 @@ -62,7 +62,7 @@
"$ref": "./examples/GrantListIncludeAllocatedBudget.json"
}
},
"operationId": "Grants_List",
"operationId": "Grants_ListAll",
"description": "Get a list of grants that Microsoft has provided.",
"parameters": [
{
Expand Down Expand Up @@ -104,7 +104,7 @@
"$ref": "./examples/GrantDefaultListIncludeAllocatedBudget.json"
}
},
"operationId": "Grant_List",
"operationId": "Grants_List",
"description": "Get details for a specific grant linked to the provided billing account and billing profile.",
"parameters": [
{
Expand Down Expand Up @@ -152,7 +152,7 @@
"$ref": "./examples/GrantIncludeAllocatedBudget.json"
}
},
"operationId": "Get_Grant",
"operationId": "Grants_Get",
"description": "Get details for a specific grant linked to the provided billing account and billing profile.",
"parameters": [
{
Expand Down Expand Up @@ -197,7 +197,7 @@
"$ref": "./examples/LabListIncludeBudget.json"
}
},
"operationId": "Labs_List",
"operationId": "Labs_ListAll",
"description": "Get a list of labs associated with the provided billing account name and billing profile name.",
"parameters": [
{
Expand Down Expand Up @@ -248,7 +248,7 @@
"$ref": "./examples/LabListWithInvoiceSectionNameIncludeBudget.json"
}
},
"operationId": "Lab_List",
"operationId": "Labs_List",
"description": "Get the details for a specific lab associated with the provided billing account name, billing profile name, and invoice section name.",
"parameters": [
{
Expand Down Expand Up @@ -299,7 +299,7 @@
"$ref": "./examples/LabIncludeBudget.json"
}
},
"operationId": "Get_Lab",
"operationId": "Labs_Get",
msyyc marked this conversation as resolved.
Show resolved Hide resolved
"description": "Get the details for a specific lab associated with the provided billing account name, billing profile name, and invoice section name.",
"parameters": [
{
Expand Down Expand Up @@ -342,7 +342,7 @@
"$ref": "./examples/DeleteLab.json"
}
},
"operationId": "Delete_Lab",
"operationId": "Labs_Delete",
"description": "Delete a specific lab associated with the provided billing account name, billing profile name, and invoice section name. Note all students must be removed from the lab in order to delete the lab.",
"parameters": [
{
Expand Down Expand Up @@ -382,7 +382,7 @@
"$ref": "./examples/CreateLab.json"
}
},
"operationId": "Create_Lab",
"operationId": "Labs_CreateOrUpdate",
"description": "Create a new lab or update a previously created lab.",
"parameters": [
{
Expand Down Expand Up @@ -439,7 +439,7 @@
"$ref": "./examples/GenerateInviteCode.json"
}
},
"operationId": "Generate_InviteCode",
"operationId": "Labs_GenerateInviteCode",
"description": "Generate invite code for a lab",
"parameters": [
{
Expand Down Expand Up @@ -541,7 +541,7 @@
"$ref": "./examples/JoinRequest.json"
}
},
"operationId": "JoinRequest_Get",
"operationId": "JoinRequests_Get",
"description": "get student join requests",
"parameters": [
{
Expand Down Expand Up @@ -586,7 +586,7 @@
"$ref": "./examples/JoinRequestApproveAndDeny.json"
}
},
"operationId": "Approve_Invite",
"operationId": "JoinRequests_Approve",
"description": "Approve student joining the redeemable lab",
"parameters": [
{
Expand Down Expand Up @@ -628,7 +628,7 @@
"$ref": "./examples/JoinRequestApproveAndDeny.json"
}
},
"operationId": "Deny_Invite",
"operationId": "JoinRequests_Deny",
"description": "Deny student joining the redeemable lab",
"parameters": [
{
Expand Down Expand Up @@ -670,7 +670,7 @@
"$ref": "./examples/RedeemCode.json"
}
},
"operationId": "Redeem_Invite",
"operationId": "RedeemInvitationCode",
"description": "Redeem invite code to join a redeemable lab",
"parameters": [
{
Expand Down Expand Up @@ -757,7 +757,7 @@
"$ref": "./examples/Student.json"
}
},
"operationId": "Get_Student",
"operationId": "Students_Get",
"description": "Get the details for a specific student in the specified lab by student alias",
"parameters": [
{
Expand Down Expand Up @@ -800,7 +800,7 @@
"$ref": "./examples/DeleteStudent.json"
}
},
"operationId": "Delete_Student",
"operationId": "Students_Delete",
"description": "Delete the specified student based on the student alias.",
"parameters": [
{
Expand Down Expand Up @@ -843,7 +843,7 @@
"$ref": "./examples/CreateStudent.json"
}
},
"operationId": "Create_Student",
"operationId": "Students_CreateOrUpdate",
"description": "Create and add a new student to the specified lab or update the details of an existing student in a lab. Note the student must have a valid tenant to accept the lab after they have been added to lab.",
"parameters": [
{
Expand Down Expand Up @@ -903,7 +903,7 @@
"$ref": "./examples/StudentLabList.json"
}
},
"operationId": "StudentLabs_List",
"operationId": "StudentLabs_ListAll",
"description": "Get a list of all labs associated with the caller of the API.",
"parameters": [
{
Expand Down Expand Up @@ -939,7 +939,7 @@
"$ref": "./examples/StudentLab.json"
}
},
"operationId": "Get_StudentLab",
"operationId": "StudentLabs_Get",
"description": "Get the details for a specified lab associated with the student lab.",
"parameters": [
{
Expand Down