blob: c6be91dbace142712c3309f3a32eb91c4895d252 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
syntax = "proto3";
package yandex.cloud.organizationmanager.v1.saml;
import "yandex/cloud/validation.proto";
import "google/protobuf/timestamp.proto";
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/organizationmanager/v1/saml;saml";
option java_package = "yandex.cloud.api.organizationmanager.v1.saml";
// A certificate.
message Certificate {
// ID of the certificate.
string id = 1 [(required) = true, (length) = "<=50"];
// ID of the federation that the certificate belongs to.
string federation_id = 2 [(required) = true, (length) = "<=50"];
// Name of the certificate.
string name = 3 [ (pattern) = "|[a-z][-a-z0-9]{1,61}[a-z0-9]"];
// Description of the certificate.
string description = 4 [(length) = "<=256"];
// Creation timestamp.
google.protobuf.Timestamp created_at = 5;
// Certificate data in PEM format.
string data = 6 [(required) = true, (length) = "<=32000"];
}
|