Interface ScheduledCronTaskOrBuilder (0.3.0)

public interface ScheduledCronTaskOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getAuthor()

public abstract String getAuthor()

The author or creator of the task.

string author = 7;

Returns
Type Description
String

The author.

getAuthorBytes()

public abstract ByteString getAuthorBytes()

The author or creator of the task.

string author = 7;

Returns
Type Description
ByteString

The bytes for author.

getComment()

public abstract String getComment()

A comment or description for the task.

string comment = 6;

Returns
Type Description
String

The comment.

getCommentBytes()

public abstract ByteString getCommentBytes()

A comment or description for the task.

string comment = 6;

Returns
Type Description
ByteString

The bytes for comment.

getEvent()

public abstract String getEvent()

Crontab special string or event (e.g., "@reboot", "@daily").

string event = 8;

Returns
Type Description
String

The event.

getEventBytes()

public abstract ByteString getEventBytes()

Crontab special string or event (e.g., "@reboot", "@daily").

string event = 8;

Returns
Type Description
ByteString

The bytes for event.

getHour()

public abstract String getHour()

Crontab hour field. Value is an integer between 0 and 23, a range or list of values (e.g., "0-6", "/2", "1,2"), or an asterisk () to indicate first-last hours.

string hour = 2;

Returns
Type Description
String

The hour.

getHourBytes()

public abstract ByteString getHourBytes()

Crontab hour field. Value is an integer between 0 and 23, a range or list of values (e.g., "0-6", "/2", "1,2"), or an asterisk () to indicate first-last hours.

string hour = 2;

Returns
Type Description
ByteString

The bytes for hour.

getMinute()

public abstract String getMinute()

Crontab minute field. Value is an integer between 0 and 59 and can also be a range or list of values (e.g., "0-59", "0-59/5", "0,15,30,45") and it // can also be an asterisk (*) to indicate first-last minutes. More on crontab format can be found here: https://www.linux.org/docs/man5/crontab.html

string minute = 1;

Returns
Type Description
String

The minute.

getMinuteBytes()

public abstract ByteString getMinuteBytes()

Crontab minute field. Value is an integer between 0 and 59 and can also be a range or list of values (e.g., "0-59", "0-59/5", "0,15,30,45") and it // can also be an asterisk (*) to indicate first-last minutes. More on crontab format can be found here: https://www.linux.org/docs/man5/crontab.html

string minute = 1;

Returns
Type Description
ByteString

The bytes for minute.

getMonth()

public abstract String getMonth()

Crontab month field. Value is an integer between 1 and 12 or a 3-letter name (e.g., "Jan"), a range or list of values (e.g., "1-3", "/2", "1,6"), or an asterisk () to indicate first-last months.

string month = 4;

Returns
Type Description
String

The month.

getMonthBytes()

public abstract ByteString getMonthBytes()

Crontab month field. Value is an integer between 1 and 12 or a 3-letter name (e.g., "Jan"), a range or list of values (e.g., "1-3", "/2", "1,6"), or an asterisk () to indicate first-last months.

string month = 4;

Returns
Type Description
ByteString

The bytes for month.

getMonthDay()

public abstract String getMonthDay()

Crontab day of month field. Value is an integer between 1 and 31, a range or list of values (e.g., "1-7", "1-31/7", "1,15"), or an asterisk (*) to indicate first-last days of month.

string month_day = 3;

Returns
Type Description
String

The monthDay.

getMonthDayBytes()

public abstract ByteString getMonthDayBytes()

Crontab day of month field. Value is an integer between 1 and 31, a range or list of values (e.g., "1-7", "1-31/7", "1,15"), or an asterisk (*) to indicate first-last days of month.

string month_day = 3;

Returns
Type Description
ByteString

The bytes for monthDay.

getPath()

public abstract String getPath()

The PATH environment variable defined in the crontab file.

string path = 9;

Returns
Type Description
String

The path.

getPathBytes()

public abstract ByteString getPathBytes()

The PATH environment variable defined in the crontab file.

string path = 9;

Returns
Type Description
ByteString

The bytes for path.

getWeekDay()

public abstract String getWeekDay()

Crontab day of week field. Value is an integer between 0 and 7 (0 or 7 is Sunday) or a 3-letter name (e.g., "Fri"), a range or list of values (e.g., "1-5", "0,6"), or an asterisk (*) to indicate first-last days of week.

string week_day = 5;

Returns
Type Description
String

The weekDay.

getWeekDayBytes()

public abstract ByteString getWeekDayBytes()

Crontab day of week field. Value is an integer between 0 and 7 (0 or 7 is Sunday) or a 3-letter name (e.g., "Fri"), a range or list of values (e.g., "1-5", "0,6"), or an asterisk (*) to indicate first-last days of week.

string week_day = 5;

Returns
Type Description
ByteString

The bytes for weekDay.