Skip to content
Closed
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 @@ -41,10 +41,9 @@ interface ApiDefinitions {
@doc("Returns a collection of API definitions.")
list is ArmResourceListByParent<ApiDefinition>;
@doc("Imports the API specification.")
importSpecification is ArmResourceActionAsync<
importSpecification is ArmResourceActionNoResponseContentAsync<
ApiDefinition,
ApiSpecImportRequest,
OkResponse
ApiSpecImportRequest
>;
@doc("Exports the API specification.")
exportSpecification is ArmResourceActionAsync<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
}
},
"responses": {
"200": {},
"202": {
"headers": {
"location": "https://..."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
}
},
"responses": {
"200": {},
"202": {
"headers": {
"location": "https://..."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
}
},
"responses": {
"200": {},
"202": {
"headers": {
"location": "https://..."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ options:
namespace: "com.azure.resourcemanager.apicenter"
service-name: "Api Center"
flavor: azure
use-object-for-unknown: true
"@azure-typespec/http-client-csharp-mgmt":
namespace: "Azure.ResourceManager.ApiCenter"
emitter-output-dir: "{output-dir}/{service-dir}/{namespace}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3148,9 +3148,6 @@
}
],
"responses": {
"200": {
"description": "The request has succeeded."
},
"202": {
"description": "Resource operation accepted.",
"headers": {
Expand Down Expand Up @@ -4850,10 +4847,6 @@
"url"
]
},
"TypeSpec.Http.OkResponse": {
"type": "object",
"description": "The request has succeeded."
},
"Workspace": {
"type": "object",
"description": "Workspace entity.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
}
},
"responses": {
"200": {},
"202": {
"headers": {
"location": "https://..."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3516,9 +3516,6 @@
}
],
"responses": {
"200": {
"description": "The request has succeeded."
},
"202": {
"description": "Resource operation accepted.",
"headers": {
Expand Down Expand Up @@ -5419,10 +5416,6 @@
"url"
]
},
"TypeSpec.Http.OkResponse": {
"type": "object",
"description": "The request has succeeded."
},
"Workspace": {
"type": "object",
"description": "Workspace entity.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
}
},
"responses": {
"200": {},
"202": {
"headers": {
"location": "https://..."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2959,9 +2959,6 @@
}
],
"responses": {
"200": {
"description": "The request has succeeded."
},
"202": {
"description": "Resource operation accepted.",
"headers": {
Expand Down Expand Up @@ -4585,10 +4582,6 @@
"url"
]
},
"TypeSpec.Http.OkResponse": {
"type": "object",
"description": "The request has succeeded."
},
"Workspace": {
"type": "object",
"description": "Workspace entity.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
}
},
"responses": {
"200": {},
"202": {
"headers": {
"location": "https://..."
Expand Down
Loading