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

Deprecate the proxy (endpoint) object and move it to the network proxy profile #856

Merged
merged 3 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions dictionary.json
Original file line number Diff line number Diff line change
Expand Up @@ -2528,6 +2528,11 @@
"description": "The proxy (server) in a network connection.",
"type": "network_proxy"
},
"proxy_endpoint": {
"caption": "Proxy Endpoint",
"description": "The proxy (server) in a network connection.",
"type": "network_proxy"
},
"purl":{
"caption": "Package URL",
"description": "A purl is a URL string used to identify and locate a software package in a mostly universal and uniform way across programing languages, package managers, packaging conventions, tools, APIs and databases.",
Expand Down
4 changes: 4 additions & 0 deletions events/network/network.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
"requirement": "required"
},
"proxy": {
"@deprecated": {
"message": "Proxy has been decoupled from this object, instead use <code> proxy_endpoint </code> in the <code> Network Proxy </code> profile.",
maxhotta marked this conversation as resolved.
Show resolved Hide resolved
"since": "v1.1.0"
},
"group": "primary",
"requirement": "optional"
},
Expand Down
4 changes: 4 additions & 0 deletions profiles/network_proxy.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
"group": "context"
},
"attributes": {
"proxy_endpoint": {
"description": "The proxy (server) in a network connection.",
"requirement": "optional"
},
"proxy_connection_info": {
"description": "The connection information from the proxy server to the remote server.",
"requirement": "recommended"
Expand Down
Loading