forked from GoogleCloudPlatform/java-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeleteEventThreatDetectionCustomModule.java
58 lines (46 loc) · 2.27 KB
/
DeleteEventThreatDetectionCustomModule.java
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
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package management.api;
// [START securitycenter_delete_event_threat_detection_custom_module]
import com.google.cloud.securitycentermanagement.v1.DeleteEventThreatDetectionCustomModuleRequest;
import com.google.cloud.securitycentermanagement.v1.SecurityCenterManagementClient;
import java.io.IOException;
public class DeleteEventThreatDetectionCustomModule {
public static void main(String[] args) throws IOException {
// https://cloud.google.com/security-command-center/docs/reference/security-center-management/rest/v1/organizations.locations.eventThreatDetectionCustomModules/delete
// TODO: Developer should replace project_id with a real project ID before running this code
String projectId = "project_id";
String customModuleId = "custom_module_id";
deleteEventThreatDetectionCustomModule(projectId, customModuleId);
}
public static boolean deleteEventThreatDetectionCustomModule(
String projectId, String customModuleId) throws IOException {
// Initialize client that will be used to send requests. This client only needs
// to be created
// once, and can be reused for multiple requests.
try (SecurityCenterManagementClient client = SecurityCenterManagementClient.create()) {
String name =
String.format(
"projects/%s/locations/global/eventThreatDetectionCustomModules/%s",
projectId, customModuleId);
DeleteEventThreatDetectionCustomModuleRequest request =
DeleteEventThreatDetectionCustomModuleRequest.newBuilder().setName(name).build();
client.deleteEventThreatDetectionCustomModule(request);
return true;
}
}
}
// [END securitycenter_delete_event_threat_detection_custom_module]