create method
Creates a schema.
request - The metadata request object.
Request parameters:
parent - Required. The name of the project in which to create the
schema. Format is projects/{project-id}.
Value must have pattern ^projects/\[^/\]+$.
schemaId - The ID to use for the schema, which will become the final
component of the schema's resource name. See
https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names for
resource name constraints.
$fields - Selector specifying which fields to include in a partial
response.
Completes with a Schema.
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<Schema> create(
  Schema request,
  core.String parent, {
  core.String? schemaId,
  core.String? $fields,
}) async {
  final body_ = convert.json.encode(request);
  final queryParams_ = <core.String, core.List<core.String>>{
    if (schemaId != null) 'schemaId': [schemaId],
    if ($fields != null) 'fields': [$fields],
  };
  final url_ = 'v1/' + core.Uri.encodeFull('$parent') + '/schemas';
  final response_ = await _requester.request(
    url_,
    'POST',
    body: body_,
    queryParams: queryParams_,
  );
  return Schema.fromJson(response_ as core.Map<core.String, core.dynamic>);
}