Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change cloudgraph result id to ids #939

Merged
merged 2 commits into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
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
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