你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

SendGridOutput 接口

public interface SendGridOutput

将此值放在其值将写入 SendGrid 的参数上。 参数类型应为 OutputBinding<T>,其中 T 可以是以下类型之一:

    <li>
    
      <p>Any native Java types such as int, String, byte[] </p>
    
    </li>
    
    <li>
    
      <p>Any POJO type </p>
    
    </li>
    

方法摘要

修饰符和类型 方法和描述
String apiKey()

定义要写入的 SendGrid 的 API 密钥。

String dataType()

定义 Functions 运行时应如何处理参数值。 可能的值为:

    <li>
    
      <p>"" or string: treat it as a string whose value is serialized from the parameter </p>
    
    </li>
    
    <li>
    
      <p>binary: treat it as a binary data whose value comes from for example OutputBinding&lt;byte[]&gt; </p>
    
    </li>
    

String from()

定义要写入的 SendGrid 的“FROM”名称。

String name()

function.json 中使用的变量名称。

String subject()

定义要写入的 SendGrid 电子邮件的主题。

String text()

定义要写入的 SendGrid 电子邮件的内容文本。

String to()

定义要写入的 SendGrid 的“TO”电子邮件。

方法详细信息

apiKey

public String apiKey()

定义要写入的 SendGrid 的 API 密钥。

Returns:

SendGrid API 密钥字符串。

dataType

public String dataType() default ""

定义 Functions 运行时应如何处理参数值。 可能的值为:

    <li>
    
      <p>"" or string: treat it as a string whose value is serialized from the parameter </p>
    
    </li>
    
    <li>
    
      <p>binary: treat it as a binary data whose value comes from for example OutputBinding&lt;byte[]&gt; </p>
    
    </li>
    

Returns:

将由 Functions 运行时使用的 dataType。

from

public String from()

定义要写入的 SendGrid 的“FROM”名称。

Returns:

SendGrid“FROM”名称字符串。

name

public String name()

function.json 中使用的变量名称。

Returns:

function.json 中使用的变量名称。

subject

public String subject()

定义要写入的 SendGrid 电子邮件的主题。

Returns:

SendGrid 电子邮件主题字符串。

text

public String text()

定义要写入的 SendGrid 电子邮件的内容文本。

Returns:

SendGrid 电子邮件内容字符串。

to

public String to()

定义要写入的 SendGrid 的“TO”电子邮件。

Returns:

SendGrid“TO”电子邮件字符串。

适用于