@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.04 kB
TypeScript
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>;
}