
commonMain.aws.sdk.kotlin.services.appmesh.model.VirtualRouterData.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appmesh.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* An object that represents a virtual router returned by a describe operation.
*/
public class VirtualRouterData private constructor(builder: Builder) {
/**
* The name of the service mesh that the virtual router resides in.
*/
public val meshName: kotlin.String = requireNotNull(builder.meshName) { "A non-null value must be provided for meshName" }
/**
* The associated metadata for the virtual router.
*/
public val metadata: aws.sdk.kotlin.services.appmesh.model.ResourceMetadata? = builder.metadata
/**
* The specifications of the virtual router.
*/
public val spec: aws.sdk.kotlin.services.appmesh.model.VirtualRouterSpec? = builder.spec
/**
* The current status of the virtual router.
*/
public val status: aws.sdk.kotlin.services.appmesh.model.VirtualRouterStatus? = builder.status
/**
* The name of the virtual router.
*/
public val virtualRouterName: kotlin.String = requireNotNull(builder.virtualRouterName) { "A non-null value must be provided for virtualRouterName" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appmesh.model.VirtualRouterData = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("VirtualRouterData(")
append("meshName=$meshName,")
append("metadata=$metadata,")
append("spec=$spec,")
append("status=$status,")
append("virtualRouterName=$virtualRouterName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = meshName.hashCode()
result = 31 * result + (metadata?.hashCode() ?: 0)
result = 31 * result + (spec?.hashCode() ?: 0)
result = 31 * result + (status?.hashCode() ?: 0)
result = 31 * result + (virtualRouterName.hashCode())
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as VirtualRouterData
if (meshName != other.meshName) return false
if (metadata != other.metadata) return false
if (spec != other.spec) return false
if (status != other.status) return false
if (virtualRouterName != other.virtualRouterName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appmesh.model.VirtualRouterData = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the service mesh that the virtual router resides in.
*/
public var meshName: kotlin.String? = null
/**
* The associated metadata for the virtual router.
*/
public var metadata: aws.sdk.kotlin.services.appmesh.model.ResourceMetadata? = null
/**
* The specifications of the virtual router.
*/
public var spec: aws.sdk.kotlin.services.appmesh.model.VirtualRouterSpec? = null
/**
* The current status of the virtual router.
*/
public var status: aws.sdk.kotlin.services.appmesh.model.VirtualRouterStatus? = null
/**
* The name of the virtual router.
*/
public var virtualRouterName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.appmesh.model.VirtualRouterData) : this() {
this.meshName = x.meshName
this.metadata = x.metadata
this.spec = x.spec
this.status = x.status
this.virtualRouterName = x.virtualRouterName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.appmesh.model.VirtualRouterData = VirtualRouterData(this)
/**
* construct an [aws.sdk.kotlin.services.appmesh.model.ResourceMetadata] inside the given [block]
*/
public fun metadata(block: aws.sdk.kotlin.services.appmesh.model.ResourceMetadata.Builder.() -> kotlin.Unit) {
this.metadata = aws.sdk.kotlin.services.appmesh.model.ResourceMetadata.invoke(block)
}
/**
* construct an [aws.sdk.kotlin.services.appmesh.model.VirtualRouterSpec] inside the given [block]
*/
public fun spec(block: aws.sdk.kotlin.services.appmesh.model.VirtualRouterSpec.Builder.() -> kotlin.Unit) {
this.spec = aws.sdk.kotlin.services.appmesh.model.VirtualRouterSpec.invoke(block)
}
/**
* construct an [aws.sdk.kotlin.services.appmesh.model.VirtualRouterStatus] inside the given [block]
*/
public fun status(block: aws.sdk.kotlin.services.appmesh.model.VirtualRouterStatus.Builder.() -> kotlin.Unit) {
this.status = aws.sdk.kotlin.services.appmesh.model.VirtualRouterStatus.invoke(block)
}
internal fun correctErrors(): Builder {
if (meshName == null) meshName = ""
if (virtualRouterName == null) virtualRouterName = ""
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy