
com.pulumi.azurenative.containerservice.kotlin.outputs.GetFleetUpdateStrategyResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Defines a multi-stage process to perform update operations across members of a Fleet.
* @property eTag If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
* @property id Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
* @property name The name of the resource
* @property provisioningState The provisioning state of the UpdateStrategy resource.
* @property strategy Defines the update sequence of the clusters.
* @property systemData Azure Resource Manager metadata containing createdBy and modifiedBy information.
* @property type The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
public data class GetFleetUpdateStrategyResult(
public val eTag: String,
public val id: String,
public val name: String,
public val provisioningState: String,
public val strategy: UpdateRunStrategyResponse,
public val systemData: SystemDataResponse,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.containerservice.outputs.GetFleetUpdateStrategyResult): GetFleetUpdateStrategyResult = GetFleetUpdateStrategyResult(
eTag = javaType.eTag(),
id = javaType.id(),
name = javaType.name(),
provisioningState = javaType.provisioningState(),
strategy = javaType.strategy().let({ args0 ->
com.pulumi.azurenative.containerservice.kotlin.outputs.UpdateRunStrategyResponse.Companion.toKotlin(args0)
}),
systemData = javaType.systemData().let({ args0 ->
com.pulumi.azurenative.containerservice.kotlin.outputs.SystemDataResponse.Companion.toKotlin(args0)
}),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy