Skip to main content

◆ deleteGraph() [1/2]

DeleteGraphResponse kinetica.Kinetica.deleteGraph (DeleteGraphRequestrequest_)
inline

Deletes an existing graph from the graph server and/or persist.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 31805 of file KineticaFunctions.cs.

◆ deleteGraph() [2/2]

DeleteGraphResponse kinetica.Kinetica.deleteGraph (stringgraph_name,
IDictionary< string, string >options = null )
inline

Deletes an existing graph from the graph server and/or persist.

Parameters
graph_nameName of the graph to be deleted.
optionsOptional parameters.
  • DELETE_PERSIST: If set to TRUE, the graph is removed from the server and persist. If set to FALSE, the graph is removed from the server but is left in persist. The graph can be reloaded from persist if it is recreated with the same ‘graph_name’. Supported values:The default value is TRUE.
  • SERVER_ID: Indicates which graph server(s) to send the request to. Default is to send to get information about all the servers.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 31875 of file KineticaFunctions.cs.

◆ DeleteGraphAsync() [1/2]

async System.Threading.Tasks.Task< DeleteGraphResponse > kinetica.Kinetica.DeleteGraphAsync (DeleteGraphRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Deletes an existing graph from the graph server and/or persist.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 31821 of file KineticaFunctions.cs.

◆ DeleteGraphAsync() [2/2]

async System.Threading.Tasks.Task< DeleteGraphResponse > kinetica.Kinetica.DeleteGraphAsync (stringgraph_name,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Deletes an existing graph from the graph server and/or persist.

(async)

Parameters
graph_nameName of the graph to be deleted.
optionsOptional parameters.
  • DELETE_PERSIST: If set to TRUE, the graph is removed from the server and persist. If set to FALSE, the graph is removed from the server but is left in persist. The graph can be reloaded from persist if it is recreated with the same ‘graph_name’. Supported values:The default value is TRUE.
  • SERVER_ID: Indicates which graph server(s) to send the request to. Default is to send to get information about all the servers.
The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 31929 of file KineticaFunctions.cs.