Skip to content

Commit 7c0dcbb

Browse files
Google APIscopybara-github
authored andcommitted
fix!: remove PatchRoutine RPC
PiperOrigin-RevId: 833363792
1 parent aeb84bb commit 7c0dcbb

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

google/cloud/bigquery/v2/routine.proto

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import "google/api/field_behavior.proto";
2222
import "google/cloud/bigquery/v2/routine_reference.proto";
2323
import "google/cloud/bigquery/v2/standard_sql.proto";
2424
import "google/protobuf/empty.proto";
25-
import "google/protobuf/field_mask.proto";
2625
import "google/protobuf/wrappers.proto";
2726

2827
option go_package = "cloud.google.com/go/bigquery/v2/apiv2/bigquerypb;bigquerypb";
@@ -61,10 +60,6 @@ service RoutineService {
6160
};
6261
}
6362

64-
// Patches information in an existing routine. The patch method does a partial
65-
// update to an existing Routine resource.
66-
rpc PatchRoutine(PatchRoutineRequest) returns (Routine) {}
67-
6863
// Deletes the routine specified by routineId from the dataset.
6964
rpc DeleteRoutine(DeleteRoutineRequest) returns (google.protobuf.Empty) {
7065
option (google.api.http) = {
@@ -522,27 +517,6 @@ message UpdateRoutineRequest {
522517
Routine routine = 4 [(google.api.field_behavior) = REQUIRED];
523518
}
524519

525-
// Describes the format for the partial update (patch) of a routine.
526-
message PatchRoutineRequest {
527-
// Required. Project ID of the routine to update
528-
string project_id = 1 [(google.api.field_behavior) = REQUIRED];
529-
530-
// Required. Dataset ID of the routine to update
531-
string dataset_id = 2 [(google.api.field_behavior) = REQUIRED];
532-
533-
// Required. Routine ID of the routine to update
534-
string routine_id = 3 [(google.api.field_behavior) = REQUIRED];
535-
536-
// Required. A routine resource which will be used to partially
537-
// update the specified routine
538-
Routine routine = 4 [(google.api.field_behavior) = REQUIRED];
539-
540-
// Only the Routine fields in the field mask are updated
541-
// by the given routine. Repeated routine fields will be fully replaced
542-
// if contained in the field mask.
543-
google.protobuf.FieldMask field_mask = 5;
544-
}
545-
546520
// Describes the format for deleting a routine.
547521
message DeleteRoutineRequest {
548522
// Required. Project ID of the routine to delete

0 commit comments

Comments
 (0)