Delete a sink

Demonstrates how to delete a Cloud Logging Sink.

Code sample

C#

To learn how to install and use the client library for Logging, see Logging client libraries.

To authenticate to Logging, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

privatevoidDeleteSink(stringsinkId)
{
varsinkClient=ConfigServiceV2Client.Create();
LogSinkNamesinkName=newLogSinkName(s_projectId,sinkId);
sinkClient.DeleteSink(sinkName,_retryAWhile);
Console.WriteLine($"Deleted {sinkId}.");
}

Go

To learn how to install and use the client library for Logging, see Logging client libraries.

To authenticate to Logging, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

import(
"context"
"log"
"cloud.google.com/go/logging/logadmin"
)
funcdeleteSink(projectIDstring)error{
ctx:=context.Background()
client,err:=logadmin.NewClient (ctx,projectID)
iferr!=nil{
log.Fatalf("logadmin.NewClient: %v",err)
}
deferclient.Close ()
iferr:=client.DeleteSink (ctx,"severe-errors-to-gcs");err!=nil{
returnerr
}
returnnil
}

Java

To learn how to install and use the client library for Logging, see Logging client libraries.

To authenticate to Logging, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

booleandeleted=logging.deleteSink(sinkName);
if(deleted){
// the sink was deleted
}else{
// the sink was not found
}

Node.js

To learn how to install and use the client library for Logging, see Logging client libraries.

To authenticate to Logging, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

// Imports the Google Cloud client library
const{Logging}=require('@google-cloud/logging');
// Creates a client
constlogging=newLogging ();
/**
 * TODO(developer): Uncomment the following line to run the code.
 */
// const sinkName = 'Name of sink to delete, e.g. my-sink';
constsink=logging.sink(sinkName);
asyncfunctiondeleteSink(){
// See https://googleapis.dev/nodejs/logging/latest/Sink.html#delete
awaitsink.delete();
console.log(`Sink ${sinkName} deleted.`);
}
deleteSink();

PHP

To learn how to install and use the client library for Logging, see Logging client libraries.

To authenticate to Logging, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

use Google\Cloud\Logging\LoggingClient;
/**
 * Delete a log sink.
 *
 * @param string $projectId The Google project ID.
 * @param string $sinkName The name of the sink.
 */
function delete_sink($projectId, $sinkName)
{
 $logging = new LoggingClient(['projectId' => $projectId]);
 $logging->sink($sinkName)->delete();
 printf("Deleted a sink '%s'." . PHP_EOL, $sinkName);
}

Python

To learn how to install and use the client library for Logging, see Logging client libraries.

To authenticate to Logging, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

defdelete_sink(sink_name):
"""Deletes a sink."""
 logging_client = logging.Client()
 sink = logging_client.sink(sink_name)
 sink.delete()
 print("Deleted sink {}".format(sink.name))

Ruby

To learn how to install and use the client library for Logging, see Logging client libraries.

To authenticate to Logging, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

require"google/cloud/logging"
logging=Google::Cloud::Logging .new
# sink_name = "name-of-my-sink"
sink=logging.sinksink_name
sink.delete
puts"Deleted sink: #{sink.name}"

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.