volumes.proto 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //
  2. // Copyright 2020 Docker Compose CLI authors
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. // http://www.apache.org/licenses/LICENSE-2.0
  7. // Unless required by applicable law or agreed to in writing, software
  8. // distributed under the License is distributed on an "AS IS" BASIS,
  9. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. // See the License for the specific language governing permissions and
  11. // limitations under the License.
  12. syntax = "proto3";
  13. package com.docker.api.protos.volumes.v1;
  14. import "google/protobuf/any.proto";
  15. option go_package = "github.com/docker/compose-cli/protos/volumes/v1;v1";
  16. service Volumes {
  17. rpc VolumesCreate(VolumesCreateRequest) returns (VolumesCreateResponse);
  18. rpc VolumesList(VolumesListRequest) returns (VolumesListResponse);
  19. rpc VolumesDelete(VolumesDeleteRequest) returns (VolumesDeleteResponse);
  20. }
  21. message Volume {
  22. string id = 1;
  23. string description = 2;
  24. }
  25. message AciVolumeCreateOptions {
  26. string storage_account = 1;
  27. }
  28. message VolumesCreateRequest {
  29. string name = 1;
  30. oneof options {
  31. AciVolumeCreateOptions aci_option = 2;
  32. }
  33. }
  34. message VolumesCreateResponse {
  35. Volume volume = 1;
  36. }
  37. message VolumesListRequest {
  38. }
  39. message VolumesListResponse {
  40. repeated Volume volumes = 1;
  41. }
  42. message VolumesDeleteRequest {
  43. string id = 1;
  44. }
  45. message VolumesDeleteResponse {
  46. }