Yandex Cloud
  • Services
  • Solutions
  • Why Yandex Cloud
  • Blog
  • Pricing
  • Documentation
  • Contact us
Get started
Language / Region
Yandex project
© 2023 Yandex.Cloud LLC
Yandex Cloud Functions
  • Comparison with other Yandex Cloud services
  • Getting started
  • Step-by-step instructions
    • All instructions
    • Using functions to get an IAM token for a service account
    • Connecting to managed databases from functions
    • Getting information about a function
      • Getting a list of functions
      • Getting a list of function versions
      • Getting information about a function
      • Getting information about a function version
    • Managing rights to access functions
    • Creating a function
    • Invoking a function
    • Managing functions
    • Getting information about a trigger
    • Creating a trigger
    • Managing triggers
  • Concepts
  • Developing in Node.js
  • Developing in Python
  • Developing in Go
  • Developing in PHP
  • Developing in Bash
  • Developing in Java
  • Developing in R
  • Developing in C#
  • Practical guidelines
  • Pricing policy
  • Access management
  • API Functions reference
  • API Triggers reference
  • Questions and answers
  1. Step-by-step instructions
  2. Getting information about a function
  3. Getting information about a function version

Getting information about a function version

Written by
Yandex Cloud
    Management console
    CLI
    API
    Yandex Cloud Toolkit
    1. In the management console, select the folder containing your function.
    2. Select Cloud Functions.
    3. On the left-hand panel, select Functions.
    4. Select the function to get a list of versions for.
    5. Under Version history, you can find the list of function versions and their details.

    If you don't have the Yandex Cloud command line interface yet, install and initialize it.

    The folder specified in the CLI profile is used by default. You can specify a different folder using the --folder-name or --folder-id parameter.

    To find out the name or unique ID of a function version, get a list of function versions in the folder.

    To get detailed information about a function version by:

    • ID, run the command:

      yc serverless function version get <version_ID>
      

      Result:

      id: b09u830mb1n3********
      function_id: b097d9ous3ge********
      created_at: "2019-06-13T09:23:23.383Z"
      runtime: python37
      entrypoint: test.handler
      resources:
        memory: "134217728"
      execution_timeout: 5s
      image_size: "4096"
      status: ACTIVE
      tags:
      - $latest
      log_group_id: eolv6578frac********
      
    • TAGS, run the command:

      yc serverless function version get-by-tag --function-name <function_name> --tag <tag>
      

      Result:

      id: b09ch6pmpohf********
      function_id: b097d9ous3ge********
      created_at: "2019-06-13T09:12:38.464Z"
      runtime: python37
      entrypoint: test.handler
      resources:
        memory: "134217728"
      execution_timeout: 5s
      image_size: "4096"
      status: ACTIVE
      tags:
      - beta
      log_group_id: eolv6578frac********
      

    You can get details of the function version using the getVersion API method.

    You can get details about a function version using the Yandex Cloud Toolkit plugin for the IDE family on the IntelliJ platform from JetBrains.

    Was the article helpful?

    Language / Region
    Yandex project
    © 2023 Yandex.Cloud LLC