All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xyz.block.ftl.v1.CreateDeploymentResponse.kt Maven / Gradle / Ivy

There is a newer version: 0.133.2
Show newest version
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: xyz.block.ftl.v1.CreateDeploymentResponse in xyz/block/ftl/v1/ftl.proto
package xyz.block.ftl.v1

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 okio.ByteString

public class CreateDeploymentResponse(
  @field:WireField(
    tag = 1,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "deploymentName",
    schemaIndex = 0,
  )
  public val deployment_name: String = "",
  /**
   * Currently active deployment for this module, if any.
   */
  @field:WireField(
    tag = 2,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    jsonName = "activeDeploymentName",
    schemaIndex = 1,
  )
  public val active_deployment_name: 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 CreateDeploymentResponse) return false
    if (unknownFields != other.unknownFields) return false
    if (deployment_name != other.deployment_name) return false
    if (active_deployment_name != other.active_deployment_name) return false
    return true
  }

  override fun hashCode(): Int {
    var result = super.hashCode
    if (result == 0) {
      result = unknownFields.hashCode()
      result = result * 37 + deployment_name.hashCode()
      result = result * 37 + (active_deployment_name?.hashCode() ?: 0)
      super.hashCode = result
    }
    return result
  }

  override fun toString(): String {
    val result = mutableListOf()
    result += """deployment_name=${sanitize(deployment_name)}"""
    if (active_deployment_name != null) result +=
        """active_deployment_name=${sanitize(active_deployment_name)}"""
    return result.joinToString(prefix = "CreateDeploymentResponse{", separator = ", ", postfix =
        "}")
  }

  public fun copy(
    deployment_name: String = this.deployment_name,
    active_deployment_name: String? = this.active_deployment_name,
    unknownFields: ByteString = this.unknownFields,
  ): CreateDeploymentResponse = CreateDeploymentResponse(deployment_name, active_deployment_name,
      unknownFields)

  public companion object {
    @JvmField
    public val ADAPTER: ProtoAdapter = object :
        ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      CreateDeploymentResponse::class, 
      "type.googleapis.com/xyz.block.ftl.v1.CreateDeploymentResponse", 
      PROTO_3, 
      null, 
      "xyz/block/ftl/v1/ftl.proto"
    ) {
      override fun encodedSize(`value`: CreateDeploymentResponse): Int {
        var size = value.unknownFields.size
        if (value.deployment_name != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1,
            value.deployment_name)
        size += ProtoAdapter.STRING.encodedSizeWithTag(2, value.active_deployment_name)
        return size
      }

      override fun encode(writer: ProtoWriter, `value`: CreateDeploymentResponse) {
        if (value.deployment_name != "") ProtoAdapter.STRING.encodeWithTag(writer, 1,
            value.deployment_name)
        ProtoAdapter.STRING.encodeWithTag(writer, 2, value.active_deployment_name)
        writer.writeBytes(value.unknownFields)
      }

      override fun encode(writer: ReverseProtoWriter, `value`: CreateDeploymentResponse) {
        writer.writeBytes(value.unknownFields)
        ProtoAdapter.STRING.encodeWithTag(writer, 2, value.active_deployment_name)
        if (value.deployment_name != "") ProtoAdapter.STRING.encodeWithTag(writer, 1,
            value.deployment_name)
      }

      override fun decode(reader: ProtoReader): CreateDeploymentResponse {
        var deployment_name: String = ""
        var active_deployment_name: String? = null
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> deployment_name = ProtoAdapter.STRING.decode(reader)
            2 -> active_deployment_name = ProtoAdapter.STRING.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return CreateDeploymentResponse(
          deployment_name = deployment_name,
          active_deployment_name = active_deployment_name,
          unknownFields = unknownFields
        )
      }

      override fun redact(`value`: CreateDeploymentResponse): CreateDeploymentResponse = value.copy(
        unknownFields = ByteString.EMPTY
      )
    }

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy