Skip to content

Commit

Permalink
chore(vdp): update description for pipeline ordering (#336)
Browse files Browse the repository at this point in the history
Because

- The description for pipeline ordering is not correct.

This commit

- Updates description for pipeline ordering.

---------

Co-authored-by: droplet-bot <[email protected]>
  • Loading branch information
donch1989 and droplet-bot authored May 15, 2024
1 parent 010f792 commit bb7acde
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions openapiv2/vdp/service.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ paths:
- VISIBILITY_PUBLIC
- name: order_by
description: |-
Order by field, with options for ordering by `id` or `create_time`.
Format: `order_by=id ASC` or `order_by=create_time DESC`.
Order by field, with options for ordering by `id`, `create_time` or `update_time`.
Format: `order_by=id` or `order_by=create_time desc`, default is `asc`.
in: query
required: false
type: string
Expand Down Expand Up @@ -239,8 +239,8 @@ paths:
- VISIBILITY_PUBLIC
- name: order_by
description: |-
Order by field, with options for ordering by `id` or `create_time`.
Format: `order_by=id ASC` or `order_by=create_time DESC`.
Order by field, with options for ordering by `id`, `create_time` or `update_time`.
Format: `order_by=id` or `order_by=create_time desc`, default is `asc`.
in: query
required: false
type: string
Expand Down Expand Up @@ -1198,8 +1198,8 @@ paths:
- VISIBILITY_PUBLIC
- name: order_by
description: |-
Order by field, with options for ordering by `id` or `create_time`.
Format: `order_by=id ASC` or `order_by=create_time DESC`.
Order by field, with options for ordering by `id`, `create_time` or `update_time`.
Format: `order_by=id` or `order_by=create_time desc`, default is `asc`.
in: query
required: false
type: string
Expand Down
12 changes: 6 additions & 6 deletions vdp/pipeline/v1beta/pipeline.proto
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,8 @@ message ListPipelinesRequest {
optional bool show_deleted = 5 [(google.api.field_behavior) = OPTIONAL];
// Limit results to pipelines with the specified visibility.
optional Pipeline.Visibility visibility = 6 [(google.api.field_behavior) = OPTIONAL];
// Order by field, with options for ordering by `id` or `create_time`.
// Format: `order_by=id ASC` or `order_by=create_time DESC`.
// Order by field, with options for ordering by `id`, `create_time` or `update_time`.
// Format: `order_by=id` or `order_by=create_time desc`, default is `asc`.
optional string order_by = 7 [(google.api.field_behavior) = OPTIONAL];
}

Expand Down Expand Up @@ -489,8 +489,8 @@ message ListUserPipelinesRequest {
optional bool show_deleted = 6 [(google.api.field_behavior) = OPTIONAL];
// Limit results to pipelines with the specified visibility.
optional Pipeline.Visibility visibility = 7 [(google.api.field_behavior) = OPTIONAL];
// Order by field, with options for ordering by `id` or `create_time`.
// Format: `order_by=id ASC` or `order_by=create_time DESC`.
// Order by field, with options for ordering by `id`, `create_time` or `update_time`.
// Format: `order_by=id` or `order_by=create_time desc`, default is `asc`.
optional string order_by = 8 [(google.api.field_behavior) = OPTIONAL];
}

Expand Down Expand Up @@ -959,8 +959,8 @@ message ListOrganizationPipelinesRequest {
optional bool show_deleted = 6 [(google.api.field_behavior) = OPTIONAL];
// Limit results to pipelines with the specified visibility.
optional Pipeline.Visibility visibility = 7 [(google.api.field_behavior) = OPTIONAL];
// Order by field, with options for ordering by `id` or `create_time`.
// Format: `order_by=id ASC` or `order_by=create_time DESC`.
// Order by field, with options for ordering by `id`, `create_time` or `update_time`.
// Format: `order_by=id` or `order_by=create_time desc`, default is `asc`.
optional string order_by = 8 [(google.api.field_behavior) = OPTIONAL];
}

Expand Down

0 comments on commit bb7acde

Please sign in to comment.