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

78 lines (77 loc) 2.04 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * This returns the list of interfaces in the WSDL * * Uses Azure REST API version 2016-06-01. */ export declare function listCustomApiWsdlInterfaces(args: ListCustomApiWsdlInterfacesArgs, opts?: pulumi.InvokeOptions): Promise<ListCustomApiWsdlInterfacesResult>; export interface ListCustomApiWsdlInterfacesArgs { /** * The WSDL content */ content?: string; /** * The WSDL import method */ importMethod?: string | enums.web.WsdlImportMethod; /** * The location */ location: string; /** * The service with name and endpoint names */ service?: inputs.web.WsdlService; /** * Subscription Id */ subscriptionId?: string; /** * The WSDL URL */ url?: string; } /** * A list of custom API WSDL interfaces */ export interface ListCustomApiWsdlInterfacesResult { /** * Collection of WSDL interfaces */ readonly value?: outputs.web.WsdlServiceResponse[]; } /** * This returns the list of interfaces in the WSDL * * Uses Azure REST API version 2016-06-01. */ export declare function listCustomApiWsdlInterfacesOutput(args: ListCustomApiWsdlInterfacesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListCustomApiWsdlInterfacesResult>; export interface ListCustomApiWsdlInterfacesOutputArgs { /** * The WSDL content */ content?: pulumi.Input<string>; /** * The WSDL import method */ importMethod?: pulumi.Input<string | enums.web.WsdlImportMethod>; /** * The location */ location: pulumi.Input<string>; /** * The service with name and endpoint names */ service?: pulumi.Input<inputs.web.WsdlServiceArgs>; /** * Subscription Id */ subscriptionId?: pulumi.Input<string>; /** * The WSDL URL */ url?: pulumi.Input<string>; }