Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Identity and Access Management
    • All guides
    • Handling secrets that are available in the public domain
    • Users
    • User groups
      • Viewing the status of services
      • Enabling and disabling services
  • Secure use of Yandex Cloud
  • Access management
  • Pricing policy
  • Role reference
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes

In this article:

  • Getting a list of services
  • Getting information about a service status
  1. Step-by-step guides
  2. Service access to user resources
  3. Viewing the status of services

Getting the status of services

Written by
Yandex Cloud
Updated at October 20, 2025
  • Getting a list of services
  • Getting information about a service status

Note

This feature is at the Preview stage.

In Yandex Identity and Access Management, you can manage service access to user resources in a specific cloud.

Getting a list of servicesGetting a list of services

To get a list of services whose access in the cloud can be managed:

Management console
CLI
API
  1. In the management console, select the relevant cloud.
  2. In the left-hand panel, click and select Permissions.

If you do not have the Yandex Cloud CLI installed yet, install and initialize it.

By default, the CLI uses the cloud specified in the CLI profile. You can set a different cloud in the --cloud-id parameter.

  1. View the description of the CLI command to get a list of services whose access you can manage:

    yc iam service-control list --help
    
  2. Run this command:

    yc iam service-control list \
      --limit <number_of_services>
    

    Where --limit is the number of services you need to list. This is an optional parameter.

    Result:

    +--------------------+----------+
    |     SERVICE ID     |  STATUS  |
    +--------------------+----------+
    | connection-manager | ENABLED  |
    | datasphere         | DISABLED |
    | disk-encryption    | DEFAULT  |
    | dspm               | DEFAULT  |
    | websql             | ENABLED  |
    +--------------------+----------+
    

Use the list REST API method for the ServiceControl resource or the ServiceControlService/List gRPC API call.

Getting information about a service statusGetting information about a service status

To get information about the status of a service in a cloud:

Management console
CLI
API
  1. In the management console, select the relevant cloud.
  2. In the left-hand panel, click and select Permissions.
  3. Enter the service name in the Filter by service field.

If you do not have the Yandex Cloud CLI installed yet, install and initialize it.

By default, the CLI uses the cloud specified in the CLI profile. You can set a different cloud in the --cloud-id parameter.

  1. See the description of the CLI command to get information about the status of a service in a cloud:

    yc iam service-control get --help
    
  2. Get a list of services whose access can be managed.

  3. Run the command by specifying the ID of the service whose status in this cloud you want to get:

    yc iam service-control get <service_ID>
    

    Result:

    service_id: connection-manager
    resource:
      id: aoenvj7ssrvr********
      type: resource-manager.cloud
    updated_at: "2024-03-13T07:21:00.808442047Z"
    status: DISABLED
    

Use the get REST API method for the ServiceControl resource or the ServiceControlService/Get gRPC API call.

See alsoSee also

  • Enabling and disabling a service
  • Service access to user resources

Was the article helpful?

Previous
Creating a temporary access key using Security Token Service
Next
Enabling and disabling services
© 2025 Direct Cursus Technology L.L.C.