com.pulumi.azurenative.automation.outputs.GetScheduleResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.automation.outputs;
import com.pulumi.azurenative.automation.outputs.AdvancedScheduleResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.Double;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetScheduleResult {
/**
* @return Gets or sets the advanced schedule.
*
*/
private @Nullable AdvancedScheduleResponse advancedSchedule;
/**
* @return Gets or sets the creation time.
*
*/
private @Nullable String creationTime;
/**
* @return Gets or sets the description.
*
*/
private @Nullable String description;
/**
* @return Gets or sets the end time of the schedule.
*
*/
private @Nullable String expiryTime;
/**
* @return Gets or sets the expiry time's offset in minutes.
*
*/
private @Nullable Double expiryTimeOffsetMinutes;
/**
* @return Gets or sets the frequency of the schedule.
*
*/
private @Nullable String frequency;
/**
* @return Fully qualified resource Id for the resource
*
*/
private String id;
/**
* @return Gets or sets the interval of the schedule.
*
*/
private @Nullable Object interval;
/**
* @return Gets or sets a value indicating whether this schedule is enabled.
*
*/
private @Nullable Boolean isEnabled;
/**
* @return Gets or sets the last modified time.
*
*/
private @Nullable String lastModifiedTime;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return Gets or sets the next run time of the schedule.
*
*/
private @Nullable String nextRun;
/**
* @return Gets or sets the next run time's offset in minutes.
*
*/
private @Nullable Double nextRunOffsetMinutes;
/**
* @return Gets or sets the start time of the schedule.
*
*/
private @Nullable String startTime;
/**
* @return Gets the start time's offset in minutes.
*
*/
private Double startTimeOffsetMinutes;
/**
* @return Gets or sets the time zone of the schedule.
*
*/
private @Nullable String timeZone;
/**
* @return The type of the resource.
*
*/
private String type;
private GetScheduleResult() {}
/**
* @return Gets or sets the advanced schedule.
*
*/
public Optional advancedSchedule() {
return Optional.ofNullable(this.advancedSchedule);
}
/**
* @return Gets or sets the creation time.
*
*/
public Optional creationTime() {
return Optional.ofNullable(this.creationTime);
}
/**
* @return Gets or sets the description.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return Gets or sets the end time of the schedule.
*
*/
public Optional expiryTime() {
return Optional.ofNullable(this.expiryTime);
}
/**
* @return Gets or sets the expiry time's offset in minutes.
*
*/
public Optional expiryTimeOffsetMinutes() {
return Optional.ofNullable(this.expiryTimeOffsetMinutes);
}
/**
* @return Gets or sets the frequency of the schedule.
*
*/
public Optional frequency() {
return Optional.ofNullable(this.frequency);
}
/**
* @return Fully qualified resource Id for the resource
*
*/
public String id() {
return this.id;
}
/**
* @return Gets or sets the interval of the schedule.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy