
com.azure.resourcemanager.datafactory.models.RerunTumblingWindowTrigger Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.datafactory.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.datafactory.fluent.models.RerunTumblingWindowTriggerTypeProperties;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* Trigger that schedules pipeline reruns for all fixed time interval windows from a requested start time to requested
* end time.
*/
@Fluent
public final class RerunTumblingWindowTrigger extends Trigger {
/*
* Trigger type.
*/
private String type = "RerunTumblingWindowTrigger";
/*
* Rerun Trigger properties.
*/
private RerunTumblingWindowTriggerTypeProperties innerTypeProperties
= new RerunTumblingWindowTriggerTypeProperties();
/**
* Creates an instance of RerunTumblingWindowTrigger class.
*/
public RerunTumblingWindowTrigger() {
}
/**
* Get the type property: Trigger type.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the innerTypeProperties property: Rerun Trigger properties.
*
* @return the innerTypeProperties value.
*/
private RerunTumblingWindowTriggerTypeProperties innerTypeProperties() {
return this.innerTypeProperties;
}
/**
* {@inheritDoc}
*/
@Override
public RerunTumblingWindowTrigger withDescription(String description) {
super.withDescription(description);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public RerunTumblingWindowTrigger withAnnotations(List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy