create method
- GoogleCloudApihubV1RuntimeProjectAttachment request,
- String parent, {
- String? runtimeProjectAttachmentId,
- String? $fields,
Attaches a runtime project to the host project.
request
- The metadata request object.
Request parameters:
parent
- Required. The parent resource for the Runtime Project
Attachment. Format: projects/{project}/locations/{location}
Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$
.
runtimeProjectAttachmentId
- Required. The ID to use for the Runtime
Project Attachment, which will become the final component of the Runtime
Project Attachment's name. The ID must be the same as the project ID of
the Google cloud project specified in the
runtime_project_attachment.runtime_project field.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudApihubV1RuntimeProjectAttachment.
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<GoogleCloudApihubV1RuntimeProjectAttachment> create(
GoogleCloudApihubV1RuntimeProjectAttachment request,
core.String parent, {
core.String? runtimeProjectAttachmentId,
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if (runtimeProjectAttachmentId != null)
'runtimeProjectAttachmentId': [runtimeProjectAttachmentId],
if ($fields != null) 'fields': [$fields],
};
final url_ =
'v1/' + core.Uri.encodeFull('$parent') + '/runtimeProjectAttachments';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return GoogleCloudApihubV1RuntimeProjectAttachment.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}