listSchemaVersions

Lists schema versions with the provided information.

Samples

// ListSchemaVersions happy path for an example schema version.
val resp = iotManagedIntegrationsClient.listSchemaVersions {
    schemaId = "example.ColorControl"
    type = SchemaVersionType.fromValue("capability")
}
// ListSchemaVersions by version.
val resp = iotManagedIntegrationsClient.listSchemaVersions {
    type = SchemaVersionType.fromValue("capability")
    semanticVersion = "34.56"
}