![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.recoveryservices.kotlin.inputs.GetReplicationFabricPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.recoveryservices.kotlin.inputs
import com.pulumi.azurenative.recoveryservices.inputs.GetReplicationFabricPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property fabricName Fabric name.
* @property filter OData filter options.
* @property resourceGroupName The name of the resource group where the recovery services vault is present.
* @property resourceName The name of the recovery services vault.
*/
public data class GetReplicationFabricPlainArgs(
public val fabricName: String,
public val filter: String? = null,
public val resourceGroupName: String,
public val resourceName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.recoveryservices.inputs.GetReplicationFabricPlainArgs =
com.pulumi.azurenative.recoveryservices.inputs.GetReplicationFabricPlainArgs.builder()
.fabricName(fabricName.let({ args0 -> args0 }))
.filter(filter?.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 }))
.resourceName(resourceName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetReplicationFabricPlainArgs].
*/
@PulumiTagMarker
public class GetReplicationFabricPlainArgsBuilder internal constructor() {
private var fabricName: String? = null
private var filter: String? = null
private var resourceGroupName: String? = null
private var resourceName: String? = null
/**
* @param value Fabric name.
*/
@JvmName("hgwritgqdneabcxd")
public suspend fun fabricName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.fabricName = mapped
}
/**
* @param value OData filter options.
*/
@JvmName("noctkfidviqylsve")
public suspend fun filter(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.filter = mapped
}
/**
* @param value The name of the resource group where the recovery services vault is present.
*/
@JvmName("gxyncnkngtdbgwma")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
/**
* @param value The name of the recovery services vault.
*/
@JvmName("ohgumsxevsdgsccy")
public suspend fun resourceName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceName = mapped
}
internal fun build(): GetReplicationFabricPlainArgs = GetReplicationFabricPlainArgs(
fabricName = fabricName ?: throw PulumiNullFieldException("fabricName"),
filter = filter,
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
resourceName = resourceName ?: throw PulumiNullFieldException("resourceName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy