commonMain.aws.sdk.kotlin.services.transfer.model.ImportSshPublicKeyRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transfer-jvm Show documentation
Show all versions of transfer-jvm Show documentation
The AWS SDK for Kotlin client for Transfer
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.transfer.model
import aws.smithy.kotlin.runtime.SdkDsl
public class ImportSshPublicKeyRequest private constructor(builder: Builder) {
/**
* A system-assigned unique identifier for a server.
*/
public val serverId: kotlin.String? = builder.serverId
/**
* The public key portion of an SSH key pair.
*
* Transfer Family accepts RSA, ECDSA, and ED25519 keys.
*/
public val sshPublicKeyBody: kotlin.String? = builder.sshPublicKeyBody
/**
* The name of the Transfer Family user that is assigned to one or more servers.
*/
public val userName: kotlin.String? = builder.userName
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.transfer.model.ImportSshPublicKeyRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ImportSshPublicKeyRequest(")
append("serverId=$serverId,")
append("sshPublicKeyBody=$sshPublicKeyBody,")
append("userName=$userName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = serverId?.hashCode() ?: 0
result = 31 * result + (sshPublicKeyBody?.hashCode() ?: 0)
result = 31 * result + (userName?.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 ImportSshPublicKeyRequest
if (serverId != other.serverId) return false
if (sshPublicKeyBody != other.sshPublicKeyBody) return false
if (userName != other.userName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.transfer.model.ImportSshPublicKeyRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A system-assigned unique identifier for a server.
*/
public var serverId: kotlin.String? = null
/**
* The public key portion of an SSH key pair.
*
* Transfer Family accepts RSA, ECDSA, and ED25519 keys.
*/
public var sshPublicKeyBody: kotlin.String? = null
/**
* The name of the Transfer Family user that is assigned to one or more servers.
*/
public var userName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.transfer.model.ImportSshPublicKeyRequest) : this() {
this.serverId = x.serverId
this.sshPublicKeyBody = x.sshPublicKeyBody
this.userName = x.userName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.transfer.model.ImportSshPublicKeyRequest = ImportSshPublicKeyRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}