fix: Add missing method_signature annotations for BigTable Admin Backup RPCs
The added method_signatures reflect method flattenings in the GAPIC v1 config. PiperOrigin-RevId: 308824110
This commit is contained in:
parent
c284e4f849
commit
756b174de4
|
|
@ -236,6 +236,7 @@ service BigtableTableAdmin {
|
|||
response_type: "Backup"
|
||||
metadata_type: "CreateBackupMetadata"
|
||||
};
|
||||
option (google.api.method_signature) = "parent,backup_id,backup";
|
||||
}
|
||||
|
||||
// Gets metadata on a pending or completed Cloud Bigtable Backup.
|
||||
|
|
@ -243,6 +244,7 @@ service BigtableTableAdmin {
|
|||
option (google.api.http) = {
|
||||
get: "/v2/{name=projects/*/instances/*/clusters/*/backups/*}"
|
||||
};
|
||||
option (google.api.method_signature) = "name";
|
||||
}
|
||||
|
||||
// Updates a pending or completed Cloud Bigtable Backup.
|
||||
|
|
@ -251,6 +253,7 @@ service BigtableTableAdmin {
|
|||
patch: "/v2/{backup.name=projects/*/instances/*/clusters/*/backups/*}"
|
||||
body: "backup"
|
||||
};
|
||||
option (google.api.method_signature) = "backup,update_mask";
|
||||
}
|
||||
|
||||
// Deletes a pending or completed Cloud Bigtable backup.
|
||||
|
|
@ -258,6 +261,7 @@ service BigtableTableAdmin {
|
|||
option (google.api.http) = {
|
||||
delete: "/v2/{name=projects/*/instances/*/clusters/*/backups/*}"
|
||||
};
|
||||
option (google.api.method_signature) = "name";
|
||||
}
|
||||
|
||||
// Lists Cloud Bigtable backups. Returns both completed and pending
|
||||
|
|
@ -266,6 +270,7 @@ service BigtableTableAdmin {
|
|||
option (google.api.http) = {
|
||||
get: "/v2/{parent=projects/*/instances/*/clusters/*}/backups"
|
||||
};
|
||||
option (google.api.method_signature) = "parent";
|
||||
}
|
||||
|
||||
// Create a new table by restoring from a completed backup. The new table
|
||||
|
|
|
|||
Loading…
Reference in New Issue