Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update routing annotations for CancelResumableWriteRequest and QueryWriteStatusRequest #1992

Merged
merged 2 commits into from
Apr 21, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ public class GrpcStorageStub extends StorageStub {
private static final PathTemplate DELETE_OBJECT_0_PATH_TEMPLATE =
PathTemplate.create("{bucket=**}");
private static final PathTemplate CANCEL_RESUMABLE_WRITE_0_PATH_TEMPLATE =
PathTemplate.create("{bucket=projects/*/buckets/*}:**");
PathTemplate.create("{bucket=projects/*/buckets/*}/**");
private static final PathTemplate GET_OBJECT_0_PATH_TEMPLATE = PathTemplate.create("{bucket=**}");
private static final PathTemplate READ_OBJECT_0_PATH_TEMPLATE =
PathTemplate.create("{bucket=**}");
Expand All @@ -487,7 +487,7 @@ public class GrpcStorageStub extends StorageStub {
private static final PathTemplate START_RESUMABLE_WRITE_0_PATH_TEMPLATE =
PathTemplate.create("{bucket=**}");
private static final PathTemplate QUERY_WRITE_STATUS_0_PATH_TEMPLATE =
PathTemplate.create("{bucket=projects/*/buckets/*}:**");
PathTemplate.create("{bucket=projects/*/buckets/*}/**");
private static final PathTemplate GET_SERVICE_ACCOUNT_0_PATH_TEMPLATE =
PathTemplate.create("{project=**}");
private static final PathTemplate CREATE_HMAC_KEY_0_PATH_TEMPLATE =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "ncelResumableWriteRequest\032/.google.stora"
+ "ge.v2.CancelResumableWriteResponse\"A\212\323\344\223"
+ "\002/\022-\n\tupload_id\022 {bucket=projects/*/buck"
+ "ets/*}:**\332A\tupload_id\022\225\001\n\tGetObject\022#.go"
+ "ets/*}/**\332A\tupload_id\022\225\001\n\tGetObject\022#.go"
+ "ogle.storage.v2.GetObjectRequest\032\031.googl"
+ "e.storage.v2.Object\"H\212\323\344\223\002\027\022\025\n\006bucket\022\013{"
+ "bucket=**}\332A\rbucket,object\332A\030bucket,obje"
Expand Down Expand Up @@ -841,7 +841,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "storage.v2.QueryWriteStatusRequest\032+.goo"
+ "gle.storage.v2.QueryWriteStatusResponse\""
+ "A\212\323\344\223\002/\022-\n\tupload_id\022 {bucket=projects/*"
+ "/buckets/*}:**\332A\tupload_id\022\200\001\n\021GetServic"
+ "/buckets/*}/**\332A\tupload_id\022\200\001\n\021GetServic"
+ "eAccount\022+.google.storage.v2.GetServiceA"
+ "ccountRequest\032!.google.storage.v2.Servic"
+ "eAccount\"\033\212\323\344\223\002\013\022\t\n\007project\332A\007project\022\225\001"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ service Storage {
option (google.api.routing) = {
routing_parameters {
field: "upload_id"
path_template: "{bucket=projects/*/buckets/*}:**"
path_template: "{bucket=projects/*/buckets/*}/**"
}
};
option (google.api.method_signature) = "upload_id";
Expand Down Expand Up @@ -391,7 +391,7 @@ service Storage {
option (google.api.routing) = {
routing_parameters {
field: "upload_id"
path_template: "{bucket=projects/*/buckets/*}:**"
path_template: "{bucket=projects/*/buckets/*}/**"
}
};
option (google.api.method_signature) = "upload_id";
Expand Down