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
3 changes: 3 additions & 0 deletions nebius/common/v1/operation_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ option java_multiple_files = true;
option java_outer_classname = "OperationServiceProto";
option java_package = "ai.nebius.pub.common.v1";

// Service for reading operations.
service OperationService {
// Returns the current state of the specified operation.
rpc Get(GetOperationRequest) returns (Operation);

// Lists operations for the specified resource.
rpc List(ListOperationsRequest) returns (ListOperationsResponse);
}

Expand Down
1 change: 1 addition & 0 deletions nebius/common/v1alpha1/operation_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ option java_multiple_files = true;
option java_outer_classname = "OperationServiceProto";
option java_package = "ai.nebius.pub.common.v1alpha1";

// Service for reading operations.
service OperationService {
option deprecated = true;
option (service_deprecation_details) = { description: "migrate to common/v1" };
Expand Down
61 changes: 0 additions & 61 deletions nebius/mk8s/v1/condition.proto

This file was deleted.

9 changes: 0 additions & 9 deletions nebius/mk8s/v1/node_group.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import "nebius/annotations.proto";
import "nebius/common/v1/metadata.proto";
import "nebius/common/v1/resource_event.proto";
import "nebius/mk8s/v1/instance_template.proto";
import "nebius/mk8s/v1/condition.proto";

option go_package = "github.com/nebius/gosdk/proto/nebius/mk8s/v1";
option java_multiple_files = true;
Expand Down Expand Up @@ -343,14 +342,6 @@ message NodeGroupStatus {
// Both outdated and up-to-date nodes are counted.
int64 ready_node_count = 6;

repeated Condition conditions = 50 [
deprecated = true,
(field_deprecation_details) = {
effective_at: "2025-08-01",
description: "it is not implemented well, messages should be used instead"
}
];

repeated common.v1.RecurrentResourceEvent events = 61;

// Show that there are changes are in flight.
Expand Down
66 changes: 0 additions & 66 deletions nebius/mk8s/v1alpha1/condition.proto

This file was deleted.

9 changes: 0 additions & 9 deletions nebius/mk8s/v1alpha1/node_group.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import "google/protobuf/duration.proto";
import "nebius/annotations.proto";
import "nebius/common/v1/metadata.proto";
import "nebius/mk8s/v1alpha1/instance_template.proto";
import "nebius/mk8s/v1alpha1/condition.proto";

option go_package = "github.com/nebius/gosdk/proto/nebius/mk8s/v1alpha1";

Expand Down Expand Up @@ -321,14 +320,6 @@ message NodeGroupStatus {
// Both outdated and up-to-date nodes are counted.
int64 ready_node_count = 6;

repeated Condition conditions = 50 [
deprecated = true,
(field_deprecation_details) = {
effective_at: "2025-08-01",
description: "it is not implemented well, messages should be used instead"
}
];

// Show that changes are in flight
bool reconciling = 100;
}
Loading