TimerTrigger.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.containerregistry.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The properties of a timer trigger. */
@Fluent
public final class TimerTrigger {
@JsonIgnore private final ClientLogger logger = new ClientLogger(TimerTrigger.class);
/*
* The CRON expression for the task schedule
*/
@JsonProperty(value = "schedule", required = true)
private String schedule;
/*
* The current status of trigger.
*/
@JsonProperty(value = "status")
private TriggerStatus status;
/*
* The name of the trigger.
*/
@JsonProperty(value = "name", required = true)
private String name;
/**
* Get the schedule property: The CRON expression for the task schedule.
*
* @return the schedule value.
*/
public String schedule() {
return this.schedule;
}
/**
* Set the schedule property: The CRON expression for the task schedule.
*
* @param schedule the schedule value to set.
* @return the TimerTrigger object itself.
*/
public TimerTrigger withSchedule(String schedule) {
this.schedule = schedule;
return this;
}
/**
* Get the status property: The current status of trigger.
*
* @return the status value.
*/
public TriggerStatus status() {
return this.status;
}
/**
* Set the status property: The current status of trigger.
*
* @param status the status value to set.
* @return the TimerTrigger object itself.
*/
public TimerTrigger withStatus(TriggerStatus status) {
this.status = status;
return this;
}
/**
* Get the name property: The name of the trigger.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the trigger.
*
* @param name the name value to set.
* @return the TimerTrigger object itself.
*/
public TimerTrigger withName(String name) {
this.name = name;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (schedule() == null) {
throw logger
.logExceptionAsError(
new IllegalArgumentException("Missing required property schedule in model TimerTrigger"));
}
if (name() == null) {
throw logger
.logExceptionAsError(
new IllegalArgumentException("Missing required property name in model TimerTrigger"));
}
}
}