All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.functions.annotation.TableOutput Maven / Gradle / Ivy

Go to download

This package contains all Java interfaces and annotations to interact with Microsoft Azure functions runtime.

There is a newer version: 3.1.0
Show newest version
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 */

package com.microsoft.azure.functions.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 

Place this on a parameter whose value would be written to a storage table. * The parameter type should be OutputBinding<T>, where T could be one of:

* *
    *
  • Any native Java types such as int, String, byte[]
  • *
  • Any POJO type
  • *
* * * @since 1.0.0 */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.PARAMETER, ElementType.METHOD}) public @interface TableOutput { /** * The variable name used in function.json. * @return The variable name used in function.json. */ String name(); /** *

Defines how Functions runtime should treat the parameter value. Possible values are:

*
    *
  • "" or string: treat it as a string whose value is serialized from the parameter
  • *
  • binary: treat it as a binary data whose value comes from for example OutputBinding<byte[]>
  • *
* @return The dataType which will be used by the Functions runtime. */ String dataType() default ""; /** * Defines the name of the storage table to which to write. * @return The storage table name string. */ String tableName(); /** * Defines the partition key of the storage table to which to write. * @return The storage table partition key string. */ String partitionKey() default ""; /** * Defines the row key of the storage table to which to write. * @return The storage table row key string. */ String rowKey() default ""; /** * Defines the app setting name that contains the Azure Storage connection string. * @return The app setting name of the connection string. */ String connection() default ""; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy