Skip navigation links
A B C E F G H K O Q S T V 

A

AccessRights - Enum in com.microsoft.azure.functions.annotation
Azure Service Bus permission.
AuthorizationLevel - Enum in com.microsoft.azure.functions.annotation
Azure HTTP authorization level, Determines what keys, if any, need to be present on the request in order to invoke the function.

B

BindingName - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from Azure Functions runtime.
BlobInput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from a blob.
BlobOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be written to a blob.
BlobTrigger - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from a blob, and causing the method to run when a blob is uploaded.
body(Object) - Method in interface com.microsoft.azure.functions.HttpResponseMessage.Builder
Sets the body of the HTTP response.
BrokerAuthenticationMode - Enum in com.microsoft.azure.functions
Defines the broker authentication modes
BrokerProtocol - Enum in com.microsoft.azure.functions
 
build() - Method in interface com.microsoft.azure.functions.HttpResponseMessage.Builder
Creates an instance of HttpMessageResponse with the values configured in this builder.

C

Cardinality - Enum in com.microsoft.azure.functions.annotation
Cardinality of the EventHubTrigger input.
com.microsoft.azure.functions - package com.microsoft.azure.functions
Root package
com.microsoft.azure.functions.annotation - package com.microsoft.azure.functions.annotation
Annotations and support classes for use as part of the Java API for Azure Functions.
CosmosDBInput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from CosmosDB.
CosmosDBOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be written to CosmosDB.
CosmosDBTrigger - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from CosmosDB, and causing the method to run when CosmosDB data is changed.
createResponseBuilder(HttpStatus) - Method in interface com.microsoft.azure.functions.HttpRequestMessage
Returns a HttpResponseMessage.Builder instance to build a HttpResponseMessage with standard HTTP status code and no response body.
createResponseBuilder(HttpStatusType) - Method in interface com.microsoft.azure.functions.HttpRequestMessage
Returns a HttpResponseMessage.Builder instance to build a HttpResponseMessage with custome HTTP status code and no response body.
custom(int) - Static method in interface com.microsoft.azure.functions.HttpStatusType
Creates a custom (non-standard) HTTP Status code.
CustomBinding - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter to define a custom binding

E

EventGridOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from EventGrid, and causing the method to run when an event is arrived.
EventGridTrigger - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from EventGrid, and causing the method to run when an event is arrived.
EventHubOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be published to the event hub.
EventHubTrigger - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from event hub, and causing the method to run when a new event is arrived.
ExecutionContext - Interface in com.microsoft.azure.functions
The execution context enables interaction with the Azure Functions execution environment.

F

FunctionName - Annotation Type in com.microsoft.azure.functions.annotation
The FunctionName annotation is used to specify to the Azure Functions tooling what name is to be applied to the associated function when the function is deployed onto Azure.

G

getAttributes() - Method in interface com.microsoft.azure.functions.TraceContext
Returns the attributes which correspond to the tags.
getBody() - Method in interface com.microsoft.azure.functions.HttpRequestMessage
Returns any body content that was included with this HTTP request.
getBody() - Method in interface com.microsoft.azure.functions.HttpResponseMessage
Returns the body of the HTTP response.
getFunctionName() - Method in interface com.microsoft.azure.functions.ExecutionContext
Returns the function name.
getHeader(String) - Method in interface com.microsoft.azure.functions.HttpResponseMessage
Returns a header value for the given key.
getHeaders() - Method in interface com.microsoft.azure.functions.HttpRequestMessage
Returns a map of headers that were contained within this HTTP request.
getHttpMethod() - Method in interface com.microsoft.azure.functions.HttpRequestMessage
Returns the HTTP method name as Enum
getInvocationId() - Method in interface com.microsoft.azure.functions.ExecutionContext
Returns the invocation ID for the function call.
getLogger() - Method in interface com.microsoft.azure.functions.ExecutionContext
Returns the built-in logger, which is integrated with the logging functionality provided in the Azure Functions portal, as well as in Azure Application Insights.
getQueryParameters() - Method in interface com.microsoft.azure.functions.HttpRequestMessage
Returns a map of query parameters that were included with this HTTP request.
getStatus() - Method in interface com.microsoft.azure.functions.HttpResponseMessage
Returns the HTTP status code set on the HttpResponseMessage instance.
getStatusCode() - Method in interface com.microsoft.azure.functions.HttpResponseMessage
Returns the HTTP status code set on the HttpResponseMessage instance.
getTraceContext() - Method in interface com.microsoft.azure.functions.ExecutionContext
Returns the trace context.
getTraceparent() - Method in interface com.microsoft.azure.functions.TraceContext
Returns the TraceparentString from the Activity.
getTracestate() - Method in interface com.microsoft.azure.functions.TraceContext
Returns the Tracestate which is Activity.Current?.Id from host.
getUri() - Method in interface com.microsoft.azure.functions.HttpRequestMessage
Returns the URI that was called that resulted in this HTTP request being submitted.
getValue() - Method in enum com.microsoft.azure.functions.BrokerAuthenticationMode
 
getValue() - Method in interface com.microsoft.azure.functions.OutputBinding
Get the value to be passed to the output binding.

H

header(String, String) - Method in interface com.microsoft.azure.functions.HttpResponseMessage.Builder
Adds a (key, value) header to the response.
HttpMethod - Enum in com.microsoft.azure.functions
Copyright (c) Microsoft Corporation.
HttpOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be send back to the user as an HTTP response.
HttpRequestMessage<T> - Interface in com.microsoft.azure.functions
An HttpRequestMessage instance is provided to Azure functions that use HTTP Triggers.
HttpResponseMessage - Interface in com.microsoft.azure.functions
An HttpResponseMessage instance is returned by Azure Functions methods that are triggered by an HttpTrigger.
HttpResponseMessage.Builder - Interface in com.microsoft.azure.functions
A builder to create an instance of HttpResponseMessage
HttpStatus - Enum in com.microsoft.azure.functions
Enum to represent HTTP Status codes.
HttpStatusType - Interface in com.microsoft.azure.functions
Defines an HTTP Status Type
HttpTrigger - Annotation Type in com.microsoft.azure.functions.annotation
The HttpTrigger annotation is applied to Azure functions that will be triggered by a call to the HTTP endpoint that the function is located at.

K

KafkaOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be published to Kafka.
KafkaTrigger - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from Kafka, and causing the method to run when Kafka event is consumed.

O

OutputBinding<T> - Interface in com.microsoft.azure.functions
This type should be used with the parameter of output bindings.

Q

QueueOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be written to a storage queue.
QueueTrigger - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from a storage queue, and causing the method to run when a new item is pushed.

S

SendGridOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be written to SendGrid.
ServiceBusQueueOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be written to a service bus queue.
ServiceBusQueueTrigger - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from a Service Bus queue, and causing the method to run when a new item is pushed.
ServiceBusTopicOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be written to a service bus topic.
ServiceBusTopicTrigger - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from Service Bus topic, and causing the method to run when a new item is published.
setValue(T) - Method in interface com.microsoft.azure.functions.OutputBinding
Set the value to be passed to the output binding.
status(HttpStatusType) - Method in interface com.microsoft.azure.functions.HttpResponseMessage.Builder
Sets the status code to be used in the HttpResponseMessage object.
StorageAccount - Annotation Type in com.microsoft.azure.functions.annotation
Apply this annotation to a method if you have multiple Azure Storage triggers/input/output in that method which share the same app setting name of Azure Storage connection string.

T

TableInput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would come from storage table.
TableOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be written to a storage table.
TimerTrigger - Annotation Type in com.microsoft.azure.functions.annotation
The timer trigger lets you run a function on a schedule by specifying a CRON expression for when the function should run.
TraceContext - Interface in com.microsoft.azure.functions
The Tracing context that is obtained from the host.
TwilioSmsOutput - Annotation Type in com.microsoft.azure.functions.annotation
Place this on a parameter whose value would be sent through twilio SMS.

V

value(String) - Static method in enum com.microsoft.azure.functions.HttpMethod
Converts passed value to upper case to extract valueOf() of this Enum.
value() - Method in enum com.microsoft.azure.functions.HttpStatus
Returns the code of this HTTPStatus enum.
value() - Method in interface com.microsoft.azure.functions.HttpStatusType
 
valueOf(String) - Static method in enum com.microsoft.azure.functions.annotation.AccessRights
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.microsoft.azure.functions.annotation.AuthorizationLevel
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.microsoft.azure.functions.annotation.Cardinality
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.microsoft.azure.functions.BrokerAuthenticationMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.microsoft.azure.functions.BrokerProtocol
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.microsoft.azure.functions.HttpMethod
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.microsoft.azure.functions.HttpStatus
Returns the enum constant of this type with the specified name.
valueOf(int) - Static method in enum com.microsoft.azure.functions.HttpStatus
Maps an int code to a standard HTTP status code.
values() - Static method in enum com.microsoft.azure.functions.annotation.AccessRights
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.microsoft.azure.functions.annotation.AuthorizationLevel
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.microsoft.azure.functions.annotation.Cardinality
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.microsoft.azure.functions.BrokerAuthenticationMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.microsoft.azure.functions.BrokerProtocol
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.microsoft.azure.functions.HttpMethod
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.microsoft.azure.functions.HttpStatus
Returns an array containing the constants of this enum type, in the order they are declared.
A B C E F G H K O Q S T V 
Skip navigation links

Copyright © 2020. All rights reserved.