![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.healthcareapis.kotlin.inputs.ServicesPropertiesArgs.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.healthcareapis.kotlin.inputs
import com.pulumi.azurenative.healthcareapis.inputs.ServicesPropertiesArgs.builder
import com.pulumi.azurenative.healthcareapis.kotlin.enums.PublicNetworkAccess
import com.pulumi.core.Either
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The properties of a service instance.
* @property accessPolicies The access policies of the service instance.
* @property acrConfiguration The azure container registry settings used for convert data operation of the service instance.
* @property authenticationConfiguration The authentication configuration for the service instance.
* @property corsConfiguration The settings for the CORS configuration of the service instance.
* @property cosmosDbConfiguration The settings for the Cosmos DB database backing the service.
* @property exportConfiguration The settings for the export operation of the service instance.
* @property importConfiguration The settings for the import operation of the service instance.
* @property privateEndpointConnections The list of private endpoint connections that are set up for this resource.
* @property publicNetworkAccess Control permission for data plane traffic coming from public networks while private endpoint is enabled.
*/
public data class ServicesPropertiesArgs(
public val accessPolicies: Output>? = null,
public val acrConfiguration: Output? = null,
public val authenticationConfiguration: Output? =
null,
public val corsConfiguration: Output? = null,
public val cosmosDbConfiguration: Output? = null,
public val exportConfiguration: Output? = null,
public val importConfiguration: Output? = null,
public val privateEndpointConnections: Output>? = null,
public val publicNetworkAccess: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.healthcareapis.inputs.ServicesPropertiesArgs =
com.pulumi.azurenative.healthcareapis.inputs.ServicesPropertiesArgs.builder()
.accessPolicies(
accessPolicies?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.acrConfiguration(acrConfiguration?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.authenticationConfiguration(
authenticationConfiguration?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.corsConfiguration(corsConfiguration?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.cosmosDbConfiguration(
cosmosDbConfiguration?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.exportConfiguration(
exportConfiguration?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.importConfiguration(
importConfiguration?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.privateEndpointConnections(
privateEndpointConnections?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.publicNetworkAccess(
publicNetworkAccess?.applyValue({ args0 ->
args0.transform(
{ args0 -> args0 },
{ args0 -> args0.let({ args0 -> args0.toJava() }) },
)
}),
).build()
}
/**
* Builder for [ServicesPropertiesArgs].
*/
@PulumiTagMarker
public class ServicesPropertiesArgsBuilder internal constructor() {
private var accessPolicies: Output>? = null
private var acrConfiguration: Output? = null
private var authenticationConfiguration: Output? =
null
private var corsConfiguration: Output? = null
private var cosmosDbConfiguration: Output? = null
private var exportConfiguration: Output? = null
private var importConfiguration: Output? = null
private var privateEndpointConnections: Output>? = null
private var publicNetworkAccess: Output>? = null
/**
* @param value The access policies of the service instance.
*/
@JvmName("ynpalsnttdqqhpmm")
public suspend fun accessPolicies(`value`: Output>) {
this.accessPolicies = value
}
@JvmName("jfxyfftxoypnuvlv")
public suspend fun accessPolicies(vararg values: Output) {
this.accessPolicies = Output.all(values.asList())
}
/**
* @param values The access policies of the service instance.
*/
@JvmName("rdkvobqbkwsqdspy")
public suspend fun accessPolicies(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy