com.pulumi.azure.maintenance.kotlin.inputs.GetPublicConfigurationsPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.maintenance.kotlin.inputs
import com.pulumi.azure.maintenance.inputs.GetPublicConfigurationsPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getPublicConfigurations.
* @property location The Azure location to filter the list of Public Maintenance Configurations against.
* @property recurEvery The recurring window to filter the list of Public Maintenance Configurations against. Possible values are `Monday-Thursday` and `Friday-Sunday`
* @property scope The scope to filter the list of Public Maintenance Configurations against. Possible values are `Extension`, `Host`, `InGuestPatch`, `OSImage`, `SQLDB` and `SQLManagedInstance`.
*/
public data class GetPublicConfigurationsPlainArgs(
public val location: String? = null,
public val recurEvery: String? = null,
public val scope: String? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.maintenance.inputs.GetPublicConfigurationsPlainArgs =
com.pulumi.azure.maintenance.inputs.GetPublicConfigurationsPlainArgs.builder()
.location(location?.let({ args0 -> args0 }))
.recurEvery(recurEvery?.let({ args0 -> args0 }))
.scope(scope?.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetPublicConfigurationsPlainArgs].
*/
@PulumiTagMarker
public class GetPublicConfigurationsPlainArgsBuilder internal constructor() {
private var location: String? = null
private var recurEvery: String? = null
private var scope: String? = null
/**
* @param value The Azure location to filter the list of Public Maintenance Configurations against.
*/
@JvmName("berrjyuthvkbnabx")
public suspend fun location(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.location = mapped
}
/**
* @param value The recurring window to filter the list of Public Maintenance Configurations against. Possible values are `Monday-Thursday` and `Friday-Sunday`
*/
@JvmName("rddirmofqfelpokj")
public suspend fun recurEvery(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.recurEvery = mapped
}
/**
* @param value The scope to filter the list of Public Maintenance Configurations against. Possible values are `Extension`, `Host`, `InGuestPatch`, `OSImage`, `SQLDB` and `SQLManagedInstance`.
*/
@JvmName("ajvaawalvjhpkuks")
public suspend fun scope(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.scope = mapped
}
internal fun build(): GetPublicConfigurationsPlainArgs = GetPublicConfigurationsPlainArgs(
location = location,
recurEvery = recurEvery,
scope = scope,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy