render-api 1.1.2

Render client, generated from the OpenAPI spec.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(unused_imports)]
use render_api::RenderClient;
use render_api::model::*;
#[tokio::main]
async fn main() {
    let client = RenderClient::from_env();
    let custom_domain_id_or_name = "your custom domain id or name";
    let service_id = "your service id";
    let response = client
        .verify_dns_configuration(custom_domain_id_or_name, service_id)
        .await
        .unwrap();
    println!("{:#?}", response);
}