commonMain.aws.sdk.kotlin.services.devicefarm.model.UpdateInstanceProfileRequest.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 UpdateInstanceProfileRequest private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the instance profile.
*/
public val arn: kotlin.String? = builder.arn
/**
* The updated description for your instance profile.
*/
public val description: kotlin.String? = builder.description
/**
* An array of strings that specifies the list of app packages that should not be cleaned up from the device after a test run is over.
*
* The list of packages is only considered if you set `packageCleanup` to `true`.
*/
public val excludeAppPackagesFromCleanup: List? = builder.excludeAppPackagesFromCleanup
/**
* The updated name for your instance profile.
*/
public val name: kotlin.String? = builder.name
/**
* The updated choice for whether you want to specify package cleanup. The default value is `false` for private devices.
*/
public val packageCleanup: kotlin.Boolean? = builder.packageCleanup
/**
* The updated choice for whether you want to reboot the device after use. The default value is `true`.
*/
public val rebootAfterUse: kotlin.Boolean? = builder.rebootAfterUse
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devicefarm.model.UpdateInstanceProfileRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateInstanceProfileRequest(")
append("arn=$arn,")
append("description=$description,")
append("excludeAppPackagesFromCleanup=$excludeAppPackagesFromCleanup,")
append("name=$name,")
append("packageCleanup=$packageCleanup,")
append("rebootAfterUse=$rebootAfterUse")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn?.hashCode() ?: 0
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (excludeAppPackagesFromCleanup?.hashCode() ?: 0)
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (packageCleanup?.hashCode() ?: 0)
result = 31 * result + (rebootAfterUse?.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 UpdateInstanceProfileRequest
if (arn != other.arn) return false
if (description != other.description) return false
if (excludeAppPackagesFromCleanup != other.excludeAppPackagesFromCleanup) return false
if (name != other.name) return false
if (packageCleanup != other.packageCleanup) return false
if (rebootAfterUse != other.rebootAfterUse) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devicefarm.model.UpdateInstanceProfileRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the instance profile.
*/
public var arn: kotlin.String? = null
/**
* The updated description for your instance profile.
*/
public var description: kotlin.String? = null
/**
* An array of strings that specifies the list of app packages that should not be cleaned up from the device after a test run is over.
*
* The list of packages is only considered if you set `packageCleanup` to `true`.
*/
public var excludeAppPackagesFromCleanup: List? = null
/**
* The updated name for your instance profile.
*/
public var name: kotlin.String? = null
/**
* The updated choice for whether you want to specify package cleanup. The default value is `false` for private devices.
*/
public var packageCleanup: kotlin.Boolean? = null
/**
* The updated choice for whether you want to reboot the device after use. The default value is `true`.
*/
public var rebootAfterUse: kotlin.Boolean? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devicefarm.model.UpdateInstanceProfileRequest) : this() {
this.arn = x.arn
this.description = x.description
this.excludeAppPackagesFromCleanup = x.excludeAppPackagesFromCleanup
this.name = x.name
this.packageCleanup = x.packageCleanup
this.rebootAfterUse = x.rebootAfterUse
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devicefarm.model.UpdateInstanceProfileRequest = UpdateInstanceProfileRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}