Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 4 additions & 28 deletions raystack/frontier/v1beta1/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -280,37 +280,13 @@
// this value is never persisted in the system so if lost, can't be recovered
string token = 5 [(google.api.field_behavior) = OUTPUT_ONLY];

google.protobuf.Timestamp expires_at = 10 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "The time when the PAT expires.",
example: "\"2024-06-07T05:39:56.961Z\""
}];

google.protobuf.Timestamp last_used_at = 11 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "The time when the PAT was last used.",
example: "\"2024-06-07T05:39:56.961Z\""
},
(google.api.field_behavior) = OUTPUT_ONLY
];

google.protobuf.Timestamp created_at = 12 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "The time when the PAT was created.",
example: "\"2023-06-07T05:39:56.961Z\""
},
(google.api.field_behavior) = OUTPUT_ONLY
];

google.protobuf.Timestamp updated_at = 13 [
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description: "The time when the PAT was last updated.",
example: "\"2023-06-07T05:39:56.961Z\""
},
(google.api.field_behavior) = OUTPUT_ONLY
];
google.protobuf.Timestamp expires_at = 10;

Check failure on line 283 in raystack/frontier/v1beta1/models.proto

View workflow job for this annotation

GitHub Actions / validate

field raystack.frontier.v1beta1.PAT.expires_at: unknown extension grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field

Check failure on line 283 in raystack/frontier/v1beta1/models.proto

View workflow job for this annotation

GitHub Actions / validate

field raystack.frontier.v1beta1.PAT.expires_at: unknown extension grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field
google.protobuf.Timestamp last_used_at = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
google.protobuf.Timestamp created_at = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
google.protobuf.Timestamp updated_at = 13 [(google.api.field_behavior) = OUTPUT_ONLY];

google.protobuf.Struct metadata = 20;
}

Check failure on line 289 in raystack/frontier/v1beta1/models.proto

View workflow job for this annotation

GitHub Actions / validate

field raystack.frontier.v1beta1.PAT.last_used_at: unknown extension grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field

Check failure on line 289 in raystack/frontier/v1beta1/models.proto

View workflow job for this annotation

GitHub Actions / validate

field raystack.frontier.v1beta1.PAT.last_used_at: unknown extension grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field

// JSON Web Key as specified in RFC 7517
message JSONWebKey {
Expand All @@ -318,7 +294,7 @@
string kty = 1;

// Algorithm.
string alg = 2;

Check failure on line 297 in raystack/frontier/v1beta1/models.proto

View workflow job for this annotation

GitHub Actions / validate

field raystack.frontier.v1beta1.PAT.created_at: unknown extension grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field

Check failure on line 297 in raystack/frontier/v1beta1/models.proto

View workflow job for this annotation

GitHub Actions / validate

field raystack.frontier.v1beta1.PAT.created_at: unknown extension grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field

// Permitted uses for the public keys.
string use = 3;
Expand All @@ -326,7 +302,7 @@
// Key ID.
string kid = 4;

// Used for RSA keys.

Check failure on line 305 in raystack/frontier/v1beta1/models.proto

View workflow job for this annotation

GitHub Actions / validate

field raystack.frontier.v1beta1.PAT.updated_at: unknown extension grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field

Check failure on line 305 in raystack/frontier/v1beta1/models.proto

View workflow job for this annotation

GitHub Actions / validate

field raystack.frontier.v1beta1.PAT.updated_at: unknown extension grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field
string n = 5;

// Used for RSA keys.
Expand Down
Loading