删除忽略规则
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
演示如何删除忽略规则
代码示例
Go
如需向 Security Command Center 进行身份验证,请设置应用默认凭证。
如需了解详情,请参阅为本地开发环境设置身份验证。
Java
如需向 Security Command Center 进行身份验证,请设置应用默认凭证。
如需了解详情,请参阅为本地开发环境设置身份验证。
Python
如需向 Security Command Center 进行身份验证,请设置应用默认凭证。
如需了解详情,请参阅为本地开发环境设置身份验证。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],[],[],[],null,["# Delete a mute rule\n\nDemonstrates how to delete a mute rule\n\nCode sample\n-----------\n\n### Go\n\n\nTo authenticate to Security Command Center, set up Application Default Credentials.\nFor more information, see\n\n[Set up authentication for a local development environment](/docs/authentication/set-up-adc-local-dev-environment).\n\n\n import (\n \t\"context\"\n \t\"fmt\"\n \t\"io\"\n\n \tsecuritycenter \"cloud.google.com/go/securitycenter/apiv1\"\n \t\"cloud.google.com/go/securitycenter/apiv1/securitycenterpb\"\n )\n\n // deleteMuteRule deletes a mute configuration given its resource name.\n // Note: Previously muted findings are not affected when a mute config is deleted.\n func deleteMuteRule(w io.Writer, parent string, muteConfigId string) error {\n \t// parent: Use any one of the following options:\n \t// - organizations/{organization_id}\n \t// - folders/{folder_id}\n \t// - projects/{project_id}\n \t// parent := fmt.Sprintf(\"projects/%s\", \"your-google-cloud-project-id\")\n \t//\n \t// muteConfigId: Specify the name of the mute config to delete.\n \t// muteConfigId := \"mute-config-id\"\n \tctx := context.Background()\n \tclient, err := securitycenter.NewClient(ctx)\n \tif err != nil {\n \t\treturn fmt.Errorf(\"securitycenter.NewClient: %w\", err)\n \t}\n \tdefer client.Close()\n\n \treq := &securitycenterpb.DeleteMuteConfigRequest{\n \t\tName: fmt.Sprintf(\"%s/muteConfigs/%s\", parent, muteConfigId),\n \t}\n\n \tif err := client.DeleteMuteConfig(ctx, req); err != nil {\n \t\treturn fmt.Errorf(\"failed to delete Muteconfig: %w\", err)\n \t}\n \tfmt.Fprintf(w, \"Mute rule deleted successfully: %s\", muteConfigId)\n \treturn nil\n }\n\n### Java\n\n\nTo authenticate to Security Command Center, set up Application Default Credentials.\nFor more information, see\n\n[Set up authentication for a local development environment](/docs/authentication/set-up-adc-local-dev-environment).\n\n\n import com.google.cloud.securitycenter.v1.MuteConfigName;\n import com.google.cloud.securitycenter.v1.SecurityCenterClient;\n import java.io.IOException;\n\n public class DeleteMuteRule {\n\n public static void main(String[] args) {\n // TODO(Developer): Replace the following variables\n // parentPath: Use any one of the following options:\n // - organizations/{organization_id}\n // - folders/{folder_id}\n // - projects/{project_id}\n String parentPath = String.format(\"projects/%s\", \"your-google-cloud-project-id\");\n\n // muteConfigId: Specify the name of the mute config to delete.\n String muteConfigId = \"mute-config-id\";\n\n deleteMuteRule(parentPath, muteConfigId);\n }\n\n // Deletes a mute configuration given its resource name.\n // Note: Previously muted findings are not affected when a mute config is deleted.\n public static void deleteMuteRule(String projectId, String muteConfigId) {\n // Initialize client that will be used to send requests. This client only needs to be created\n // once, and can be reused for multiple requests. After completing all of your requests, call\n // the \"close\" method on the client to safely clean up any remaining background resources.\n try (SecurityCenterClient client = SecurityCenterClient.create()) {\n // Use appropriate MuteConfigName methods depending on the type of parent.\n // org -\u003e MuteConfigName.ofOrganizationMuteConfigName()\n // folder -\u003e MuteConfigName.ofFolderMuteConfigName()\n // project -\u003e MuteConfigName.ofProjectMuteConfigName)\n client.deleteMuteConfig(MuteConfigName.ofProjectMuteConfigName(projectId, muteConfigId));\n\n System.out.println(\"Mute rule deleted successfully: \" + muteConfigId);\n } catch (IOException e) {\n System.out.println(\"Mute rule deletion failed! \\n Exception: \" + e);\n }\n }\n }\n\n### Python\n\n\nTo authenticate to Security Command Center, set up Application Default Credentials.\nFor more information, see\n\n[Set up authentication for a local development environment](/docs/authentication/set-up-adc-local-dev-environment).\n\n def delete_mute_rule(mute_config_name: str) -\u003e None:\n \"\"\"\n Deletes a mute configuration given its resource name.\n Note: Previously muted findings are not affected when a mute config is deleted.\n Args:\n mute_config_name: Specify the name of the mute config to delete.\n Use any one of the following formats:\n - organizations/{organization}/muteConfigs/{config_id}\n - folders/{folder}/muteConfigs/{config_id} or\n - projects/{project}/muteConfigs/{config_id}\n \"\"\"\n from google.cloud import securitycenter\n\n client = securitycenter.SecurityCenterClient()\n\n request = securitycenter.DeleteMuteConfigRequest()\n request.name = mute_config_name\n\n client.delete_mute_config(request)\n print(f\"Mute rule deleted successfully: {mute_config_name}\")\n\nWhat's next\n-----------\n\n\nTo search and filter code samples for other Google Cloud products, see the\n[Google Cloud sample browser](/docs/samples?product=securitycenter)."]]