Object Storage API, gRPC: BucketService.GetHTTPSConfig
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.
|
issuer |
Issuer of the TLS certificate. |
subject |
Subject of the TLS certificate. |
dns_names[] |
string List of DNS names of the TLS certificate (Subject Alternative Name field). |
not_before |
Start of the TLS certificate validity period (Not Before field). |
not_after |
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 |