com.pulumi.awsnative.licensemanager.kotlin.Grant.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.licensemanager.kotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
/**
* Builder for [Grant].
*/
@PulumiTagMarker
public class GrantResourceBuilder internal constructor() {
public var name: String? = null
public var args: GrantArgs = GrantArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend GrantArgsBuilder.() -> Unit) {
val builder = GrantArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): Grant {
val builtJavaResource = com.pulumi.awsnative.licensemanager.Grant(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Grant(builtJavaResource)
}
}
/**
* An example resource schema demonstrating some basic constructs and validation rules.
*/
public class Grant internal constructor(
override val javaResource: com.pulumi.awsnative.licensemanager.Grant,
) : KotlinCustomResource(javaResource, GrantMapper) {
/**
* Allowed operations for the grant.
*/
public val allowedOperations: Output>?
get() = javaResource.allowedOperations().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 -> args0 })
}).orElse(null)
})
/**
* Arn of the grant.
*/
public val grantArn: Output
get() = javaResource.grantArn().applyValue({ args0 -> args0 })
/**
* Name for the created Grant.
*/
public val grantName: Output?
get() = javaResource.grantName().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* Home region for the created grant.
*/
public val homeRegion: Output?
get() = javaResource.homeRegion().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* License Arn for the grant.
*/
public val licenseArn: Output?
get() = javaResource.licenseArn().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The grant principals. You can specify one of the following as an Amazon Resource Name (ARN):
* - An AWS account, which includes only the account specified.
* - An organizational unit (OU), which includes all accounts in the OU.
* - An organization, which will include all accounts across your organization.
*/
public val principals: Output>?
get() = javaResource.principals().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0
})
}).orElse(null)
})
/**
* Granted license status.
*/
public val status: Output?
get() = javaResource.status().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* The version of the grant.
*/
public val version: Output
get() = javaResource.version().applyValue({ args0 -> args0 })
}
public object GrantMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.licensemanager.Grant::class == javaResource::class
override fun map(javaResource: Resource): Grant = Grant(
javaResource as
com.pulumi.awsnative.licensemanager.Grant,
)
}
/**
* @see [Grant].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [Grant].
*/
public suspend fun grant(name: String, block: suspend GrantResourceBuilder.() -> Unit): Grant {
val builder = GrantResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [Grant].
* @param name The _unique_ name of the resulting resource.
*/
public fun grant(name: String): Grant {
val builder = GrantResourceBuilder()
builder.name(name)
return builder.build()
}