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

com.pulumi.azurenative.automation.kotlin.outputs.AzureQueryPropertiesResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.automation.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * Azure query for the update configuration.
 * @property locations List of locations to scope the query to.
 * @property scope List of Subscription or Resource Group ARM Ids.
 * @property tagSettings Tag settings for the VM.
 */
public data class AzureQueryPropertiesResponse(
    public val locations: List? = null,
    public val scope: List? = null,
    public val tagSettings: TagSettingsPropertiesResponse? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.automation.outputs.AzureQueryPropertiesResponse): AzureQueryPropertiesResponse = AzureQueryPropertiesResponse(
            locations = javaType.locations().map({ args0 -> args0 }),
            scope = javaType.scope().map({ args0 -> args0 }),
            tagSettings = javaType.tagSettings().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azurenative.automation.kotlin.outputs.TagSettingsPropertiesResponse.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy