Class JobGetResponse.Builder
-
- All Implemented Interfaces:
public final class JobGetResponse.BuilderA builder for JobGetResponse.
-
-
Method Summary
-
-
Method Detail
-
jobId
final JobGetResponse.Builder jobId(String jobId)
Unique identifier of the bulk job.
-
jobId
final JobGetResponse.Builder jobId(JsonField<String> jobId)
Sets Builder.jobId to an arbitrary JSON value.
You should usually call Builder.jobId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
purgeRequestId
final JobGetResponse.Builder purgeRequestId(String purgeRequestId)
Unique identifier of the purge request. This will be present only if
purgeCacheis set totruein the rename folder API request.
-
purgeRequestId
final JobGetResponse.Builder purgeRequestId(JsonField<String> purgeRequestId)
Sets Builder.purgeRequestId to an arbitrary JSON value.
You should usually call Builder.purgeRequestId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
status
final JobGetResponse.Builder status(JobGetResponse.Status status)
Status of the bulk job.
-
status
final JobGetResponse.Builder status(JsonField<JobGetResponse.Status> status)
Sets Builder.status to an arbitrary JSON value.
You should usually call Builder.status with a well-typed Status value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final JobGetResponse.Builder type(JobGetResponse.Type type)
Type of the bulk job.
-
type
final JobGetResponse.Builder type(JsonField<JobGetResponse.Type> type)
Sets Builder.type to an arbitrary JSON value.
You should usually call Builder.type with a well-typed Type value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final JobGetResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final JobGetResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final JobGetResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final JobGetResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final JobGetResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final JobGetResponse build()
Returns an immutable instance of JobGetResponse.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-