All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.maintenance.kotlin.outputs.GetPublicConfigurationsConfig.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.maintenance.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property description A description of the Public Maintenance Configuration.
 * @property duration The duration of the Public Maintenance Configuration window.
 * @property id The id of the Public Maintenance Configuration.
 * @property location The Azure location to filter the list of Public Maintenance Configurations against.
 * @property maintenanceScope The scope of the Public Maintenance Configuration.
 * @property name The name of the Public Maintenance Configuration.
 * @property recurEvery The recurring window to filter the list of Public Maintenance Configurations against. Possible values are `Monday-Thursday` and `Friday-Sunday`
 * @property timeZone The time zone for the maintenance window.
 */
public data class GetPublicConfigurationsConfig(
    public val description: String,
    public val duration: String,
    public val id: String,
    public val location: String,
    public val maintenanceScope: String,
    public val name: String,
    public val recurEvery: String,
    public val timeZone: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.maintenance.outputs.GetPublicConfigurationsConfig):
            GetPublicConfigurationsConfig = GetPublicConfigurationsConfig(
            description = javaType.description(),
            duration = javaType.duration(),
            id = javaType.id(),
            location = javaType.location(),
            maintenanceScope = javaType.maintenanceScope(),
            name = javaType.name(),
            recurEvery = javaType.recurEvery(),
            timeZone = javaType.timeZone(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy