Package com.google.dataflow.v1beta3
Interface CreateJobFromTemplateRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateJobFromTemplateRequest
,CreateJobFromTemplateRequest.Builder
public interface CreateJobFromTemplateRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsParameters(String key)
The runtime parameters to pass to the job.RuntimeEnvironment
getEnvironment()
The runtime environment for the job.RuntimeEnvironmentOrBuilder
getEnvironmentOrBuilder()
The runtime environment for the job.String
getGcsPath()
Required.com.google.protobuf.ByteString
getGcsPathBytes()
Required.String
getJobName()
Required.com.google.protobuf.ByteString
getJobNameBytes()
Required.String
getLocation()
The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which to direct the request.com.google.protobuf.ByteString
getLocationBytes()
The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which to direct the request.Map<String,String>
getParameters()
Deprecated.int
getParametersCount()
The runtime parameters to pass to the job.Map<String,String>
getParametersMap()
The runtime parameters to pass to the job.String
getParametersOrDefault(String key, String defaultValue)
The runtime parameters to pass to the job.String
getParametersOrThrow(String key)
The runtime parameters to pass to the job.String
getProjectId()
Required.com.google.protobuf.ByteString
getProjectIdBytes()
Required.CreateJobFromTemplateRequest.TemplateCase
getTemplateCase()
boolean
hasEnvironment()
The runtime environment for the job.boolean
hasGcsPath()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProjectId
String getProjectId()
Required. The ID of the Cloud Platform project that the job belongs to.
string project_id = 1;
- Returns:
- The projectId.
-
getProjectIdBytes
com.google.protobuf.ByteString getProjectIdBytes()
Required. The ID of the Cloud Platform project that the job belongs to.
string project_id = 1;
- Returns:
- The bytes for projectId.
-
getJobName
String getJobName()
Required. The job name to use for the created job.
string job_name = 4;
- Returns:
- The jobName.
-
getJobNameBytes
com.google.protobuf.ByteString getJobNameBytes()
Required. The job name to use for the created job.
string job_name = 4;
- Returns:
- The bytes for jobName.
-
hasGcsPath
boolean hasGcsPath()
Required. A Cloud Storage path to the template from which to create the job. Must be a valid Cloud Storage URL, beginning with `gs://`.
string gcs_path = 2;
- Returns:
- Whether the gcsPath field is set.
-
getGcsPath
String getGcsPath()
Required. A Cloud Storage path to the template from which to create the job. Must be a valid Cloud Storage URL, beginning with `gs://`.
string gcs_path = 2;
- Returns:
- The gcsPath.
-
getGcsPathBytes
com.google.protobuf.ByteString getGcsPathBytes()
Required. A Cloud Storage path to the template from which to create the job. Must be a valid Cloud Storage URL, beginning with `gs://`.
string gcs_path = 2;
- Returns:
- The bytes for gcsPath.
-
getParametersCount
int getParametersCount()
The runtime parameters to pass to the job.
map<string, string> parameters = 3;
-
containsParameters
boolean containsParameters(String key)
The runtime parameters to pass to the job.
map<string, string> parameters = 3;
-
getParameters
@Deprecated Map<String,String> getParameters()
Deprecated.UsegetParametersMap()
instead.
-
getParametersMap
Map<String,String> getParametersMap()
The runtime parameters to pass to the job.
map<string, string> parameters = 3;
-
getParametersOrDefault
String getParametersOrDefault(String key, String defaultValue)
The runtime parameters to pass to the job.
map<string, string> parameters = 3;
-
getParametersOrThrow
String getParametersOrThrow(String key)
The runtime parameters to pass to the job.
map<string, string> parameters = 3;
-
hasEnvironment
boolean hasEnvironment()
The runtime environment for the job.
.google.dataflow.v1beta3.RuntimeEnvironment environment = 5;
- Returns:
- Whether the environment field is set.
-
getEnvironment
RuntimeEnvironment getEnvironment()
The runtime environment for the job.
.google.dataflow.v1beta3.RuntimeEnvironment environment = 5;
- Returns:
- The environment.
-
getEnvironmentOrBuilder
RuntimeEnvironmentOrBuilder getEnvironmentOrBuilder()
The runtime environment for the job.
.google.dataflow.v1beta3.RuntimeEnvironment environment = 5;
-
getLocation
String getLocation()
The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which to direct the request.
string location = 6;
- Returns:
- The location.
-
getLocationBytes
com.google.protobuf.ByteString getLocationBytes()
The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which to direct the request.
string location = 6;
- Returns:
- The bytes for location.
-
getTemplateCase
CreateJobFromTemplateRequest.TemplateCase getTemplateCase()
-
-