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",
"sourceType": "SourceType",
"issuer": "google.protobuf.StringValue",
"subject": "google.protobuf.StringValue",
"dnsNames": [
"string"
],
"notBefore": "google.protobuf.Timestamp",
"notAfter": "google.protobuf.Timestamp",
"certificateId": "string"
}
A resource for HTTPS configuration of a bucket.
Field |
Description |
name |
string Name of the bucket. |
sourceType |
enum SourceType Type of TLS certificate source.
|
issuer |
Issuer of the TLS certificate. |
subject |
Subject of the TLS certificate. |
dnsNames[] |
string List of DNS names of the TLS certificate (Subject Alternative Name field). |
notBefore |
Start of the TLS certificate validity period (Not Before field). |
notAfter |
End of the TLS certificate validity period (Not After field) |
certificateId |
string ID of the TLS certificate in Certificate Manager. To get information about the certificate from Certificate Manager, make a |