Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 0ef4021

Browse files
committed
[client] added missing status in query fragments
1 parent 3e3a8de commit 0ef4021

File tree

4 files changed

+64
-0
lines changed

4 files changed

+64
-0
lines changed

pycti/entities/opencti_event.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ def __init__(self, opencti):
1717
spec_version
1818
created_at
1919
updated_at
20+
status {
21+
id
22+
template {
23+
id
24+
name
25+
color
26+
}
27+
}
2028
createdBy {
2129
... on Identity {
2230
id
@@ -103,6 +111,14 @@ def __init__(self, opencti):
103111
spec_version
104112
created_at
105113
updated_at
114+
status {
115+
id
116+
template {
117+
id
118+
name
119+
color
120+
}
121+
}
106122
createdBy {
107123
... on Identity {
108124
id

pycti/entities/opencti_incident.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ def __init__(self, opencti):
1818
spec_version
1919
created_at
2020
updated_at
21+
status {
22+
id
23+
template {
24+
id
25+
name
26+
color
27+
}
28+
}
2129
createdBy {
2230
... on Identity {
2331
id
@@ -107,6 +115,14 @@ def __init__(self, opencti):
107115
spec_version
108116
created_at
109117
updated_at
118+
status {
119+
id
120+
template {
121+
id
122+
name
123+
color
124+
}
125+
}
110126
createdBy {
111127
... on Identity {
112128
id

pycti/entities/opencti_language.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ def __init__(self, opencti):
1717
spec_version
1818
created_at
1919
updated_at
20+
status {
21+
id
22+
template {
23+
id
24+
name
25+
color
26+
}
27+
}
2028
createdBy {
2129
... on Identity {
2230
id
@@ -120,6 +128,14 @@ def __init__(self, opencti):
120128
spec_version
121129
created_at
122130
updated_at
131+
status {
132+
id
133+
template {
134+
id
135+
name
136+
color
137+
}
138+
}
123139
createdBy {
124140
... on Identity {
125141
id

pycti/entities/opencti_malware_analysis.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ def __init__(self, opencti):
1717
spec_version
1818
created_at
1919
updated_at
20+
status {
21+
id
22+
template {
23+
id
24+
name
25+
color
26+
}
27+
}
2028
createdBy {
2129
... on Identity {
2230
id
@@ -108,6 +116,14 @@ def __init__(self, opencti):
108116
spec_version
109117
created_at
110118
updated_at
119+
status {
120+
id
121+
template {
122+
id
123+
name
124+
color
125+
}
126+
}
111127
createdBy {
112128
... on Identity {
113129
id

0 commit comments

Comments
 (0)