Package-level declarations
Types
Link copied to clipboard
data class CheckSchemaRegistered(val subject: Subject, val schema: Schema) : NullableAutoMarshalledAction<RegisteredSchemaVersion> , SchemaRegistryAction<RegisteredSchemaVersion?>
Link copied to clipboard
data class GetSchemaById(val id: SchemaId) : NullableAutoMarshalledAction<SchemaById> , SchemaRegistryAction<SchemaById?>
Link copied to clipboard
object GetSubjects : NonNullAutoMarshalledAction<Array<Subject>> , SchemaRegistryAction<Array<Subject>>
Link copied to clipboard
data class GetSubjectVersion(val subject: Subject, val version: Version) : NullableAutoMarshalledAction<RegisteredSchemaVersion> , SchemaRegistryAction<RegisteredSchemaVersion?>
Link copied to clipboard
data class GetSubjectVersions(val subject: Subject) : NonNullAutoMarshalledAction<Array<Version>> , SchemaRegistryAction<Array<Version>>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@JsonSerializable
Link copied to clipboard
data class RegisterSchema(val subject: Subject, val schema: Schema, val schemaType: SchemaType, val references: List<References>) : NonNullAutoMarshalledAction<RegisteredSchema> , SchemaRegistryAction<RegisteredSchema>
Link copied to clipboard
data class RegisterSchemaVersionReq(val schema: Schema, val schemaType: SchemaType, val references: List<References>)
Link copied to clipboard