
com.azure.resourcemanager.datafactory.models.BlobTrigger 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.BlobTriggerTypeProperties;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* Trigger that runs every time the selected Blob container changes.
*/
@Fluent
public final class BlobTrigger extends MultiplePipelineTrigger {
/*
* Trigger type.
*/
private String type = "BlobTrigger";
/*
* Blob Trigger properties.
*/
private BlobTriggerTypeProperties innerTypeProperties = new BlobTriggerTypeProperties();
/**
* Creates an instance of BlobTrigger class.
*/
public BlobTrigger() {
}
/**
* Get the type property: Trigger type.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the innerTypeProperties property: Blob Trigger properties.
*
* @return the innerTypeProperties value.
*/
private BlobTriggerTypeProperties innerTypeProperties() {
return this.innerTypeProperties;
}
/**
* {@inheritDoc}
*/
@Override
public BlobTrigger withPipelines(List pipelines) {
super.withPipelines(pipelines);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public BlobTrigger withDescription(String description) {
super.withDescription(description);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public BlobTrigger withAnnotations(List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy