Split into multiple markdown files

This commit is contained in:
2024-04-28 23:38:14 +02:00
parent 81e1f97a27
commit 6f311825c0
4 changed files with 83 additions and 23 deletions

17
create-qlocal.md Normal file
View File

@@ -0,0 +1,17 @@
## POST /ibmmq/rest/v1/admin/qmgr/{qmgrName}/queue
```bash
# New queue from scratch
curl --insecure --header 'Content-Type: application/json' \
-X POST --header 'Accept: application/json' \
-d '{ \
"name": "RLN.TEST.QUEUE", \
"type": "QLOCAL" \
}' \
'https://localhost:9443/ibmmq/rest/v1/admin/qmgr/QM1/queue'
# New queue like DEV.QUEUE.1
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{ \
"name": "RLN.TEST.QUEUE", \
"type": "QLOCAL" \
}' 'https://localhost:9443/ibmmq/rest/v1/admin/qmgr/QM1/queue?like=DEV.QUEUE.1'
```