image_versions.proto 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // Copyright 2021 Google LLC
  2. //
  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. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.orchestration.airflow.service.v1beta1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/type/date.proto";
  19. option go_package = "google.golang.org/genproto/googleapis/cloud/orchestration/airflow/service/v1beta1;service";
  20. option java_multiple_files = true;
  21. option java_package = "com.google.cloud.orchestration.airflow.service.v1beta1";
  22. // Readonly service to query available ImageVersions.
  23. service ImageVersions {
  24. option (google.api.default_host) = "composer.googleapis.com";
  25. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  26. // List ImageVersions for provided location.
  27. rpc ListImageVersions(ListImageVersionsRequest) returns (ListImageVersionsResponse) {
  28. option (google.api.http) = {
  29. get: "/v1beta1/{parent=projects/*/locations/*}/imageVersions"
  30. };
  31. option (google.api.method_signature) = "parent";
  32. }
  33. }
  34. // List ImageVersions in a project and location.
  35. message ListImageVersionsRequest {
  36. // List ImageVersions in the given project and location, in the form:
  37. // "projects/{projectId}/locations/{locationId}"
  38. string parent = 1;
  39. // The maximum number of image_versions to return.
  40. int32 page_size = 2;
  41. // The next_page_token value returned from a previous List request, if any.
  42. string page_token = 3;
  43. // Whether or not image versions from old releases should be included.
  44. bool include_past_releases = 4;
  45. }
  46. // The ImageVersions in a project and location.
  47. message ListImageVersionsResponse {
  48. // The list of supported ImageVersions in a location.
  49. repeated ImageVersion image_versions = 1;
  50. // The page token used to query for the next page if one exists.
  51. string next_page_token = 2;
  52. }
  53. // Image Version information
  54. message ImageVersion {
  55. // The string identifier of the ImageVersion, in the form:
  56. // "composer-x.y.z-airflow-a.b(.c)"
  57. string image_version_id = 1;
  58. // Whether this is the default ImageVersion used by Composer during
  59. // environment creation if no input ImageVersion is specified.
  60. bool is_default = 2;
  61. // supported python versions
  62. repeated string supported_python_versions = 3;
  63. // The date of the version release.
  64. google.type.Date release_date = 4;
  65. // Whether it is impossible to create an environment with the image version.
  66. bool creation_disabled = 5;
  67. // Whether it is impossible to upgrade an environment running with the image
  68. // version.
  69. bool upgrade_disabled = 6;
  70. }