com.azure.resourcemanager.mediaservices.fluent.models.JobProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-mediaservices Show documentation
Show all versions of azure-resourcemanager-mediaservices Show documentation
This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-account-2023-01.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.mediaservices.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.mediaservices.models.JobInput;
import com.azure.resourcemanager.mediaservices.models.JobOutput;
import com.azure.resourcemanager.mediaservices.models.JobState;
import com.azure.resourcemanager.mediaservices.models.Priority;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.time.OffsetDateTime;
import java.util.List;
import java.util.Map;
/** Properties of the Job. */
@Fluent
public final class JobProperties {
/*
* The UTC date and time when the customer has created the Job, in
* 'YYYY-MM-DDThh:mm:ssZ' format.
*/
@JsonProperty(value = "created", access = JsonProperty.Access.WRITE_ONLY)
private OffsetDateTime created;
/*
* The current state of the job.
*/
@JsonProperty(value = "state", access = JsonProperty.Access.WRITE_ONLY)
private JobState state;
/*
* Optional customer supplied description of the Job.
*/
@JsonProperty(value = "description")
private String description;
/*
* The inputs for the Job.
*/
@JsonProperty(value = "input", required = true)
private JobInput input;
/*
* The UTC date and time when the customer has last updated the Job, in
* 'YYYY-MM-DDThh:mm:ssZ' format.
*/
@JsonProperty(value = "lastModified", access = JsonProperty.Access.WRITE_ONLY)
private OffsetDateTime lastModified;
/*
* The outputs for the Job.
*/
@JsonProperty(value = "outputs", required = true)
private List outputs;
/*
* Priority with which the job should be processed. Higher priority jobs
* are processed before lower priority jobs. If not set, the default is
* normal.
*/
@JsonProperty(value = "priority")
private Priority priority;
/*
* Customer provided key, value pairs that will be returned in Job and
* JobOutput state events.
*/
@JsonProperty(value = "correlationData")
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map correlationData;
/*
* The UTC date and time at which this Job began processing.
*/
@JsonProperty(value = "startTime", access = JsonProperty.Access.WRITE_ONLY)
private OffsetDateTime startTime;
/*
* The UTC date and time at which this Job finished processing.
*/
@JsonProperty(value = "endTime", access = JsonProperty.Access.WRITE_ONLY)
private OffsetDateTime endTime;
/**
* Get the created property: The UTC date and time when the customer has created the Job, in 'YYYY-MM-DDThh:mm:ssZ'
* format.
*
* @return the created value.
*/
public OffsetDateTime created() {
return this.created;
}
/**
* Get the state property: The current state of the job.
*
* @return the state value.
*/
public JobState state() {
return this.state;
}
/**
* Get the description property: Optional customer supplied description of the Job.
*
* @return the description value.
*/
public String description() {
return this.description;
}
/**
* Set the description property: Optional customer supplied description of the Job.
*
* @param description the description value to set.
* @return the JobProperties object itself.
*/
public JobProperties withDescription(String description) {
this.description = description;
return this;
}
/**
* Get the input property: The inputs for the Job.
*
* @return the input value.
*/
public JobInput input() {
return this.input;
}
/**
* Set the input property: The inputs for the Job.
*
* @param input the input value to set.
* @return the JobProperties object itself.
*/
public JobProperties withInput(JobInput input) {
this.input = input;
return this;
}
/**
* Get the lastModified property: The UTC date and time when the customer has last updated the Job, in
* 'YYYY-MM-DDThh:mm:ssZ' format.
*
* @return the lastModified value.
*/
public OffsetDateTime lastModified() {
return this.lastModified;
}
/**
* Get the outputs property: The outputs for the Job.
*
* @return the outputs value.
*/
public List outputs() {
return this.outputs;
}
/**
* Set the outputs property: The outputs for the Job.
*
* @param outputs the outputs value to set.
* @return the JobProperties object itself.
*/
public JobProperties withOutputs(List outputs) {
this.outputs = outputs;
return this;
}
/**
* Get the priority property: Priority with which the job should be processed. Higher priority jobs are processed
* before lower priority jobs. If not set, the default is normal.
*
* @return the priority value.
*/
public Priority priority() {
return this.priority;
}
/**
* Set the priority property: Priority with which the job should be processed. Higher priority jobs are processed
* before lower priority jobs. If not set, the default is normal.
*
* @param priority the priority value to set.
* @return the JobProperties object itself.
*/
public JobProperties withPriority(Priority priority) {
this.priority = priority;
return this;
}
/**
* Get the correlationData property: Customer provided key, value pairs that will be returned in Job and JobOutput
* state events.
*
* @return the correlationData value.
*/
public Map correlationData() {
return this.correlationData;
}
/**
* Set the correlationData property: Customer provided key, value pairs that will be returned in Job and JobOutput
* state events.
*
* @param correlationData the correlationData value to set.
* @return the JobProperties object itself.
*/
public JobProperties withCorrelationData(Map correlationData) {
this.correlationData = correlationData;
return this;
}
/**
* Get the startTime property: The UTC date and time at which this Job began processing.
*
* @return the startTime value.
*/
public OffsetDateTime startTime() {
return this.startTime;
}
/**
* Get the endTime property: The UTC date and time at which this Job finished processing.
*
* @return the endTime value.
*/
public OffsetDateTime endTime() {
return this.endTime;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (input() == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException("Missing required property input in model JobProperties"));
} else {
input().validate();
}
if (outputs() == null) {
throw LOGGER
.logExceptionAsError(
new IllegalArgumentException("Missing required property outputs in model JobProperties"));
} else {
outputs().forEach(e -> e.validate());
}
}
private static final ClientLogger LOGGER = new ClientLogger(JobProperties.class);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy