xyz.block.ftl.v1.console.DeploymentCreatedEvent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftl-runtime Show documentation
Show all versions of ftl-runtime Show documentation
Towards a 𝝺-calculus for large-scale systems
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: xyz.block.ftl.v1.console.DeploymentCreatedEvent in xyz/block/ftl/v1/console/console.proto
@file:Suppress("DEPRECATION")
package xyz.block.ftl.v1.console
import com.squareup.wire.FieldEncoding
import com.squareup.wire.Message
import com.squareup.wire.ProtoAdapter
import com.squareup.wire.ProtoReader
import com.squareup.wire.ProtoWriter
import com.squareup.wire.ReverseProtoWriter
import com.squareup.wire.Syntax.PROTO_3
import com.squareup.wire.WireField
import com.squareup.wire.`internal`.JvmField
import com.squareup.wire.`internal`.sanitize
import kotlin.Any
import kotlin.AssertionError
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.DeprecationLevel
import kotlin.Int
import kotlin.Long
import kotlin.Nothing
import kotlin.String
import kotlin.Suppress
import okio.ByteString
public class DeploymentCreatedEvent(
@field:WireField(
tag = 1,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
schemaIndex = 0,
)
public val key: String = "",
@field:WireField(
tag = 2,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
schemaIndex = 1,
)
public val language: String = "",
@field:WireField(
tag = 3,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
jsonName = "moduleName",
schemaIndex = 2,
)
public val module_name: String = "",
@field:WireField(
tag = 4,
adapter = "com.squareup.wire.ProtoAdapter#INT32",
label = WireField.Label.OMIT_IDENTITY,
jsonName = "minReplicas",
schemaIndex = 3,
)
public val min_replicas: Int = 0,
@field:WireField(
tag = 5,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
schemaIndex = 4,
)
public val replaced: String? = null,
unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
@Deprecated(
message = "Shouldn't be used in Kotlin",
level = DeprecationLevel.HIDDEN,
)
override fun newBuilder(): Nothing = throw
AssertionError("Builders are deprecated and only available in a javaInterop build; see https://square.github.io/wire/wire_compiler/#kotlin")
override fun equals(other: Any?): Boolean {
if (other === this) return true
if (other !is DeploymentCreatedEvent) return false
if (unknownFields != other.unknownFields) return false
if (key != other.key) return false
if (language != other.language) return false
if (module_name != other.module_name) return false
if (min_replicas != other.min_replicas) return false
if (replaced != other.replaced) return false
return true
}
override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + key.hashCode()
result = result * 37 + language.hashCode()
result = result * 37 + module_name.hashCode()
result = result * 37 + min_replicas.hashCode()
result = result * 37 + (replaced?.hashCode() ?: 0)
super.hashCode = result
}
return result
}
override fun toString(): String {
val result = mutableListOf()
result += """key=${sanitize(key)}"""
result += """language=${sanitize(language)}"""
result += """module_name=${sanitize(module_name)}"""
result += """min_replicas=$min_replicas"""
if (replaced != null) result += """replaced=${sanitize(replaced)}"""
return result.joinToString(prefix = "DeploymentCreatedEvent{", separator = ", ", postfix = "}")
}
public fun copy(
key: String = this.key,
language: String = this.language,
module_name: String = this.module_name,
min_replicas: Int = this.min_replicas,
replaced: String? = this.replaced,
unknownFields: ByteString = this.unknownFields,
): DeploymentCreatedEvent = DeploymentCreatedEvent(key, language, module_name, min_replicas,
replaced, unknownFields)
public companion object {
@JvmField
public val ADAPTER: ProtoAdapter = object :
ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
DeploymentCreatedEvent::class,
"type.googleapis.com/xyz.block.ftl.v1.console.DeploymentCreatedEvent",
PROTO_3,
null,
"xyz/block/ftl/v1/console/console.proto"
) {
override fun encodedSize(`value`: DeploymentCreatedEvent): Int {
var size = value.unknownFields.size
if (value.key != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.key)
if (value.language != "") size += ProtoAdapter.STRING.encodedSizeWithTag(2, value.language)
if (value.module_name != "") size += ProtoAdapter.STRING.encodedSizeWithTag(3,
value.module_name)
if (value.min_replicas != 0) size += ProtoAdapter.INT32.encodedSizeWithTag(4,
value.min_replicas)
size += ProtoAdapter.STRING.encodedSizeWithTag(5, value.replaced)
return size
}
override fun encode(writer: ProtoWriter, `value`: DeploymentCreatedEvent) {
if (value.key != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.key)
if (value.language != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.language)
if (value.module_name != "") ProtoAdapter.STRING.encodeWithTag(writer, 3, value.module_name)
if (value.min_replicas != 0) ProtoAdapter.INT32.encodeWithTag(writer, 4, value.min_replicas)
ProtoAdapter.STRING.encodeWithTag(writer, 5, value.replaced)
writer.writeBytes(value.unknownFields)
}
override fun encode(writer: ReverseProtoWriter, `value`: DeploymentCreatedEvent) {
writer.writeBytes(value.unknownFields)
ProtoAdapter.STRING.encodeWithTag(writer, 5, value.replaced)
if (value.min_replicas != 0) ProtoAdapter.INT32.encodeWithTag(writer, 4, value.min_replicas)
if (value.module_name != "") ProtoAdapter.STRING.encodeWithTag(writer, 3, value.module_name)
if (value.language != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.language)
if (value.key != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.key)
}
override fun decode(reader: ProtoReader): DeploymentCreatedEvent {
var key: String = ""
var language: String = ""
var module_name: String = ""
var min_replicas: Int = 0
var replaced: String? = null
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> key = ProtoAdapter.STRING.decode(reader)
2 -> language = ProtoAdapter.STRING.decode(reader)
3 -> module_name = ProtoAdapter.STRING.decode(reader)
4 -> min_replicas = ProtoAdapter.INT32.decode(reader)
5 -> replaced = ProtoAdapter.STRING.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return DeploymentCreatedEvent(
key = key,
language = language,
module_name = module_name,
min_replicas = min_replicas,
replaced = replaced,
unknownFields = unknownFields
)
}
override fun redact(`value`: DeploymentCreatedEvent): DeploymentCreatedEvent = value.copy(
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy