def Run(self, args):
        """This is what gets called when the user runs this command.

    Args:
      args: an argparse namespace. All the arguments that were provided to this
      command invocation.

    Returns:
      Status of command execution.
    """
        store_resource_ref = flags.GetStoreResourceFromArgs(args)
        return iam_lib.RemoveIamPolicyBinding(resource_ref=store_resource_ref,
                                              role=args.role,
                                              member=args.member,
                                              module=store)
    def Run(self, args):
        """This is what gets called when the user runs this command.

    Args:
      args: an argparse namespace. All the arguments that were provided to this
      command invocation.

    Returns:
      Status of command execution.
    """
        org_ref = args.CONCEPTS.organization_id.Parse()
        return iam_lib.RemoveIamPolicyBinding(
            resource_ref=util.GetTaxonomyStoreRefFromOrgRef(org_ref),
            role=args.role,
            member=args.member,
            module=store)