OpenapiO11y
Changes a service's configuration for one connected account of the given…
Changes a service's configuration for one connected account of the given provider, by account id and service id.
PUT /v1/o11y/cloud_integrations/{cloud_provider}/accounts/{id}/services/{service_id}
| Address | https://api.hanzo.ai/v1/o11y/cloud_integrations/{cloud_provider}/accounts/{id}/services/{service_id} |
| Method | PUT |
| Operation | UpdateService |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Changes a service's configuration for one connected account of the given provider, by account id and service id. Admin gate.
Request
21 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
cloud_provider | path | string | yes | |
id | path | string | yes | |
service_id | path | string | yes | |
config | body | o11y.ServiceConfig | — | |
config.aws | body | o11y.AWSServiceConfig | — | |
config.aws.logs | body | o11y.AWSServiceLogsConfig | — | |
config.aws.logs.enabled | body | boolean | — | |
config.aws.logs.s3Buckets | body | object | — | |
config.aws.logs.s3Buckets.* | body | string[] | — | |
config.aws.metrics | body | o11y.AWSServiceMetricsConfig | — | |
config.aws.metrics.enabled | body | boolean | — | |
config.azure | body | o11y.AzureServiceConfig | — | |
config.azure.logs | body | o11y.AzureServiceLogsConfig | — | |
config.azure.logs.enabled | body | boolean | — | |
config.azure.metrics | body | o11y.AzureServiceMetricsConfig | — | |
config.azure.metrics.enabled | body | boolean | — | |
config.gcp | body | o11y.GCPServiceConfig | — | |
config.gcp.logs | body | o11y.GCPServiceLogsConfig | — | |
config.gcp.logs.enabled | body | boolean | — | |
config.gcp.metrics | body | o11y.GCPServiceMetricsConfig | — | |
config.gcp.metrics.enabled | body | boolean | — |
Response
| Status | Body | Meaning |
|---|---|---|
204 | — | no content |
Failure carries the platform error shape — see Errors.
Examples
hanzo o11y cloud_integrations accounts services set <cloud_provider> <id> <service_id>import { Configuration, O11yApi } from 'hanzoai';
const api = new O11yApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.updateService({ cloud_provider: 'cloud_provider', id: 'id', service_id: 'service_id', config: {"aws":{"logs":{"enabled":false,"s3Buckets":{}},"metrics":{"enabled":false}},"azure":{"logs":{"enabled":false},"metrics":{"enabled":false}},"gcp":{"logs":{"enabled":false},"metrics":{"enabled":false}}} });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import O11yApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = O11yApi(client).update_service(cloud_provider='cloud_provider', id='id', service_id='service_id', config={"aws":{"logs":{"enabled":false,"s3Buckets":{}},"metrics":{"enabled":false}},"azure":{"logs":{"enabled":false},"metrics":{"enabled":false}},"gcp":{"logs":{"enabled":false},"metrics":{"enabled":false}}})cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.O11yAPI.UpdateService(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, o11y_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = o11y_api::update_service(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.O11yApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new O11yApi(client).updateService();curl -X PUT https://api.hanzo.ai/v1/o11y/cloud_integrations/<cloud_provider>/accounts/<id>/services/<service_id> \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"config": {
"aws": {
"logs": {
"enabled": false,
"s3Buckets": {}
},
"metrics": {
"enabled": false
}
},
"azure": {
"logs": {
"enabled": false
},
"metrics": {
"enabled": false
}
},
"gcp": {
"logs": {
"enabled": false
},
"metrics": {
"enabled": false
}
}
}
}'Tool o11y, op UpdateService — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "o11y",
"arguments": {
"op": "UpdateService",
"input": {
"cloud_provider": "<cloud_provider>",
"id": "<id>",
"service_id": "<service_id>",
"config": {
"aws": {
"logs": {
"enabled": false,
"s3Buckets": {}
},
"metrics": {
"enabled": false
}
},
"azure": {
"logs": {
"enabled": false
},
"metrics": {
"enabled": false
}
},
"gcp": {
"logs": {
"enabled": false
},
"metrics": {
"enabled": false
}
}
}
}
}
}
}'How is this guide?