import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Api Deployment Specification resource in Oracle Cloud Infrastructure API Gateway service. * * Gets an API Deployment specification by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApiDeploymentSpecification = oci.apigateway.getApiDeploymentSpecification({ * apiId: testApi.id, * }); * ``` */ export declare function getApiDeploymentSpecification(args: GetApiDeploymentSpecificationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApiDeploymentSpecification. */ export interface GetApiDeploymentSpecificationArgs { /** * The ocid of the API. */ apiId: string; } /** * A collection of values returned by getApiDeploymentSpecification. */ export interface GetApiDeploymentSpecificationResult { readonly apiId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Policies controlling the pushing of logs to Oracle Cloud Infrastructure Public Logging. */ readonly loggingPolicies: outputs.ApiGateway.GetApiDeploymentSpecificationLoggingPolicy[]; /** * Behavior applied to any requests received by the API on this route. */ readonly requestPolicies: outputs.ApiGateway.GetApiDeploymentSpecificationRequestPolicy[]; /** * A list of routes that this API exposes. */ readonly routes: outputs.ApiGateway.GetApiDeploymentSpecificationRoute[]; } /** * This data source provides details about a specific Api Deployment Specification resource in Oracle Cloud Infrastructure API Gateway service. * * Gets an API Deployment specification by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testApiDeploymentSpecification = oci.apigateway.getApiDeploymentSpecification({ * apiId: testApi.id, * }); * ``` */ export declare function getApiDeploymentSpecificationOutput(args: GetApiDeploymentSpecificationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApiDeploymentSpecification. */ export interface GetApiDeploymentSpecificationOutputArgs { /** * The ocid of the API. */ apiId: pulumi.Input; } //# sourceMappingURL=getApiDeploymentSpecification.d.ts.map