本文整理汇总了Java中com.google.cloud.dataflow.sdk.options.Description类的典型用法代码示例。如果您正苦于以下问题:Java Description类的具体用法?Java Description怎么用?Java Description使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Description类属于com.google.cloud.dataflow.sdk.options包,在下文中一共展示了Description类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getEndDate
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Last day of precipitation data to upload. "
+ "Should be in the format \"YYYYMMD\".\n"
+ "If left blank, all data after the start date will "
+ "be included")
@Default.String("")
@Validation.Required
String getEndDate();
开发者ID:GoogleCloudPlatform,项目名称:dataflow-precipitation-pipeline,代码行数:8,代码来源:PrecipitationOptions.java
示例2: getSessionGap
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Numeric value of gap between user sessions, in minutes")
@Default.Integer(1)
Integer getSessionGap();
示例3: getUserActivityWindowDuration
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description(
"Numeric value of fixed window for finding mean of user session duration, " + "in minutes")
@Default.Integer(5)
Integer getUserActivityWindowDuration();
示例4: getTeamWindowDuration
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Numeric value of fixed window duration for team analysis, in minutes")
@Default.Integer(1)
Integer getTeamWindowDuration();
示例5: getAllowedLateness
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Numeric value of allowed data lateness, in minutes")
@Default.Integer(2)
Integer getAllowedLateness();
示例6: getTopic
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Pub/Sub topic to read from")
@Validation.Required
String getTopic();
示例7: getPlayEventsTopic
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Pub/Sub play events topic to read from")
@Validation.Required
String getPlayEventsTopic();
示例8: getFixedWindowDuration
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Numeric value of fixed window duration for user analysis, in minutes")
@Default.Integer(5)
Integer getFixedWindowDuration();
示例9: file
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Path to the data file(s) containing game data.")
String getInput();
示例10: getTopic
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Pub/Sub topic to read from. Used if --input is empty.")
String getTopic();
示例11: getOutputDataset
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("BigQuery Dataset to write tables to. Must already exist.")
@Validation.Required
String getOutputDataset();
示例12: getOutputTableName
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("The BigQuery table name. Should not already exist.")
@Validation.Required
String getOutputTableName();
示例13: getSessionGap
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Numeric value of gap between user sessions, in minutes")
@Default.Integer(5)
Integer getSessionGap();
示例14: getInputFile
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("Path of the file to read from")
@Default.String("gs://retail-dataflow-demo/dataflow/resources/product_master.csv")
String getInputFile();
示例15: getSourceProject
import com.google.cloud.dataflow.sdk.options.Description; //导入依赖的package包/类
@Description("ProjectId where data source topic lives")
@Default.String("pubsub-public-data")
@Validation.Required
String getSourceProject();