Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Managed Service for Valkey™
  • Getting started
  • Access management
  • Pricing policy
  • Terraform reference
    • Authentication with the API
      • Overview
        • Overview
        • Get
        • List
        • Create
        • Update
        • Delete
  • Monitoring metrics
  • Audit Trails events
  • Public materials
  • Release notes
  • FAQ

In this article:

  • gRPC request
  • GetUserRequest
  • User
  • Permissions
  1. API reference
  2. gRPC
  3. User
  4. Get

Managed Service for Redis API, gRPC: UserService.Get

Written by
Yandex Cloud
Updated at January 23, 2025
  • gRPC request
  • GetUserRequest
  • User
  • Permissions

Returns the specified Redis User resource.

To get the list of available Redis User resources, make a List request.

gRPC requestgRPC request

rpc Get (GetUserRequest) returns (User)

GetUserRequestGetUserRequest

{
  "cluster_id": "string",
  "user_name": "string"
}

Field

Description

cluster_id

string

Required field. ID of the Redis cluster the user belongs to.
To get the cluster ID, use a ClusterService.List request.

user_name

string

Required field. Name of the Redis User resource to return.
To get the name of the user, use a UserService.List request.

UserUser

{
  "name": "string",
  "cluster_id": "string",
  "permissions": {
    "patterns": "google.protobuf.StringValue",
    "pub_sub_channels": "google.protobuf.StringValue",
    "categories": "google.protobuf.StringValue",
    "commands": "google.protobuf.StringValue",
    "sanitize_payload": "google.protobuf.StringValue"
  },
  "enabled": "bool",
  "acl_options": "string"
}

A Redis User resource. For more information, see the
Developer's Guide.

Field

Description

name

string

Name of the Redis user.

cluster_id

string

ID of the Redis cluster the user belongs to.

permissions

Permissions

Set of permissions to grant to the user.

enabled

bool

Is redis user enabled

acl_options

string

Raw ACL string inside of Redis

PermissionsPermissions

Field

Description

patterns

google.protobuf.StringValue

Keys patterns user has permission to.

pub_sub_channels

google.protobuf.StringValue

Channel patterns user has permissions to.

categories

google.protobuf.StringValue

Command categories user has permissions to.

commands

google.protobuf.StringValue

Commands user can execute.

sanitize_payload

google.protobuf.StringValue

SanitizePayload parameter.

Was the article helpful?

Previous
Overview
Next
List
Yandex project
© 2025 Yandex.Cloud LLC