commonMain.aws.sdk.kotlin.services.devicefarm.model.UpdateTestGridProjectRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devicefarm-jvm Show documentation
Show all versions of devicefarm-jvm Show documentation
The AWS SDK for Kotlin client for Device Farm
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devicefarm.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateTestGridProjectRequest private constructor(builder: Builder) {
/**
* Human-readable description for the project.
*/
public val description: kotlin.String? = builder.description
/**
* Human-readable name for the project.
*/
public val name: kotlin.String? = builder.name
/**
* ARN of the project to update.
*/
public val projectArn: kotlin.String? = builder.projectArn
/**
* The VPC security groups and subnets that are attached to a project.
*/
public val vpcConfig: aws.sdk.kotlin.services.devicefarm.model.TestGridVpcConfig? = builder.vpcConfig
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devicefarm.model.UpdateTestGridProjectRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateTestGridProjectRequest(")
append("description=$description,")
append("name=$name,")
append("projectArn=$projectArn,")
append("vpcConfig=$vpcConfig")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = description?.hashCode() ?: 0
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (projectArn?.hashCode() ?: 0)
result = 31 * result + (vpcConfig?.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 UpdateTestGridProjectRequest
if (description != other.description) return false
if (name != other.name) return false
if (projectArn != other.projectArn) return false
if (vpcConfig != other.vpcConfig) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devicefarm.model.UpdateTestGridProjectRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Human-readable description for the project.
*/
public var description: kotlin.String? = null
/**
* Human-readable name for the project.
*/
public var name: kotlin.String? = null
/**
* ARN of the project to update.
*/
public var projectArn: kotlin.String? = null
/**
* The VPC security groups and subnets that are attached to a project.
*/
public var vpcConfig: aws.sdk.kotlin.services.devicefarm.model.TestGridVpcConfig? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devicefarm.model.UpdateTestGridProjectRequest) : this() {
this.description = x.description
this.name = x.name
this.projectArn = x.projectArn
this.vpcConfig = x.vpcConfig
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devicefarm.model.UpdateTestGridProjectRequest = UpdateTestGridProjectRequest(this)
/**
* construct an [aws.sdk.kotlin.services.devicefarm.model.TestGridVpcConfig] inside the given [block]
*/
public fun vpcConfig(block: aws.sdk.kotlin.services.devicefarm.model.TestGridVpcConfig.Builder.() -> kotlin.Unit) {
this.vpcConfig = aws.sdk.kotlin.services.devicefarm.model.TestGridVpcConfig.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}