Skip to content

Commit

Permalink
deploy: 60a20fe
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt committed Dec 9, 2024
1 parent 4cc9c30 commit 635046b
Show file tree
Hide file tree
Showing 2 changed files with 256 additions and 0 deletions.
128 changes: 128 additions & 0 deletions openapi/management-api/3.0.3/management-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3138,6 +3138,125 @@ paths:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
/v4alpha/contractagreements/request:
post:
tags:
- Contract Agreement v4alpha
description: Gets all contract agreements according to a particular query
operationId: queryAgreementsV4Alpha
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/QuerySpec"
responses:
"200":
description: The contract agreements matching the query
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ContractAgreement"
"400":
description: Request body was malformed
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
/v4alpha/contractagreements/{id}:
get:
tags:
- Contract Agreement v4alpha
description: Gets an contract agreement with the given ID
operationId: getAgreementByIdV4Alpha
parameters:
- name: id
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: The contract agreement
content:
application/json:
schema:
$ref: "#/components/schemas/ContractAgreement"
"400":
description: "Request was malformed, e.g. id was null"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
"404":
description: An contract agreement with the given ID does not exist
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
/v4alpha/contractagreements/{id}/negotiation:
get:
tags:
- Contract Agreement v4alpha
description: Gets a contract negotiation with the given contract agreement ID
operationId: getNegotiationByAgreementIdV4Alpha
parameters:
- name: id
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: The contract negotiation
content:
application/json:
schema:
$ref: "#/components/schemas/ContractNegotiation"
"400":
description: "Request was malformed, e.g. id was null"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
"404":
description: An contract agreement with the given ID does not exist
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
/v4alpha/protocol-versions/request:
post:
tags:
- Protocol Version v4alpha
operationId: requestProtocolVersionV4alpha
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CatalogRequest"
responses:
default:
description: Gets supported protocol versions of a single connector
content:
application/json:
schema:
$ref: "#/components/schemas/Protocol Version"
components:
schemas:
ApiErrorDetail:
Expand Down Expand Up @@ -3911,6 +4030,15 @@ components:
- error2
Properties:
type: object
Protocol Version:
type: object
description: Protocol Version
example:
protocolVersions:
- version: 2024/1
path: /2024/1
- version: v0.8
path: /
ProvisionerWebhookRequest:
type: object
properties:
Expand Down
128 changes: 128 additions & 0 deletions openapi/management-api/management-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3138,6 +3138,125 @@ paths:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
/v4alpha/contractagreements/request:
post:
tags:
- Contract Agreement v4alpha
description: Gets all contract agreements according to a particular query
operationId: queryAgreementsV4Alpha
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/QuerySpec"
responses:
"200":
description: The contract agreements matching the query
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ContractAgreement"
"400":
description: Request body was malformed
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
/v4alpha/contractagreements/{id}:
get:
tags:
- Contract Agreement v4alpha
description: Gets an contract agreement with the given ID
operationId: getAgreementByIdV4Alpha
parameters:
- name: id
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: The contract agreement
content:
application/json:
schema:
$ref: "#/components/schemas/ContractAgreement"
"400":
description: "Request was malformed, e.g. id was null"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
"404":
description: An contract agreement with the given ID does not exist
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
/v4alpha/contractagreements/{id}/negotiation:
get:
tags:
- Contract Agreement v4alpha
description: Gets a contract negotiation with the given contract agreement ID
operationId: getNegotiationByAgreementIdV4Alpha
parameters:
- name: id
in: path
required: true
style: simple
explode: false
schema:
type: string
responses:
"200":
description: The contract negotiation
content:
application/json:
schema:
$ref: "#/components/schemas/ContractNegotiation"
"400":
description: "Request was malformed, e.g. id was null"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
"404":
description: An contract agreement with the given ID does not exist
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/ApiErrorDetail"
/v4alpha/protocol-versions/request:
post:
tags:
- Protocol Version v4alpha
operationId: requestProtocolVersionV4alpha
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/CatalogRequest"
responses:
default:
description: Gets supported protocol versions of a single connector
content:
application/json:
schema:
$ref: "#/components/schemas/Protocol Version"
components:
schemas:
ApiErrorDetail:
Expand Down Expand Up @@ -3911,6 +4030,15 @@ components:
- error2
Properties:
type: object
Protocol Version:
type: object
description: Protocol Version
example:
protocolVersions:
- version: 2024/1
path: /2024/1
- version: v0.8
path: /
ProvisionerWebhookRequest:
type: object
properties:
Expand Down

0 comments on commit 635046b

Please sign in to comment.