NAME
    gcloud scc notifications update - update a Cloud Security Command Center
        notification config

SYNOPSIS
    gcloud scc notifications update NOTIFICATION_CONFIG_ID
        [--description=DESCRIPTION] [--filter=FILTER]
        [--pubsub-topic=PUBSUB_TOPIC]
        [--folder=FOLDER | --organization=ORGANIZATION | --project=PROJECT]
        [GCLOUD_WIDE_FLAG ...]

DESCRIPTION
    Update a Cloud Security Command Center notification config.

EXAMPLES
    Update all mutable fields under an organization parent my-config
    (description + pubsub topic + filter):

        $ gcloud scc notifications update scc notifications update \
            my-config --organization=123 --description="New description" \
            --pubsub-topic="projects/22222/topics/newtopic"

        $ gcloud scc notifications update scc notifications update \
            organizations/123/notificationConfigs/my-config \
            --description="New description" \
            --pubsub-topic="projects/22222/topics/newtopic"

    Update all mutable fields under a folder parent my-config (description +
    pubsub topic + filter):

        $ gcloud scc notifications update scc notifications update \
            my-config --folder=456 --description="New description" \
            --pubsub-topic="projects/22222/topics/newtopic"

        $ gcloud scc notifications update scc notifications update \
            folders/456/notificationConfigs/my-config \
            --description="New description" \
            --pubsub-topic="projects/22222/topics/newtopic"

    Update all mutable fields under a project parent my-config (description +
    pubsub topic + filter):

        $ gcloud scc notifications update scc notifications update \
            my-config --project=789 --description="New description" \
            --pubsub-topic="projects/22222/topics/newtopic"

        $ gcloud scc notifications update scc notifications update \
            projects/789/notificationConfigs/my-config \
            --description="New description" \
            --pubsub-topic="projects/22222/topics/newtopic"

    Update my-config's description

        $ gcloud scc notifications update my-config --organization=123 \
            --description="New description"

        $ gcloud scc notifications update \
            organizations/123/notificationConfigs/my-config \
            --description="New description"

    Update my-config's pubsub-topic

        $ gcloud scc notifications update my-config --organization=123 \
            --pubsub-topic="projects/22222/topics/newtopic"

        $ gcloud scc notifications update \
            organizations/123/notificationConfigs/my-config \
            --pubsub-topic="projects/22222/topics/newtopic"

    Update my-config's filter

        $ gcloud scc notifications update my-config --organization=123 \
            --filter='state = \"ACTIVE\"'

        $ gcloud scc notifications update \
            organizations/123/notificationConfigs/my-config \
            --filter='state = \"ACTIVE\"'

POSITIONAL ARGUMENTS
     NOTIFICATION_CONFIG_ID
        The ID of the notification config. Formatted as
        "organizations/123/notificationConfigs/456" or just "456".

FLAGS
     --description=DESCRIPTION
        The text that will be used to describe a notification configuration.

     --filter=FILTER
        The filter string which will applied to events of findings of a
        notification configuration.

     --pubsub-topic=PUBSUB_TOPIC
        The Pub/Sub topic which will receive notifications. Its format is
        "projects/[project_id]/topics/[topic]".

     At most one of these can be specified:

       --folder=FOLDER
          Folder where the notification config resides. Formatted as
          folders/456 or just 456.

       --organization=ORGANIZATION
          Organization where the notification config resides. Formatted as
          organizations/123 or just 123.

       --project=PROJECT
          Project (ID or number) where the notification config resides.
          Formatted as projects/789 or just 789.

GCLOUD WIDE FLAGS
    These flags are available to all commands: --access-token-file, --account,
    --billing-project, --configuration, --flags-file, --flatten, --format,
    --help, --impersonate-service-account, --log-http, --project, --quiet,
    --trace-token, --user-output-enabled, --verbosity.

    Run $ gcloud help for details.

API REFERENCE
    This command uses the securitycenter/v1 API. The full documentation for
    this API can be found at: https://cloud.google.com/security-command-center

NOTES
    These variants are also available:

        $ gcloud alpha scc notifications update

        $ gcloud beta scc notifications update

