Skip to content

Commit

Permalink
generated by tool
Browse files Browse the repository at this point in the history
  • Loading branch information
msft-akhatri committed Feb 17, 2025
1 parent a0ed6a8 commit cf5837e
Show file tree
Hide file tree
Showing 4 changed files with 2,561 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* PLEASE DO NOT REMOVE - USED FOR CONVERTER METRICS
* Generated by package: @autorest/openapi-to-typespec
* Parameters used:
* isFullCompatible: false
* guessResourceKey: false
* Version: 0.10.9
* Date: 2025-02-17T08:52:03.812Z
*/
import "@typespec/rest";
import "@typespec/http";
import "./routes.tsp";

using TypeSpec.Rest;
using TypeSpec.Http;
using TypeSpec.Versioning;

/**
* APIs documentation for Azure AgPlatform DataPlane Service.
*/
@useAuth(ApiKeyAuth<ApiKeyLocation.header, "Authorization">)
@service({
title: "Azure AgFoodPlatform Data Plane Service",
})
@versioned(Versions)
@server(
"{$host}",
"APIs documentation for Azure AgPlatform DataPlane Service.",
{
$host: string,
}
)
namespace AzureAgFoodPlatformDataPlaneService;

/**
* The available API versions.
*/
enum Versions {
/**
* The 2024-11-01-preview API version.
*/
@useDependency(Azure.Core.Versions.v1_0_Preview_1)
v2024_11_01_preview: "2024-11-01-preview",
}
Loading

0 comments on commit cf5837e

Please sign in to comment.