Skip to content

Commit aa7cb93

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add Query Parameters to ListOrgConnections Endpoint (#31609)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent ea0b55f commit aa7cb93

File tree

3 files changed

+121
-0
lines changed

3 files changed

+121
-0
lines changed

data/api/v2/full_spec.yaml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65247,6 +65247,39 @@ paths:
6524765247
get:
6524865248
description: Returns a list of org connections.
6524965249
operationId: ListOrgConnections
65250+
parameters:
65251+
- description: The Org ID of the sink org.
65252+
example: 0879ce27-29a1-481f-a12e-bc2a48ec9ae1
65253+
in: query
65254+
name: sink_org_id
65255+
required: false
65256+
schema:
65257+
type: string
65258+
- description: The Org ID of the source org.
65259+
example: 0879ce27-29a1-481f-a12e-bc2a48ec9ae1
65260+
in: query
65261+
name: source_org_id
65262+
required: false
65263+
schema:
65264+
type: string
65265+
- description: The limit of number of entries you want to return. Default is
65266+
1000.
65267+
example: 1000
65268+
in: query
65269+
name: limit
65270+
required: false
65271+
schema:
65272+
format: int64
65273+
type: integer
65274+
- description: The pagination offset which you want to query from. Default is
65275+
0.
65276+
example: 0
65277+
in: query
65278+
name: offset
65279+
required: false
65280+
schema:
65281+
format: int64
65282+
type: integer
6525065283
responses:
6525165284
'200':
6525265285
content:

data/api/v2/full_spec_deref.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -535074,6 +535074,50 @@
535074535074
"get": {
535075535075
"description": "Returns a list of org connections.",
535076535076
"operationId": "ListOrgConnections",
535077+
"parameters": [
535078+
{
535079+
"description": "The Org ID of the sink org.",
535080+
"example": "0879ce27-29a1-481f-a12e-bc2a48ec9ae1",
535081+
"in": "query",
535082+
"name": "sink_org_id",
535083+
"required": false,
535084+
"schema": {
535085+
"type": "string"
535086+
}
535087+
},
535088+
{
535089+
"description": "The Org ID of the source org.",
535090+
"example": "0879ce27-29a1-481f-a12e-bc2a48ec9ae1",
535091+
"in": "query",
535092+
"name": "source_org_id",
535093+
"required": false,
535094+
"schema": {
535095+
"type": "string"
535096+
}
535097+
},
535098+
{
535099+
"description": "The limit of number of entries you want to return. Default is 1000.",
535100+
"example": 1000,
535101+
"in": "query",
535102+
"name": "limit",
535103+
"required": false,
535104+
"schema": {
535105+
"format": "int64",
535106+
"type": "integer"
535107+
}
535108+
},
535109+
{
535110+
"description": "The pagination offset which you want to query from. Default is 0.",
535111+
"example": 0,
535112+
"in": "query",
535113+
"name": "offset",
535114+
"required": false,
535115+
"schema": {
535116+
"format": "int64",
535117+
"type": "integer"
535118+
}
535119+
}
535120+
],
535077535121
"responses": {
535078535122
"200": {
535079535123
"content": {

static/resources/json/full_spec_v2.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -535074,6 +535074,50 @@
535074535074
"get": {
535075535075
"description": "Returns a list of org connections.",
535076535076
"operationId": "ListOrgConnections",
535077+
"parameters": [
535078+
{
535079+
"description": "The Org ID of the sink org.",
535080+
"example": "0879ce27-29a1-481f-a12e-bc2a48ec9ae1",
535081+
"in": "query",
535082+
"name": "sink_org_id",
535083+
"required": false,
535084+
"schema": {
535085+
"type": "string"
535086+
}
535087+
},
535088+
{
535089+
"description": "The Org ID of the source org.",
535090+
"example": "0879ce27-29a1-481f-a12e-bc2a48ec9ae1",
535091+
"in": "query",
535092+
"name": "source_org_id",
535093+
"required": false,
535094+
"schema": {
535095+
"type": "string"
535096+
}
535097+
},
535098+
{
535099+
"description": "The limit of number of entries you want to return. Default is 1000.",
535100+
"example": 1000,
535101+
"in": "query",
535102+
"name": "limit",
535103+
"required": false,
535104+
"schema": {
535105+
"format": "int64",
535106+
"type": "integer"
535107+
}
535108+
},
535109+
{
535110+
"description": "The pagination offset which you want to query from. Default is 0.",
535111+
"example": 0,
535112+
"in": "query",
535113+
"name": "offset",
535114+
"required": false,
535115+
"schema": {
535116+
"format": "int64",
535117+
"type": "integer"
535118+
}
535119+
}
535120+
],
535077535121
"responses": {
535078535122
"200": {
535079535123
"content": {

0 commit comments

Comments
 (0)