(connection_id: int, scope_id: str)
| 185 | |
| 186 | |
| 187 | def raw_data_params(connection_id: int, scope_id: str) -> str: |
| 188 | # JSON keys MUST follow the Go conventions (CamelCase) and be sorted |
| 189 | return json.dumps({ |
| 190 | "ConnectionId": connection_id, |
| 191 | "ScopeId": scope_id |
| 192 | }, separators=(',', ':')) |
| 193 | |
| 194 | |
| 195 | def _get_plugin_name(cls): |
no outgoing calls