commonMain.aws.sdk.kotlin.services.codecatalyst.model.RepositoryInput.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codecatalyst-jvm Show documentation
Show all versions of codecatalyst-jvm Show documentation
The AWS SDK for Kotlin client for CodeCatalyst
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codecatalyst.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Information about a repository that will be cloned to a Dev Environment.
*/
public class RepositoryInput private constructor(builder: Builder) {
/**
* The name of the branch in a source repository.
*/
public val branchName: kotlin.String? = builder.branchName
/**
* The name of the source repository.
*/
public val repositoryName: kotlin.String = requireNotNull(builder.repositoryName) { "A non-null value must be provided for repositoryName" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codecatalyst.model.RepositoryInput = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RepositoryInput(")
append("branchName=$branchName,")
append("repositoryName=$repositoryName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = branchName?.hashCode() ?: 0
result = 31 * result + (repositoryName.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 RepositoryInput
if (branchName != other.branchName) return false
if (repositoryName != other.repositoryName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codecatalyst.model.RepositoryInput = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the branch in a source repository.
*/
public var branchName: kotlin.String? = null
/**
* The name of the source repository.
*/
public var repositoryName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codecatalyst.model.RepositoryInput) : this() {
this.branchName = x.branchName
this.repositoryName = x.repositoryName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codecatalyst.model.RepositoryInput = RepositoryInput(this)
internal fun correctErrors(): Builder {
if (repositoryName == null) repositoryName = ""
return this
}
}
}