class Google::Cloud::Storage::Service

def delete_notification bucket_name, notification_id, user_project: nil, options: {}

Deletes a new Pub/Sub notification subscription for a bucket.
#
def delete_notification bucket_name, notification_id, user_project: nil, options: {}
  execute do
    service.delete_notification bucket_name, notification_id,
                                user_project: user_project(user_project),
                                options: options
  end
end