Skip to content

Commit

Permalink
fix: cloudgraph id to ids (#939)
Browse files Browse the repository at this point in the history
  • Loading branch information
sibicramesh committed Sep 18, 2023
1 parent 8efa1b0 commit ca55d7a
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 35 deletions.
53 changes: 27 additions & 26 deletions cloudschedulednetworkquery.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions doc/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -14594,11 +14594,11 @@ Type: `string`

Identifier of the object.

##### `cloudGraphResultID`
##### `cloudGraphResultIDs`

Type: `string`
Type: `[]string`

The cloud graph result ID which is stored in MongoDB GridFS.
The cloud graph result IDs which is stored in MongoDB GridFS.

##### `cloudNetworkQuery`

Expand Down
9 changes: 6 additions & 3 deletions openapi3_autogen/cloudschedulednetworkquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@
"readOnly": true,
"type": "string"
},
"cloudGraphResultID": {
"description": "The cloud graph result ID which is stored in MongoDB GridFS.",
"type": "string"
"cloudGraphResultIDs": {
"description": "The cloud graph result IDs which is stored in MongoDB GridFS.",
"items": {
"type": "string"
},
"type": "array"
},
"cloudNetworkQuery": {
"$ref": "./cloudnetworkquery#/components/schemas/cloudnetworkquery"
Expand Down
6 changes: 3 additions & 3 deletions specs/cloudschedulednetworkquery.spec
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ indexes:
# Attributes
attributes:
v1:
- name: cloudGraphResultID
description: The cloud graph result ID which is stored in MongoDB GridFS.
type: string
- name: cloudGraphResultIDs
description: The cloud graph result IDs which is stored in MongoDB GridFS.
type: list
exposed: true
subtype: string

Expand Down

0 comments on commit ca55d7a

Please sign in to comment.