Interface CreateJobTemplateRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateJobTemplateRequest
,CreateJobTemplateRequest.Builder
public interface CreateJobTemplateRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobTemplate
getJobTemplate()
Required.String
getJobTemplateId()
Required.com.google.protobuf.ByteString
getJobTemplateIdBytes()
Required.JobTemplateOrBuilder
getJobTemplateOrBuilder()
Required.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.boolean
hasJobTemplate()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The parent location to create this job template. Format: `projects/{project}/locations/{location}`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The parent location to create this job template. Format: `projects/{project}/locations/{location}`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasJobTemplate
boolean hasJobTemplate()
Required. Parameters for creating job template.
.google.cloud.video.transcoder.v1.JobTemplate job_template = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the jobTemplate field is set.
-
getJobTemplate
JobTemplate getJobTemplate()
Required. Parameters for creating job template.
.google.cloud.video.transcoder.v1.JobTemplate job_template = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The jobTemplate.
-
getJobTemplateOrBuilder
JobTemplateOrBuilder getJobTemplateOrBuilder()
Required. Parameters for creating job template.
.google.cloud.video.transcoder.v1.JobTemplate job_template = 2 [(.google.api.field_behavior) = REQUIRED];
-
getJobTemplateId
String getJobTemplateId()
Required. The ID to use for the job template, which will become the final component of the job template's resource name. This value should be 4-63 characters, and valid characters must match the regular expression `[a-zA-Z][a-zA-Z0-9_-]*`.
string job_template_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The jobTemplateId.
-
getJobTemplateIdBytes
com.google.protobuf.ByteString getJobTemplateIdBytes()
Required. The ID to use for the job template, which will become the final component of the job template's resource name. This value should be 4-63 characters, and valid characters must match the regular expression `[a-zA-Z][a-zA-Z0-9_-]*`.
string job_template_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for jobTemplateId.
-
-