JobReferenceArgs

data class JobReferenceArgs(val jobId: Output<String>? = null, val project: Output<String>? = null) : ConvertibleToJava<JobReferenceArgs>

Encapsulates the full scoping used to reference a job.

Constructors

Link copied to clipboard
constructor(jobId: Output<String>? = null, project: Output<String>? = null)

Properties

Link copied to clipboard
val jobId: Output<String>? = null

Optional. The job ID, which must be unique within the project.The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or hyphens (-). The maximum length is 100 characters.If not specified by the caller, the job ID will be provided by the server.

Link copied to clipboard
val project: Output<String>? = null

Optional. The ID of the Google Cloud Platform project that the job belongs to. If specified, must match the request project ID.

Functions

Link copied to clipboard
open override fun toJava(): JobReferenceArgs