当前位置: 首页>>代码示例>>Java>>正文


Java Default.String方法代码示例

本文整理汇总了Java中com.google.cloud.dataflow.sdk.options.Default.String方法的典型用法代码示例。如果您正苦于以下问题:Java Default.String方法的具体用法?Java Default.String怎么用?Java Default.String使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.google.cloud.dataflow.sdk.options.Default的用法示例。


在下文中一共展示了Default.String方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getEndDate

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的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: getInputFile

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("Path of the file to read from")
@Default.String("gs://retail-dataflow-demo/dataflow/resources/product_master.csv")
String getInputFile();
 
开发者ID:topgate,项目名称:retail-demo,代码行数:4,代码来源:StorageToDatastore.java

示例3: getSourceProject

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("ProjectId where data source topic lives")
@Default.String("pubsub-public-data")
@Validation.Required
String getSourceProject();
 
开发者ID:googlecodelabs,项目名称:cloud-dataflow-nyc-taxi-tycoon,代码行数:5,代码来源:CustomPipelineOptions.java

示例4: getSourceTopic

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("TopicId of source topic")
@Default.String("taxirides-realtime")
@Validation.Required
String getSourceTopic();
 
开发者ID:googlecodelabs,项目名称:cloud-dataflow-nyc-taxi-tycoon,代码行数:5,代码来源:CustomPipelineOptions.java

示例5: getSinkTopic

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("TopicId of sink topic")
@Default.String("visualizer")
@Validation.Required
String getSinkTopic();
 
开发者ID:googlecodelabs,项目名称:cloud-dataflow-nyc-taxi-tycoon,代码行数:5,代码来源:CustomPipelineOptions.java

示例6: getInputTable

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("Path of the bigquery table to read from")
@Default.String("cpb101demo1:samples.table")
ValueProvider<String> getInputTable();
 
开发者ID:sinmetal,项目名称:iron-hippo,代码行数:4,代码来源:BigQueryToDatastore.java

示例7: getOutputProjectID

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("Output destination Datastore ProjectID")
@Default.String("cpb101demo1")
ValueProvider<String> getOutputProjectID();
 
开发者ID:sinmetal,项目名称:iron-hippo,代码行数:4,代码来源:BigQueryToDatastore.java

示例8: getOutputKind

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("Output destination Datastore Kind")
@Default.String("hogeKind")
ValueProvider<String> getOutputKind();
 
开发者ID:sinmetal,项目名称:iron-hippo,代码行数:4,代码来源:BigQueryToDatastore.java

示例9: getInputFile

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("Path of the file to read from")
@Default.String("gs://dataflow-samples/shakespeare/kinglear.txt")
String getInputFile();
 
开发者ID:sinmetal,项目名称:iron-hippo,代码行数:4,代码来源:WordCount.java

示例10: getFilterPattern

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("Regex filter pattern to use in DebuggingWordCount. "
    + "Only words matching this pattern will be counted.")
@Default.String("Flourish|stomach")
String getFilterPattern();
 
开发者ID:sinmetal,项目名称:iron-hippo,代码行数:5,代码来源:DebuggingWordCount.java

示例11: getBigQueryDataset

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("BigQuery dataset name")
@Default.String("dataflow_examples")
String getBigQueryDataset();
 
开发者ID:sinmetal,项目名称:iron-hippo,代码行数:4,代码来源:ExampleBigQueryTableOptions.java

示例12: getLoadingBucketURL

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("Location of aritst credit name json.")
@Default.String("gs://mb-data")
String getLoadingBucketURL();
 
开发者ID:GoogleCloudPlatform,项目名称:bigquery-etl-dataflow-sample,代码行数:4,代码来源:BQETLOptions.java

示例13: getBigQueryTablename

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("Big Query table name")
@Default.String("musicbrainz_recordings_by_artist")
String getBigQueryTablename();
 
开发者ID:GoogleCloudPlatform,项目名称:bigquery-etl-dataflow-sample,代码行数:4,代码来源:BQETLOptions.java

示例14: getLogRegexPattern

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("Regular expression pattern used to parse embedded log messages inside Cloud Logging entries")
@Default.String("\\[GIN\\]\\s+(?<timestamp>\\d{4}/\\d{2}/\\d{2} \\- \\d{2}\\:\\d{2}\\:\\d{2}).*? (?<httpStatusCode>\\d{3}) .*?(?<responseTime>\\d+\\.?\\d*)(?<resolution>\\S{1,}) \\| (?<source>[0-9\\.:]+?) \\|\\S+?\\s+?\\S+?\\s+?(?<httpMethod>\\w+?)\\s+?(?<destination>[a-z0-9/]+)")
String getLogRegexPattern();
 
开发者ID:GoogleCloudPlatform,项目名称:processing-logs-using-dataflow,代码行数:4,代码来源:LogAnalyticsPipelineOptions.java

示例15: getAllLogsTableName

import com.google.cloud.dataflow.sdk.options.Default; //导入方法依赖的package包/类
@Description("BigQuery table name for all-logs table")
@Default.String("dataflow_log_analytics.all_logs_table")
String getAllLogsTableName();
 
开发者ID:GoogleCloudPlatform,项目名称:processing-logs-using-dataflow,代码行数:4,代码来源:LogAnalyticsPipelineOptions.java


注:本文中的com.google.cloud.dataflow.sdk.options.Default.String方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。