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

com.pulumi.googlenative.dataplex.v1.kotlin.outputs.GoogleCloudDataplexV1JobResponse.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.dataplex.v1.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 * A job represents an instance of a task.
 * @property endTime The time when the job ended.
 * @property message Additional information about the current state.
 * @property name The relative resource name of the job, of the form: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/tasks/{task_id}/jobs/{job_id}.
 * @property retryCount The number of times the job has been retried (excluding the initial attempt).
 * @property service The underlying service running a job.
 * @property serviceJob The full resource name for the job run under a particular service.
 * @property startTime The time when the job was started.
 * @property state Execution state for the job.
 * @property uid System generated globally unique ID for the job.
 */
public data class GoogleCloudDataplexV1JobResponse(
    public val endTime: String,
    public val message: String,
    public val name: String,
    public val retryCount: Int,
    public val service: String,
    public val serviceJob: String,
    public val startTime: String,
    public val state: String,
    public val uid: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.dataplex.v1.outputs.GoogleCloudDataplexV1JobResponse): GoogleCloudDataplexV1JobResponse = GoogleCloudDataplexV1JobResponse(
            endTime = javaType.endTime(),
            message = javaType.message(),
            name = javaType.name(),
            retryCount = javaType.retryCount(),
            service = javaType.service(),
            serviceJob = javaType.serviceJob(),
            startTime = javaType.startTime(),
            state = javaType.state(),
            uid = javaType.uid(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy