EventGridTrigger Interfaz
public interface EventGridTrigger
EventGridTrigger(name = "event") String content, final ExecutionContext context ) { context.getLogger().info(content); }
Resumen del método
Modificador y tipo | Método y descripción |
---|---|
String |
dataType()
Define cómo debe tratar Functions Runtime el valor del parámetro. Los valores posibles son:
|
String |
name()
Nombre de variable usado en function.json. |
Detalles del método
dataType
public String dataType() default ""
Define cómo debe tratar Functions Runtime el valor del parámetro. Los valores posibles son:
<li>
<p>"": get the value as a string, and try to deserialize to actual parameter type like POJO </p>
</li>
<li>
<p>string: always get the value as a string </p>
</li>
<li>
<p>binary: get the value as a binary data, and try to deserialize to actual parameter type byte[] </p>
</li>
Returns:
DataType que usará el entorno de ejecución de Functions.
name
public String name()
Nombre de variable usado en function.json.
Returns:
Nombre de variable usado en function.json.
Se aplica a
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.
Azure SDK for Java