delete method
Marks target Property as soft-deleted (ie: "trashed") and returns it.
This API does not have a method to restore soft-deleted properties. However, they can be restored using the Trash Can UI. If the properties are not restored before the expiration time, the Property and all child resources (eg: GoogleAdsLinks, Streams, AccessBindings) will be permanently purged. https://support.google.com/analytics/answer/6154772 Returns an error if the target is not found, or is not a GA4 Property.
Request parameters:
name - Required. The name of the Property to soft-delete. Format:
properties/{property_id} Example: "properties/1000"
Value must have pattern ^properties/\[^/\]+$.
$fields - Selector specifying which fields to include in a partial
response.
Completes with a GoogleAnalyticsAdminV1betaProperty.
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<GoogleAnalyticsAdminV1betaProperty> delete(
  core.String name, {
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };
  final url_ = 'v1beta/' + core.Uri.encodeFull('$name');
  final response_ = await _requester.request(
    url_,
    'DELETE',
    queryParams: queryParams_,
  );
  return GoogleAnalyticsAdminV1betaProperty.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}