securitycenter/notifications/update_notification_config.go (41 lines of code) (raw):
// Copyright 2020 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
//
// https://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 notifications
// [START securitycenter_update_notification_config]
import (
"context"
"fmt"
"io"
securitycenter "cloud.google.com/go/securitycenter/apiv1"
"cloud.google.com/go/securitycenter/apiv1/securitycenterpb"
"google.golang.org/genproto/protobuf/field_mask"
)
func updateNotificationConfig(w io.Writer, orgID string, notificationConfigID string, updatedPubsubTopic string) error {
// orgID := "your-org-id"
// notificationConfigID := "your-config-id"
// updatedPubsubTopic := "projects/{new-project}/topics/{new-topic}"
ctx := context.Background()
client, err := securitycenter.NewClient(ctx)
if err != nil {
return fmt.Errorf("securitycenter.NewClient: %w", err)
}
defer client.Close()
updatedDescription := "Updated sample config"
updatedFilter := `state = "INACTIVE"`
// Parent must be in one of the following formats:
// "organizations/{orgId}"
// "projects/{projectId}"
// "folders/{folderId}"
parent := fmt.Sprintf("organizations/%s", orgID)
req := &securitycenterpb.UpdateNotificationConfigRequest{
NotificationConfig: &securitycenterpb.NotificationConfig{
Name: fmt.Sprintf("%s/notificationConfigs/%s", parent, notificationConfigID),
Description: updatedDescription,
PubsubTopic: updatedPubsubTopic,
NotifyConfig: &securitycenterpb.NotificationConfig_StreamingConfig_{
StreamingConfig: &securitycenterpb.NotificationConfig_StreamingConfig{
Filter: updatedFilter,
},
},
},
UpdateMask: &field_mask.FieldMask{
Paths: []string{"description", "pubsub_topic", "streaming_config.filter"},
},
}
notificationConfig, err := client.UpdateNotificationConfig(ctx, req)
if err != nil {
return fmt.Errorf("Failed to update notification config: %w", err)
}
fmt.Fprintln(w, "Updated NotificationConfig: ", notificationConfig)
return nil
}
// [END securitycenter_update_notification_config]