Skip to main content

ListUILinks

Retrieves a list of links to web interfaces being proxied by Data Proc UI Proxy.

import { cloudApi, serviceClients, Session } from "@yandex-cloud/nodejs-sdk";

const ListUILinksRequest = cloudApi.dataproc.cluster_service.ListUILinksRequest;

(async () => {
const authToken = process.env["YC_OAUTH_TOKEN"];
const session = new Session({ oauthToken: authToken });
const client = session.client(serviceClients.ClusterServiceClient);

const result = await client.listUiLinks(
ListUILinksRequest.fromPartial({
// clusterId: "clusterId"
})
);
console.log(result);
})();

ListUILinksRequest

clusterId : string

Required. ID of the Hadoop cluster.

ListUILinksResponse

Requested list of ui links.

name : string
url : string