@@ -22,7 +22,6 @@ import "google/api/field_behavior.proto";
2222import "google/cloud/bigquery/v2/routine_reference.proto" ;
2323import "google/cloud/bigquery/v2/standard_sql.proto" ;
2424import "google/protobuf/empty.proto" ;
25- import "google/protobuf/field_mask.proto" ;
2625import "google/protobuf/wrappers.proto" ;
2726
2827option 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.
547521message DeleteRoutineRequest {
548522 // Required. Project ID of the routine to delete
0 commit comments