def Args(parser):
        """Args is called by calliope to gather arguments for this command.

    Args:
      parser: An argparse parser that you can use to add arguments that go
          on the command line after this command. Positional arguments are
          allowed.
    """
        common_flags.service_flag(suffix='to describe').AddToParser(parser)
Exemple #2
0
    def Args(parser):
        """Args is called by calliope to gather arguments for this command.

    Args:
      parser: An argparse parser that you can use to add arguments that go
          on the command line after this command. Positional arguments are
          allowed.
    """
        common_flags.service_flag(
            suffix='from which to retrieve the configuration').AddToParser(
                parser)

        parser.add_argument(
            '--version',
            help='The particular version for which to retrieve '
            'the configuration. Defaults to the active '
            'version.')
    def Args(parser):
        """Args is called by calliope to gather arguments for this command.

    Args:
      parser: An argparse parser that you can use to add arguments that go
          on the command line after this command. Positional arguments are
          allowed.
    """

        service_flag = common_flags.service_flag(
            suffix='for which to check the IAM policy')
        service_flag.AddToParser(parser)
    def Args(parser):
        """Args is called by calliope to gather arguments for this command.

    Args:
      parser: An argparse parser that you can use to add arguments that go
          on the command line after this command. Positional arguments are
          allowed.
    """
        service_flag = common_flags.service_flag(
            suffix='from which the member is to be removed')
        service_flag.AddToParser(parser)

        iam_util.AddArgsForRemoveIamPolicyBinding(parser)