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

commonMain.aws.sdk.kotlin.services.proton.model.UpdateTemplateSyncConfigRequest.kt Maven / Gradle / Ivy

There is a newer version: 1.3.99
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.proton.model



public class UpdateTemplateSyncConfigRequest private constructor(builder: Builder) {
    /**
     * The repository branch for your template.
     */
    public val branch: kotlin.String? = builder.branch
    /**
     * The repository name (for example, `myrepos/myrepo`).
     */
    public val repositoryName: kotlin.String? = builder.repositoryName
    /**
     * The repository provider.
     */
    public val repositoryProvider: aws.sdk.kotlin.services.proton.model.RepositoryProvider? = builder.repositoryProvider
    /**
     * A subdirectory path to your template bundle version. When included, limits the template bundle search to this repository directory.
     */
    public val subdirectory: kotlin.String? = builder.subdirectory
    /**
     * The synced template name.
     */
    public val templateName: kotlin.String? = builder.templateName
    /**
     * The synced template type.
     */
    public val templateType: aws.sdk.kotlin.services.proton.model.TemplateType? = builder.templateType

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

    override fun toString(): kotlin.String = buildString {
        append("UpdateTemplateSyncConfigRequest(")
        append("branch=$branch,")
        append("repositoryName=$repositoryName,")
        append("repositoryProvider=$repositoryProvider,")
        append("subdirectory=$subdirectory,")
        append("templateName=$templateName,")
        append("templateType=$templateType")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = branch?.hashCode() ?: 0
        result = 31 * result + (repositoryName?.hashCode() ?: 0)
        result = 31 * result + (repositoryProvider?.hashCode() ?: 0)
        result = 31 * result + (subdirectory?.hashCode() ?: 0)
        result = 31 * result + (templateName?.hashCode() ?: 0)
        result = 31 * result + (templateType?.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 UpdateTemplateSyncConfigRequest

        if (branch != other.branch) return false
        if (repositoryName != other.repositoryName) return false
        if (repositoryProvider != other.repositoryProvider) return false
        if (subdirectory != other.subdirectory) return false
        if (templateName != other.templateName) return false
        if (templateType != other.templateType) return false

        return true
    }

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

    public class Builder {
        /**
         * The repository branch for your template.
         */
        public var branch: kotlin.String? = null
        /**
         * The repository name (for example, `myrepos/myrepo`).
         */
        public var repositoryName: kotlin.String? = null
        /**
         * The repository provider.
         */
        public var repositoryProvider: aws.sdk.kotlin.services.proton.model.RepositoryProvider? = null
        /**
         * A subdirectory path to your template bundle version. When included, limits the template bundle search to this repository directory.
         */
        public var subdirectory: kotlin.String? = null
        /**
         * The synced template name.
         */
        public var templateName: kotlin.String? = null
        /**
         * The synced template type.
         */
        public var templateType: aws.sdk.kotlin.services.proton.model.TemplateType? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.proton.model.UpdateTemplateSyncConfigRequest) : this() {
            this.branch = x.branch
            this.repositoryName = x.repositoryName
            this.repositoryProvider = x.repositoryProvider
            this.subdirectory = x.subdirectory
            this.templateName = x.templateName
            this.templateType = x.templateType
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.proton.model.UpdateTemplateSyncConfigRequest = UpdateTemplateSyncConfigRequest(this)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy