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
@@ -0,0 +1,55 @@
import "@typespec/http";
import "@typespec/rest";
import "@typespec/versioning";
import "@azure-tools/typespec-azure-core";
import "@azure-tools/typespec-azure-resource-manager";

using Azure.ResourceManager;

namespace Microsoft.ComputeBulkActions;

@doc("ApiError for Fleet")
model ApiError is ApiErrorBase {
@identifiers(#["message", "target"])
@doc("The API error details")
details?: Array<ApiErrorBase>;

@doc("The API inner error")
innererror?: InnerError;
}

@doc("API error base.")
model ApiErrorBase {
@doc("The error code.")
code?: string;

@doc("The target of the particular error.")
target?: string;

@doc("The error message.")
message?: string;
}

@doc("Inner error details.")
model InnerError {
@doc("The exception type.")
exceptionType?: string;

@doc("The internal error message or exception dump.")
errorDetail?: string;
}

@doc("Describes a reference to a sub-resource.")
model SubResource {
@doc("The ID of the sub-resource.")
id?: string;
}

@doc("Describes a reference to Key Vault Secret")
model KeyVaultSecretReference {
@doc("The URL referencing a secret in a Key Vault.")
secretUrl: string;

@doc("The relative URL of the Key Vault containing the secret.")
sourceVault: SubResource;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"title": "BulkActions_Cancel - generated by [MaximumSet] rule",
"operationId": "BulkActions_Cancel",
"parameters": {
"api-version": "2026-02-01-preview",
"subscriptionId": "50352BBD-59F1-4EE2-BA9C-A6E51B0B1B2B",
"resourceGroupName": "rgcomputebulkactions",
"name": "3ec2ab23-9f13-4328-85c8-21928acbc7b8",
"location": "eastus2euap"
},
"responses": {
"202": {
"headers": {
"location": "https://contoso.com/operationstatus"
}
}
}
}
Loading
Loading