create method

Future<JobTemplate> create(
  1. JobTemplate request,
  2. String parent, {
  3. String? jobTemplateId,
  4. String? $fields,
})

Creates a job template in the specified region.

request - The metadata request object.

Request parameters:

parent - Required. The parent location to create this job template. Format: projects/{project}/locations/{location} Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.

jobTemplateId - 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*.

$fields - Selector specifying which fields to include in a partial response.

Completes with a JobTemplate.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<JobTemplate> create(
  JobTemplate request,
  core.String parent, {
  core.String? jobTemplateId,
  core.String? $fields,
}) async {
  final _body = convert.json.encode(request.toJson());
  final _queryParams = <core.String, core.List<core.String>>{
    if (jobTemplateId != null) 'jobTemplateId': [jobTemplateId],
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v1beta1/' + core.Uri.encodeFull('$parent') + '/jobTemplates';

  final _response = await _requester.request(
    _url,
    'POST',
    body: _body,
    queryParams: _queryParams,
  );
  return JobTemplate.fromJson(
      _response as core.Map<core.String, core.dynamic>);
}