commonMain.aws.sdk.kotlin.services.resourcegroups.model.UpdateGroupQueryRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resourcegroups-jvm Show documentation
Show all versions of resourcegroups-jvm Show documentation
The AWS SDK for Kotlin client for Resource Groups
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.resourcegroups.model
import aws.smithy.kotlin.runtime.SdkDsl
public class UpdateGroupQueryRequest private constructor(builder: Builder) {
/**
* The name or the Amazon resource name (ARN) of the resource group to query.
*/
public val group: kotlin.String? = builder.group
/**
* Don't use this parameter. Use `Group` instead.
*/
@Deprecated("This field is deprecated, use Group instead.")
public val groupName: kotlin.String? = builder.groupName
/**
* The resource query to determine which Amazon Web Services resources are members of this resource group.
*
* A resource group can contain either a `Configuration` or a `ResourceQuery`, but not both.
*/
public val resourceQuery: aws.sdk.kotlin.services.resourcegroups.model.ResourceQuery? = builder.resourceQuery
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.resourcegroups.model.UpdateGroupQueryRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateGroupQueryRequest(")
append("group=$group,")
append("groupName=$groupName,")
append("resourceQuery=$resourceQuery")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = group?.hashCode() ?: 0
result = 31 * result + (groupName?.hashCode() ?: 0)
result = 31 * result + (resourceQuery?.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 UpdateGroupQueryRequest
if (group != other.group) return false
if (groupName != other.groupName) return false
if (resourceQuery != other.resourceQuery) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resourcegroups.model.UpdateGroupQueryRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name or the Amazon resource name (ARN) of the resource group to query.
*/
public var group: kotlin.String? = null
/**
* Don't use this parameter. Use `Group` instead.
*/
@Deprecated("This field is deprecated, use Group instead.")
public var groupName: kotlin.String? = null
/**
* The resource query to determine which Amazon Web Services resources are members of this resource group.
*
* A resource group can contain either a `Configuration` or a `ResourceQuery`, but not both.
*/
public var resourceQuery: aws.sdk.kotlin.services.resourcegroups.model.ResourceQuery? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.resourcegroups.model.UpdateGroupQueryRequest) : this() {
this.group = x.group
this.groupName = x.groupName
this.resourceQuery = x.resourceQuery
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.resourcegroups.model.UpdateGroupQueryRequest = UpdateGroupQueryRequest(this)
/**
* construct an [aws.sdk.kotlin.services.resourcegroups.model.ResourceQuery] inside the given [block]
*/
public fun resourceQuery(block: aws.sdk.kotlin.services.resourcegroups.model.ResourceQuery.Builder.() -> kotlin.Unit) {
this.resourceQuery = aws.sdk.kotlin.services.resourcegroups.model.ResourceQuery.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy