UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

99 lines (98 loc) 4.5 kB
import * as pulumi from "@pulumi/pulumi"; /** * Get the schema configuration at the API level. * * Uses Azure REST API version 2022-09-01-preview. * * Other available API versions: 2023-03-01-preview, 2023-05-01-preview, 2023-09-01-preview, 2024-05-01, 2024-06-01-preview, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native apimanagement [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getWorkspaceApiSchema(args: GetWorkspaceApiSchemaArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkspaceApiSchemaResult>; export interface GetWorkspaceApiSchemaArgs { /** * API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number. */ apiId: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * Schema id identifier. Must be unique in the current API Management service instance. */ schemaId: string; /** * The name of the API Management service. */ serviceName: string; /** * Workspace identifier. Must be unique in the current API Management service instance. */ workspaceId: string; } /** * API Schema Contract details. */ export interface GetWorkspaceApiSchemaResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Types definitions. Used for Swagger/OpenAPI v2/v3 schemas only, null otherwise. */ readonly components?: any; /** * Must be a valid a media type used in a Content-Type header as defined in the RFC 2616. Media type of the schema document (e.g. application/json, application/xml). </br> - `Swagger` Schema use `application/vnd.ms-azure-apim.swagger.definitions+json` </br> - `WSDL` Schema use `application/vnd.ms-azure-apim.xsd+xml` </br> - `OpenApi` Schema use `application/vnd.oai.openapi.components+json` </br> - `WADL Schema` use `application/vnd.ms-azure-apim.wadl.grammars+xml`. */ readonly contentType: string; /** * Types definitions. Used for Swagger/OpenAPI v1 schemas only, null otherwise. */ readonly definitions?: any; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * The name of the resource */ readonly name: string; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; /** * Json escaped string defining the document representing the Schema. Used for schemas other than Swagger/OpenAPI. */ readonly value?: string; } /** * Get the schema configuration at the API level. * * Uses Azure REST API version 2022-09-01-preview. * * Other available API versions: 2023-03-01-preview, 2023-05-01-preview, 2023-09-01-preview, 2024-05-01, 2024-06-01-preview, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native apimanagement [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getWorkspaceApiSchemaOutput(args: GetWorkspaceApiSchemaOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkspaceApiSchemaResult>; export interface GetWorkspaceApiSchemaOutputArgs { /** * API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number. */ apiId: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * Schema id identifier. Must be unique in the current API Management service instance. */ schemaId: pulumi.Input<string>; /** * The name of the API Management service. */ serviceName: pulumi.Input<string>; /** * Workspace identifier. Must be unique in the current API Management service instance. */ workspaceId: pulumi.Input<string>; }