ServiceInputOutputSpecificationArgs

data class ServiceInputOutputSpecificationArgs(val description: Output<String>? = null, val properties: Output<Map<String, TableSpecificationArgs>>, val title: Output<String>? = null, val type: Output<String>) : ConvertibleToJava<ServiceInputOutputSpecificationArgs>

The swagger 2.0 schema describing the service's inputs or outputs. See Swagger specification: http://swagger.io/specification/

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, properties: Output<Map<String, TableSpecificationArgs>>, title: Output<String>? = null, type: Output<String>)

Properties

Link copied to clipboard
val description: Output<String>? = null

The description of the Swagger schema.

Link copied to clipboard

Specifies a collection that contains the column schema for each input or output of the web service. For more information, see the Swagger specification.

Link copied to clipboard
val title: Output<String>? = null

The title of your Swagger schema.

Link copied to clipboard
val type: Output<String>

The type of the entity described in swagger. Always 'object'.

Functions

Link copied to clipboard
open override fun toJava(): ServiceInputOutputSpecificationArgs