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

commonMain.aws.sdk.kotlin.services.appmesh.model.MeshData.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 service mesh returned by a describe operation.
 */
public class MeshData private constructor(builder: Builder) {
    /**
     * The name of the service mesh.
     */
    public val meshName: kotlin.String = requireNotNull(builder.meshName) { "A non-null value must be provided for meshName" }
    /**
     * The associated metadata for the service mesh.
     */
    public val metadata: aws.sdk.kotlin.services.appmesh.model.ResourceMetadata? = builder.metadata
    /**
     * The associated specification for the service mesh.
     */
    public val spec: aws.sdk.kotlin.services.appmesh.model.MeshSpec? = builder.spec
    /**
     * The status of the service mesh.
     */
    public val status: aws.sdk.kotlin.services.appmesh.model.MeshStatus? = builder.status

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.appmesh.model.MeshData = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("MeshData(")
        append("meshName=$meshName,")
        append("metadata=$metadata,")
        append("spec=$spec,")
        append("status=$status")
        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)
        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 MeshData

        if (meshName != other.meshName) return false
        if (metadata != other.metadata) return false
        if (spec != other.spec) return false
        if (status != other.status) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.appmesh.model.MeshData = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The name of the service mesh.
         */
        public var meshName: kotlin.String? = null
        /**
         * The associated metadata for the service mesh.
         */
        public var metadata: aws.sdk.kotlin.services.appmesh.model.ResourceMetadata? = null
        /**
         * The associated specification for the service mesh.
         */
        public var spec: aws.sdk.kotlin.services.appmesh.model.MeshSpec? = null
        /**
         * The status of the service mesh.
         */
        public var status: aws.sdk.kotlin.services.appmesh.model.MeshStatus? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.appmesh.model.MeshData) : this() {
            this.meshName = x.meshName
            this.metadata = x.metadata
            this.spec = x.spec
            this.status = x.status
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.appmesh.model.MeshData = MeshData(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.MeshSpec] inside the given [block]
         */
        public fun spec(block: aws.sdk.kotlin.services.appmesh.model.MeshSpec.Builder.() -> kotlin.Unit) {
            this.spec = aws.sdk.kotlin.services.appmesh.model.MeshSpec.invoke(block)
        }

        /**
         * construct an [aws.sdk.kotlin.services.appmesh.model.MeshStatus] inside the given [block]
         */
        public fun status(block: aws.sdk.kotlin.services.appmesh.model.MeshStatus.Builder.() -> kotlin.Unit) {
            this.status = aws.sdk.kotlin.services.appmesh.model.MeshStatus.invoke(block)
        }

        internal fun correctErrors(): Builder {
            if (meshName == null) meshName = ""
            return this
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy