com.pulumi.googlenative.compute.beta.kotlin.outputs.InstanceGroupManagerActionsSummaryResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.compute.beta.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property abandoning The total number of instances in the managed instance group that are scheduled to be abandoned. Abandoning an instance removes it from the managed instance group without deleting it.
* @property creating The number of instances in the managed instance group that are scheduled to be created or are currently being created. If the group fails to create any of these instances, it tries again until it creates the instance successfully. If you have disabled creation retries, this field will not be populated; instead, the creatingWithoutRetries field will be populated.
* @property creatingWithoutRetries The number of instances that the managed instance group will attempt to create. The group attempts to create each instance only once. If the group fails to create any of these instances, it decreases the group's targetSize value accordingly.
* @property deleting The number of instances in the managed instance group that are scheduled to be deleted or are currently being deleted.
* @property none The number of instances in the managed instance group that are running and have no scheduled actions.
* @property recreating The number of instances in the managed instance group that are scheduled to be recreated or are currently being being recreated. Recreating an instance deletes the existing root persistent disk and creates a new disk from the image that is defined in the instance template.
* @property refreshing The number of instances in the managed instance group that are being reconfigured with properties that do not require a restart or a recreate action. For example, setting or removing target pools for the instance.
* @property restarting The number of instances in the managed instance group that are scheduled to be restarted or are currently being restarted.
* @property resuming The number of instances in the managed instance group that are scheduled to be resumed or are currently being resumed.
* @property starting The number of instances in the managed instance group that are scheduled to be started or are currently being started.
* @property stopping The number of instances in the managed instance group that are scheduled to be stopped or are currently being stopped.
* @property suspending The number of instances in the managed instance group that are scheduled to be suspended or are currently being suspended.
* @property verifying The number of instances in the managed instance group that are being verified. See the managedInstances[].currentAction property in the listManagedInstances method documentation.
*/
public data class InstanceGroupManagerActionsSummaryResponse(
public val abandoning: Int,
public val creating: Int,
public val creatingWithoutRetries: Int,
public val deleting: Int,
public val none: Int,
public val recreating: Int,
public val refreshing: Int,
public val restarting: Int,
public val resuming: Int,
public val starting: Int,
public val stopping: Int,
public val suspending: Int,
public val verifying: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.compute.beta.outputs.InstanceGroupManagerActionsSummaryResponse): InstanceGroupManagerActionsSummaryResponse = InstanceGroupManagerActionsSummaryResponse(
abandoning = javaType.abandoning(),
creating = javaType.creating(),
creatingWithoutRetries = javaType.creatingWithoutRetries(),
deleting = javaType.deleting(),
none = javaType.none(),
recreating = javaType.recreating(),
refreshing = javaType.refreshing(),
restarting = javaType.restarting(),
resuming = javaType.resuming(),
starting = javaType.starting(),
stopping = javaType.stopping(),
suspending = javaType.suspending(),
verifying = javaType.verifying(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy