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 Object Storage
  • Pricing policy
  • Terraform reference
    • API authentication
        • Overview
          • Overview
          • Create
  • Monitoring metrics
  • Audit Trails events
  • Bucket logs
  • Release notes
  • FAQ

In this article:

  • gRPC request
  • PresignURLsRequest
  • PresignObjectRequest
  • PresignURLsResponse
  1. API reference
  2. gRPC and REST
  3. gRPC
  4. Presign
  5. Create

Object Storage API, gRPC: PresignService.Create

Written by
Yandex Cloud
Updated at September 2, 2025
  • gRPC request
  • PresignURLsRequest
  • PresignObjectRequest
  • PresignURLsResponse

Create generates presigned URLs for the specified objects

gRPC requestgRPC request

rpc Create (PresignURLsRequest) returns (PresignURLsResponse)

PresignURLsRequestPresignURLsRequest

{
  "bucket_name": "string",
  "presign_host": "string",
  "objects": [
    {
      "expires": "int64",
      "name": "string",
      "method": "string",
      "headers": "map<string, string>",
      "version_id": "string",
      "as_attachment": "bool"
    }
  ]
}

PresignURLsRequest represents the request for presigning URLs

Field

Description

bucket_name

string

Bucket name

presign_host

string

Custom presign host (optional)

objects[]

PresignObjectRequest

List of objects to presign

PresignObjectRequestPresignObjectRequest

PresignObjectRequest represents a single object presign request

Field

Description

expires

int64

Expiration time in seconds

name

string

Object name/key

method

string

HTTP method (GET, PUT, HEAD)

headers

object (map<string, string>)

Additional HTTP headers

version_id

string

Object version ID (optional)

as_attachment

bool

Whether to force download as attachment

PresignURLsResponsePresignURLsResponse

{
  "urls": [
    "string"
  ]
}

PresignURLsResponse represents the response with presigned URLs

Field

Description

urls[]

string

List of presigned URLs corresponding to the requested objects

Was the article helpful?

Previous
Overview
Next
Overview
© 2025 Direct Cursus Technology L.L.C.