Package com.google.dataflow.v1beta3
Interface LaunchTemplateParametersOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LaunchTemplateParameters
,LaunchTemplateParameters.Builder
public interface LaunchTemplateParametersOrBuilder 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.boolean
containsTransformNameMapping(String key)
Only applicable when updating a pipeline.RuntimeEnvironment
getEnvironment()
The runtime environment for the job.RuntimeEnvironmentOrBuilder
getEnvironmentOrBuilder()
The runtime environment for the job.String
getJobName()
Required.com.google.protobuf.ByteString
getJobNameBytes()
Required.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.Map<String,String>
getTransformNameMapping()
Deprecated.int
getTransformNameMappingCount()
Only applicable when updating a pipeline.Map<String,String>
getTransformNameMappingMap()
Only applicable when updating a pipeline.String
getTransformNameMappingOrDefault(String key, String defaultValue)
Only applicable when updating a pipeline.String
getTransformNameMappingOrThrow(String key)
Only applicable when updating a pipeline.boolean
getUpdate()
If set, replace the existing pipeline with the name specified by jobName with this pipeline, preserving state.boolean
hasEnvironment()
The runtime environment for the job.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getJobName
String getJobName()
Required. The job name to use for the created job.
string job_name = 1;
- Returns:
- The jobName.
-
getJobNameBytes
com.google.protobuf.ByteString getJobNameBytes()
Required. The job name to use for the created job.
string job_name = 1;
- Returns:
- The bytes for jobName.
-
getParametersCount
int getParametersCount()
The runtime parameters to pass to the job.
map<string, string> parameters = 2;
-
containsParameters
boolean containsParameters(String key)
The runtime parameters to pass to the job.
map<string, string> parameters = 2;
-
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 = 2;
-
getParametersOrDefault
String getParametersOrDefault(String key, String defaultValue)
The runtime parameters to pass to the job.
map<string, string> parameters = 2;
-
getParametersOrThrow
String getParametersOrThrow(String key)
The runtime parameters to pass to the job.
map<string, string> parameters = 2;
-
hasEnvironment
boolean hasEnvironment()
The runtime environment for the job.
.google.dataflow.v1beta3.RuntimeEnvironment environment = 3;
- Returns:
- Whether the environment field is set.
-
getEnvironment
RuntimeEnvironment getEnvironment()
The runtime environment for the job.
.google.dataflow.v1beta3.RuntimeEnvironment environment = 3;
- Returns:
- The environment.
-
getEnvironmentOrBuilder
RuntimeEnvironmentOrBuilder getEnvironmentOrBuilder()
The runtime environment for the job.
.google.dataflow.v1beta3.RuntimeEnvironment environment = 3;
-
getUpdate
boolean getUpdate()
If set, replace the existing pipeline with the name specified by jobName with this pipeline, preserving state.
bool update = 4;
- Returns:
- The update.
-
getTransformNameMappingCount
int getTransformNameMappingCount()
Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.
map<string, string> transform_name_mapping = 5;
-
containsTransformNameMapping
boolean containsTransformNameMapping(String key)
Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.
map<string, string> transform_name_mapping = 5;
-
getTransformNameMapping
@Deprecated Map<String,String> getTransformNameMapping()
Deprecated.UsegetTransformNameMappingMap()
instead.
-
getTransformNameMappingMap
Map<String,String> getTransformNameMappingMap()
Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.
map<string, string> transform_name_mapping = 5;
-
getTransformNameMappingOrDefault
String getTransformNameMappingOrDefault(String key, String defaultValue)
Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.
map<string, string> transform_name_mapping = 5;
-
-