marketplace/deployer_util/extract_schema_key.py [23:34]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
_PROG_HELP = """
Parses the provided schema file and prints all x-google-marketplace
properties that match the provided type.
"""


def main():
  parser = ArgumentParser(description=_PROG_HELP)
  parser.add_argument(
      '--schema_file',
      help='Path to the schema file',
      default='/data/schema.yaml')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



marketplace/deployer_util/print_app_api_version.py [23:33]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
_PROG_HELP = """
Prints the applicationApiVersion defined in the schema file.
"""


def main():
  parser = ArgumentParser(description=_PROG_HELP)
  parser.add_argument(
      '--schema_file',
      help='Path to the schema file',
      default='/data/schema.yaml')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



