{ "info": { "_postman_id": "c31fb507-8ec7-4bba-8cd9-19a84f2ea42e", "name": "Egeria-admin-services-platform-configuration", "description": "Requests for configuring an OMAG Server", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "_exporter_id": "28623075" }, "item": [ { "name": "Get Configuration Document Store Connection", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/stores/connection", "host": [ "{{baseURL}}" ], "path": [ "open-metadata", "admin-services", "users", "{{adminUserId}}", "stores", "connection" ] }, "description": "Query the Connection object used to create the connector to the configuration document. If the result is null it means that the server is using the default connector that stores the configuration document as a file." }, "response": [] }, { "name": "Set Configuration Document Store Connection", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"class\": \"Connection\",\n \"connectorType\": {\n \"class\": \"ConnectorType\",\n \"connectorProviderClassName\": \"org.odpi.openmetadata.adapters.adminservices.configurationstore.file.FileBasedServerConfigStoreProvider\"\n },\n \"endpoint\": {\n \"class\": \"Endpoint\",\n \"address\": \"data/servers/{0}/config/{0}.config\"\n }\n}" }, "url": { "raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/stores/connection", "host": [ "{{baseURL}}" ], "path": [ "open-metadata", "admin-services", "users", "{{adminUserId}}", "stores", "connection" ] }, "description": "Overrides the default connector that stores the configuration documents in a plain text file.\nThe request body is a Connection object that is used to create and configure the connector.\nThis call is preconfigured to switch the store to using the encrypted configuration document store." }, "response": [] }, { "name": "Delete Configuration Document Store Connection", "request": { "method": "DELETE", "header": [], "body": { "mode": "raw", "raw": "" }, "url": { "raw": "{{baseURL}}/open-metadata/admin-services/users/{{adminUserId}}/stores/connection", "host": [ "{{baseURL}}" ], "path": [ "open-metadata", "admin-services", "users", "{{adminUserId}}", "stores", "connection" ] }, "description": "Remove the currently configured Configuration Document Store Connection. The default Configuration Document Store will be used for future configuration. This stores the configuration in a file in plain text." }, "response": [] } ] }