### Querying Documentation Example Source: https://docs.ionos.com/cloud/observability/monitoring-service/overview/metric-formats Example of how to query documentation dynamically using an HTTP GET request with the 'ask' query parameter. ```http GET https://docs.ionos.com/cloud/observability/monitoring-service/overview/metric-formats.md?ask= ``` -------------------------------- ### Query Documentation Example Source: https://docs.ionos.com/cloud/set-up-ionos-cloud/management/identity-access-management/iam-federation/api-how-tos/create-identity-provider This example demonstrates how to query the documentation dynamically using an HTTP GET request with the `ask` query parameter. This is useful for retrieving specific information not immediately visible on the page. ```bash GET https://docs.ionos.com/cloud/set-up-ionos-cloud/management/identity-access-management/iam-federation/api-how-tos/create-identity-provider.md?ask= ``` -------------------------------- ### Example of `curl-pipe-bash` installation Source: https://docs.ionos.com/cloud/containers/private-container-registry/faqs This is an example of a potentially unsafe installation method that should be avoided. Reviewing the script at the first build is possible, but subsequent modifications by malicious actors can compromise the container build. ```bash curl https://source-reposotory.tld/install.sh | bash ``` -------------------------------- ### Query Documentation API Example Source: https://docs.ionos.com/cloud/network-services/vpn-gateway/api-how-tos/create-ipsec-gateways This example demonstrates how to query the documentation dynamically using an HTTP GET request with the `ask` query parameter. This is useful for retrieving specific information not explicitly present on the page. ```http GET https://docs.ionos.com/cloud/network-services/vpn-gateway/api-how-tos/create-ipsec-gateways.md?ask= ``` -------------------------------- ### Query Documentation via HTTP GET Request Source: https://docs.ionos.com/cloud/backup-and-storage/backup-service/how-tos/install-acronis-backup-agent Use this example to query the documentation dynamically by sending an HTTP GET request to the page URL with an 'ask' query parameter. ```http GET https://docs.ionos.com/cloud/backup-and-storage/backup-service/how-tos/install-acronis-backup-agent.md?ask= ``` -------------------------------- ### Example Tunnelblick Installation File Name Source: https://docs.ionos.com/cloud/private-cloud/ionos-private-cloud/getting-started/install-and-configure-openvpn/install-and-configure-tunnelblick-macos This is an example of the expected file name format for the Tunnelblick installation package. ```text Tunnelblick_3.8.1_build_5400.dmg ``` -------------------------------- ### Query Documentation with GET Request Source: https://docs.ionos.com/cloud/ai/ai-model-hub/models/embedding-models/bge-m3 Example of how to query the documentation dynamically by appending an 'ask' parameter to the GET request URL. ```http GET https://docs.ionos.com/cloud/ai/ai-model-hub/models/embedding-models/bge-m3.md?ask= ``` -------------------------------- ### Dynamic Documentation Query Example Source: https://docs.ionos.com/cloud/databases/postgresql/overview/activate-extensions Use this GET request format to ask specific questions about the documentation. The `ask` parameter should contain a clear, self-contained question. ```http GET https://docs.ionos.com/cloud/databases/postgresql/overview/activate-extensions.md?ask= ``` -------------------------------- ### API Query Example Source: https://docs.ionos.com/cloud/tutorials/network-services/vpn-gateway/ipsec-vdc-onprem Demonstrates how to query the documentation dynamically using an HTTP GET request with the 'ask' query parameter. This is useful for retrieving specific information or clarifications not explicitly present on the page. ```http GET https://docs.ionos.com/cloud/tutorials/network-services/vpn-gateway/ipsec-vdc-onprem.md?ask= ``` -------------------------------- ### Query Documentation API Source: https://docs.ionos.com/cloud/databases/mariadb/api-howtos/verify-mariadb-cluster-status Example of how to query the documentation dynamically using an HTTP GET request with the `ask` query parameter. ```http GET https://docs.ionos.com/cloud/databases/mariadb/api-howtos/verify-mariadb-cluster-status.md?ask= ``` -------------------------------- ### Dynamic Documentation Query Example Source: https://docs.ionos.com/cloud/network-services/cloud-dns/api-how-tos/create-secondary-dns-zone To get specific information not directly present, you can use the `ask` query parameter with a GET request to the documentation URL. This allows for dynamic querying of the documentation content. ```http GET https://docs.ionos.com/cloud/network-services/cloud-dns/api-how-tos/create-secondary-dns-zone.md?ask= ``` -------------------------------- ### Querying Documentation with GET Request Source: https://docs.ionos.com/cloud/network-services/cloud-dns/api-how-tos/import-dns-zone This example demonstrates how to query the documentation dynamically by appending an 'ask' parameter with your question to the page URL. This is useful for retrieving specific information not explicitly present on the page. ```http GET https://docs.ionos.com/cloud/network-services/cloud-dns/api-how-tos/import-dns-zone.md?ask= ``` -------------------------------- ### Dynamic Documentation Query Example Source: https://docs.ionos.com/cloud/security/network-security-groups/how-tos/create-rules Perform an HTTP GET request to query documentation dynamically. Append the 'ask' query parameter with your question to the current page URL. The response will contain a direct answer and relevant excerpts. ```http GET https://docs.ionos.com/cloud/security/network-security-groups/how-tos/create-rules.md?ask= ``` -------------------------------- ### Query Documentation API Source: https://docs.ionos.com/cloud/set-up-ionos-cloud/management/identity-access-management/iam-federation/api-how-tos/ensure-identity-provider Example of how to query the documentation dynamically using an HTTP GET request with the 'ask' query parameter. This is useful for retrieving information not explicitly present on the page. ```bash GET https://docs.ionos.com/cloud/set-up-ionos-cloud/management/identity-access-management/iam-federation/api-how-tos/ensure-identity-provider.md?ask= ``` -------------------------------- ### Install Unzip Utility on Ubuntu Source: https://docs.ionos.com/cloud/private-cloud/ionos-private-cloud/getting-started/install-and-configure-openvpn/installing-and-configuring-openvpn-ubuntu Before configuring OpenVPN, ensure the 'unzip' utility is installed on your Ubuntu system. This command installs it if it's not already present. ```bash root@localhost ~# apt-get install unzip ``` -------------------------------- ### PostgreSQL v2 API Workflows: Get Started Source: https://docs.ionos.com/cloud/databases Guides you through the initial steps of using the PostgreSQL v2 API. ```APIDOC ## Get Started with PostgreSQL v2 API ### Description This workflow outlines the essential steps to begin using the PostgreSQL v2 API, including authentication and basic cluster operations. ### Method GET ### Endpoint `/postgresql/v2/workflows/get-started` ### Response #### Success Response (200) - **steps** (array) - A list of steps to get started. - **stepNumber** (integer) - The sequence number of the step. - **description** (string) - Description of the action to perform. - **example** (object) - Example API call for the step. #### Response Example ```json { "steps": [ { "stepNumber": 1, "description": "Authenticate with the API.", "example": { "method": "POST", "endpoint": "/auth/token", "requestBody": {"username": "your_username", "password": "your_password"} } }, { "stepNumber": 2, "description": "List available PostgreSQL clusters.", "example": { "method": "GET", "endpoint": "/postgresql/clusters" } } ] } ``` ``` -------------------------------- ### Query Documentation Example Source: https://docs.ionos.com/cloud/network-services/vpn-gateway/api-how-tos/retrieve-wireguard-peer This example demonstrates how to query the documentation dynamically by appending an 'ask' parameter with your question to the page URL. This is useful for retrieving specific information not immediately apparent in the page content. ```http GET https://docs.ionos.com/cloud/network-services/vpn-gateway/api-how-tos/retrieve-wireguard-peer.md?ask= ``` -------------------------------- ### Run Acronis Agent Installer Source: https://docs.ionos.com/cloud/backup-and-storage/backup-service/how-tos/install-acronis-backup-agent Execute this command to start the interactive installation process for the Acronis Backup Agent. ```bash ./name_of_your_agent.bin ``` -------------------------------- ### Example Cost Calculation Source: https://docs.ionos.com/cloud/observability/logging-service/billing An example calculation for a scenario with 3 pipelines and 50 GB of average log storage. Actual rates must be obtained from the IONOS Cloud Prices page. ```text pipeline cost = 3 × 24 × 30 × hourly rate storage cost = 50 × monthly storage rate ``` -------------------------------- ### Agent Instructions: Querying Documentation Source: https://docs.ionos.com/cloud/databases/mongodb/api/v1-api/connect-from-kubernetes This section explains how to dynamically query the documentation using an HTTP GET request with the `ask` query parameter. This is useful for retrieving specific information not explicitly present on the page. ```http GET https://docs.ionos.com/cloud/databases/mongodb/api/v1-api/connect-from-kubernetes.md?ask= ``` -------------------------------- ### Dynamic Documentation Query Example Source: https://docs.ionos.com/cloud/databases/postgresql/overview/backup-recovery-and-migration To get additional information not explicitly present on a page, perform an HTTP GET request to the page URL with an 'ask' query parameter. The question should be specific and in natural language. ```http GET https://docs.ionos.com/cloud/databases/postgresql/overview/backup-recovery-and-migration.md?ask= ``` -------------------------------- ### Query Documentation Dynamically Source: https://docs.ionos.com/cloud/backup-and-storage/ionos-object-storage/s3-tools/awscli/awscli-static-website-hosting Demonstrates how to query the documentation for additional information using an HTTP GET request with the 'ask' query parameter. ```http GET https://docs.ionos.com/cloud/backup-and-storage/ionos-object-storage/s3-tools/awscli/awscli-static-website-hosting.md?ask= ``` -------------------------------- ### Download Acronis Backup Agent Installer using wget Source: https://docs.ionos.com/cloud/backup-and-storage/backup-service/how-tos/install-acronis-backup-agent Use this command to download the Acronis Backup Agent installer on your target Linux machine. Replace the example URL with the actual download URL obtained from the Acronis Backup Service Console. ```bash wget https://backup.profitbricks.com/download/u/baas/x.0//name_of_your_agent.bin ``` -------------------------------- ### Dynamic Documentation Query Example Source: https://docs.ionos.com/cloud/databases/mariadb/overview/user-privileges Use this method to retrieve specific information not explicitly present on the page, to ask for clarification, or to get related documentation sections. ```http GET https://docs.ionos.com/cloud/databases/mariadb/overview/user-privileges.md?ask= ``` -------------------------------- ### Query Documentation via GET Request Source: https://docs.ionos.com/cloud/backup-and-storage/images-snapshots/public-images/microsoft-sql-server-images/how-tos Use this GET request to query the documentation dynamically. Include your question in the `ask` query parameter. The response will provide a direct answer with relevant excerpts and sources. ```http GET https://docs.ionos.com/cloud/backup-and-storage/images-snapshots/public-images/microsoft-sql-server-images/how-tos.md?ask= ``` -------------------------------- ### Verify IPSec Tunnel Status Source: https://docs.ionos.com/cloud/tutorials/network-services/vpn-gateway/ipsec-vdc-onprem Checks the status of the established IPSec Security Associations (SAs) and the tunnel connection. Look for 'ESTABLISHED' and 'INSTALLED' states to confirm successful setup. ```bash root@users-vpn-gw# ipsec status Security Associations (1 up, 0 connecting): d44-5c8-48-87-28f9[2]: ESTABLISHED 3 minutes ago, 203.0.113.20[203.0.113.20]...203.0.113.10[203.0.113.10] d44-5c8-48-87-28f9{2}: INSTALLED, TUNNEL, reqid 1, ESP SPIs: c8f59a5e_i caa486ae_o d44-5c8-48-87-28f9{2}: 192.168.2.0/24 === 192.168.1.0/24 ``` -------------------------------- ### Query Documentation via API Source: https://docs.ionos.com/cloud/private-cloud/ionos-private-cloud/getting-started/install-and-configure-openvpn/installing-and-configuring-openvpn-centos-7 Demonstrates how to query the documentation dynamically by making an HTTP GET request with an 'ask' query parameter. ```http GET https://docs.ionos.com/cloud/private-cloud/ionos-private-cloud/getting-started/install-and-configure-openvpn/installing-and-configuring-openvpn-centos-7.md?ask= ``` -------------------------------- ### Get Meta Data for a Document Collection (Python) Source: https://docs.ionos.com/cloud/ai/ai-model-hub/how-tos/document-collections Use this Python snippet to retrieve meta information for a specific document collection. Replace '[ YOUR COLLECTION ID HERE ]' with the actual collection ID. Ensure the 'requests' library is installed. ```Python # Python example to extract meta information import requests COLLECTION_ID = [ YOUR COLLECTION ID HERE ] endpoint = f"https://inference.de-txl.ionos.com/collections/{COLLECTION_ID}" result = requests.get(endpoint, headers=header) result.status_code ``` -------------------------------- ### Install OpenVPN Client on CentOS 7 Source: https://docs.ionos.com/cloud/private-cloud/ionos-private-cloud/getting-started/install-and-configure-openvpn/installing-and-configuring-openvpn-centos-7 Installs the OpenVPN client software after the EPEL repository has been enabled. ```bash [root@localhost ~]# yum install openvpn ``` -------------------------------- ### List Files in OpenVPN Directory Source: https://docs.ionos.com/cloud/private-cloud/ionos-private-cloud/getting-started/install-and-configure-openvpn/installing-and-configuring-openvpn-ubuntu Verify that the OpenVPN configuration file has been successfully copied to the /etc/openvpn/ directory. ```bash root@localhost:~# etc/openvpn/ ls ``` -------------------------------- ### Vision Model Example with Base64 Image Source: https://docs.ionos.com/cloud/ai/ai-model-hub/models/llms/mistral-small-24b Provide this snippet to send a base64 encoded image to the Mistral Small 24B model. The 'url' field should be a data URI starting with 'data:image/jpeg;base64,...' or similar. ```json { "model": "mistralai/Mistral-Small-24B-Instruct", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "What's in this image?" }, { "type": "image_url", "image_url": { "url": "data:image/vnd.microsoft.icon;base64,AAABAAcAEBAQAAEABAAoAQAAdgAAABgYEAABAAQA6AEAAJ4BAAAgIBAAAQAEAOgCAACGAwAAMDAQAAEABADoFgAAJiUAACgAAAAQAAAAIAAAAAEAB...AAAAAAAAAAAAAAAAAAAAAA=" } } ] } ], "temperature": 0.7, "max_tokens": 1000 } ``` -------------------------------- ### Query documentation via HTTP GET Source: https://docs.ionos.com/cloud/backup-and-storage/ionos-object-storage/s3-tools/rclone Demonstrates how to query the documentation dynamically by appending an 'ask' query parameter to the page URL. ```http GET https://docs.ionos.com/cloud/backup-and-storage/s3-tools/rclone.md?ask= ```