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
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Object Storage
  • Terraform reference
    • Authentication with the API
        • Overview
          • Overview
          • List
          • Get
          • Create
          • Update
          • Delete
          • GetStats
          • GetHTTPSConfig
          • SetHTTPSConfig
          • DeleteHTTPSConfig
  • Monitoring metrics
  • Audit Trails events
  • Bucket logs
  • Release notes
  • FAQ

In this article:

  • gRPC request
  • GetBucketHTTPSConfigRequest
  • HTTPSConfig
  1. API reference
  2. gRPC and REST
  3. gRPC
  4. Bucket
  5. GetHTTPSConfig

Object Storage API, gRPC: BucketService.GetHTTPSConfig

Written by
Yandex Cloud
Updated at November 26, 2024
  • gRPC request
  • GetBucketHTTPSConfigRequest
  • HTTPSConfig

Returns the HTTPS configuration for the specified bucket.

gRPC request

rpc GetHTTPSConfig (GetBucketHTTPSConfigRequest) returns (HTTPSConfig)

GetBucketHTTPSConfigRequest

{
  "name": "string"
}

Field

Description

name

string

Required field. Name of the bucket to return the HTTPS configuration for.

HTTPSConfig

{
  "name": "string",
  "source_type": "SourceType",
  "issuer": "google.protobuf.StringValue",
  "subject": "google.protobuf.StringValue",
  "dns_names": [
    "string"
  ],
  "not_before": "google.protobuf.Timestamp",
  "not_after": "google.protobuf.Timestamp",
  "certificate_id": "string"
}

A resource for HTTPS configuration of a bucket.

Field

Description

name

string

Name of the bucket.

source_type

enum SourceType

Type of TLS certificate source.

  • SOURCE_TYPE_UNSPECIFIED
  • SOURCE_TYPE_SELF_MANAGED: Your certificate, uploaded directly.
  • SOURCE_TYPE_MANAGED_BY_CERTIFICATE_MANAGER: Certificate managed by Certificate Manager.

issuer

google.protobuf.StringValue

Issuer of the TLS certificate.

subject

google.protobuf.StringValue

Subject of the TLS certificate.

dns_names[]

string

List of DNS names of the TLS certificate (Subject Alternative Name field).

not_before

google.protobuf.Timestamp

Start of the TLS certificate validity period (Not Before field).

not_after

google.protobuf.Timestamp

End of the TLS certificate validity period (Not After field)

certificate_id

string

ID of the TLS certificate in Certificate Manager.

To get information about the certificate from Certificate Manager, make a
yandex.cloud.certificatemanager.v1.CertificateService.Get request.

Was the article helpful?

Previous
GetStats
Next
SetHTTPSConfig
© 2025 Direct Cursus Technology L.L.C.