-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDeleteExample.java
More file actions
78 lines (68 loc) · 3.31 KB
/
Copy pathDeleteExample.java
File metadata and controls
78 lines (68 loc) · 3.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package com.example.vault;
import com.skyflow.Skyflow;
import com.skyflow.config.Credentials;
import com.skyflow.config.VaultConfig;
import com.skyflow.enums.CustomHeaderKey;
import com.skyflow.enums.Env;
import com.skyflow.enums.LogLevel;
import com.skyflow.errors.SkyflowException;
import com.skyflow.vault.data.*;
import java.util.ArrayList;
import java.util.List;
/**
* This sample demonstrates the Skyflow Java SDK's unary delete operation — deleting records by
* skyflowId or unique value. This makes exactly one API call per invocation: there is no internal
* batching or concurrency to configure.
*
* Distinct from deleteTokens/bulkDeleteTokens, which remove tokens only and leave the underlying
* record in place.
*/
public class DeleteExample {
public static void main(String[] args) {
try {
// Step 1: Initialize credentials with the path to your service account key file
// String filePath = "<YOUR_CREDENTIALS_FILE_PATH>";
Credentials credentials = new Credentials();
credentials.setToken("<YOUR_BEARER_TOKEN>");
// Step 2: Configure the vault with required parameters
VaultConfig vaultConfig = new VaultConfig();
vaultConfig.setVaultId("<YOUR_VAULT_ID>");
vaultConfig.setClusterId("<YOUR_CLUSTER_ID>");
vaultConfig.setEnv(Env.PROD);
vaultConfig.setCredentials(credentials);
// Step 3: Create Skyflow client instance with error logging
Skyflow skyflowClient = Skyflow.builder()
.setLogLevel(LogLevel.ERROR)
.addVaultConfig(vaultConfig)
.build();
// Step 4: Prepare the skyflow IDs to delete.
// Either ids or uniqueValues is required; specifying both fails validation.
// Running this actually removes the record — rerunning GetExample/UpdateExample
// against the same skyflowId afterward will then fail, since it's gone.
List<String> ids = new ArrayList<>();
ids.add("<YOUR_SKYFLOW_ID>");
// Step 5: Build and execute the delete request
DeleteRequest request = DeleteRequest.builder()
.table("<YOUR_TABLE_NAME>")
.ids(ids)
.build();
DeleteOptions options = DeleteOptions.builder()
.interceptor(ctx -> {
ctx.addHeader(CustomHeaderKey.REQUEST_ID_HEADER, "DeleteOptions"); // pass the request id here
})
.build();
DeleteResponse response = skyflowClient.vault().delete(request, options);
// Step 6: Read the outcome. A record succeeded when its error is null.
for (DeleteResponseRecord record : response.getRecords()) {
if (record.getError() == null) {
System.out.printf("delete: skyflowId=%s removed%n", record.getSkyflowId());
} else {
System.out.printf("delete failed (%d): %s%n", record.getHttpCode(), record.getError());
}
}
} catch (SkyflowException e) {
// Step 7: Handle any errors that occur during the process
System.err.println("Error in delete operation:\t" + e);
}
}
}