Api Import Args
data class ApiImportArgs(val contentFormat: Output<String>, val contentValue: Output<String>, val wsdlSelector: Output<ApiImportWsdlSelectorArgs>? = null) : ConvertibleToJava<ApiImportArgs>
Constructors
Link copied to clipboard
constructor(contentFormat: Output<String>, contentValue: Output<String>, wsdlSelector: Output<ApiImportWsdlSelectorArgs>? = null)
Properties
Link copied to clipboard
The format of the content from which the API Definition should be imported. Possible values are: openapi, openapi+json, openapi+json-link, openapi-link, swagger-json, swagger-link-json, wadl-link-json, wadl-xml, wsdl and wsdl-link.
Link copied to clipboard
The Content from which the API Definition should be imported. When a content_format of *-link-* is specified this must be a URL, otherwise this must be defined inline.
Link copied to clipboard
A wsdl_selector block as defined below, which allows you to limit the import of a WSDL to only a subset of the document. This can only be specified when content_format is wsdl or wsdl-link.