NAME
    gcloud vmware dns-bind-permission revoke - revokes a DNS Bind Permission

SYNOPSIS
    gcloud vmware dns-bind-permission revoke
        (--service-account=SERVICE_ACCOUNT | --user=USER) [--async]
        [GCLOUD_WIDE_FLAG ...]

DESCRIPTION
    Revokes the bind permission from the customer provided user/service account
    on the intranet VPC associated with the consumer project.

EXAMPLES
    To revoke the bind permission to the customer provided user user@abc.com on
    the intranet VPC associated with the consumer project my-project, run:

        $ gcloud vmware dns-bind-permission revoke --user=user@abc.com \
            --project=my-project

    Or:

        $ gcloud vmware dns-bind-permission revoke --user=user@abc.com

    In the second example, the project is taken from gcloud properties
    core/project.

    To revoke the bind permission to the customer provided service account
    service-account@gserviceaccount.com on the intranet VPC associated with the
    consumer project my-project, run:

        $ gcloud vmware dns-bind-permission revoke \
            --service-account=service-account@gserviceaccount.com \
            --project=my-project

    Or:

        $ gcloud vmware dns-bind-permission revoke \
            --service-account=service-account@gserviceaccount.com

    In the second example, the project is taken from gcloud properties
    core/project.

REQUIRED FLAGS
     Exactly one of these must be specified:

       --service-account=SERVICE_ACCOUNT
          The consumer provided service account whose permission needs to be
          revoked on the intranet VPC corresponding to the consumer project. If
          this field is not provided then the user should be provided.

       --user=USER
          The consumer provided user whose permission needs to be revoked on
          the intranet VPC corresponding to the consumer project. If this field
          is not provided then the service-account should be provided.

OPTIONAL FLAGS
     --async
        Return immediately, without waiting for the operation in progress to
        complete. The default is True. Enabled by default, use --no-async to
        disable.

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.
