Skip to content
Open
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
63 changes: 63 additions & 0 deletions docs/.sphinx/_static/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,31 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/Status'
/v1beta1/operations:batchGet:
post:
tags:
- OperationService
description: BatchGetOperations retrieves a list of operations based on their name.
operationId: OperationService_BatchGetOperations
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/BatchGetOperationsRequest'
required: true
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/BatchGetOperationsResponse'
default:
description: Default error response
content:
application/json:
schema:
$ref: '#/components/schemas/Status'
/v1beta1/publicationTargets:
get:
tags:
Expand Down Expand Up @@ -1042,6 +1067,29 @@ components:
$ref: '#/components/schemas/Mirror'
description: Mirrors requested.
description: BatchGetMirrorsResponse is the response message for BatchGetMirrors
BatchGetOperationsRequest:
required:
- names
type: object
properties:
names:
type: array
items:
type: string
description: |-
The names of the operations to retrieve.
A maximum of 100 operations can be retrieved in a batch.
Format: operations/{operation}
description: BatchGetOperationsRequest is the request message for BatchGetOperations.
BatchGetOperationsResponse:
type: object
properties:
operations:
type: array
items:
$ref: '#/components/schemas/Operation'
description: Operations requested.
description: BatchGetOperationsResponse is the response message for BatchGetOperations.
BatchGetPublicationTargetsRequest:
required:
- names
Expand Down Expand Up @@ -1248,6 +1296,11 @@ components:
readOnly: true
type: string
description: The last associated LRO with the local
lastImportTime:
readOnly: true
type: string
description: The timestamp of the last successful package import.
format: date-time
description: Local represents a local repository configuration.
Mirror:
required:
Expand Down Expand Up @@ -1327,6 +1380,16 @@ components:
readOnly: true
type: string
description: The last associated LRO with the mirror
mirrorType:
enum:
- MIRROR_TYPE_UNSPECIFIED
- UBUNTU_ARCHIVE
- UBUNTU_SNAPSHOTS
- UBUNTU_PRO
- THIRD_PARTY
type: string
description: The type of upstream repository being mirrored.
format: enum
description: Mirror represents a repository mirror configuration and status.
Operation:
type: object
Expand Down
Loading