Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 0 additions & 9 deletions nebius/ai/v1/endpoint_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ service EndpointService {
// Deletes an endpoint.
rpc Delete(DeleteEndpointRequest) returns (common.v1.Operation);

// Updates an endpoint.
rpc Update(UpdateEndpointRequest) returns (common.v1.Operation);

// Starts an endpoint.
rpc Start(StartEndpointRequest) returns (common.v1.Operation);

Expand Down Expand Up @@ -83,12 +80,6 @@ message DeleteEndpointRequest {
];
}

message UpdateEndpointRequest {
common.v1.ResourceMetadata metadata = 1 [(buf.validate.field).required = true];

EndpointSpec spec = 2 [(buf.validate.field).required = true];
}

message StartEndpointRequest {
string id = 1 [
(buf.validate.field).required = true,
Expand Down
3 changes: 3 additions & 0 deletions nebius/logging/v1/agentmanager/version_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,9 @@ message GetVersionResponse {
// Parameters for restart action.
RestartActionParams restart = 4;
}

// Feature flags for the agent. Keys are UPPER_CASE flag names, values are flag values (typically "true"/"false").
map<string, string> feature_flags = 5;
}

// Parameters when no operation is required.
Expand Down