UNPKG

@serve.zone/api

Version:

The `@serve.zone/api` module is a robust and versatile API client, designed to facilitate seamless communication with various cloud resources managed by the Cloudly platform. This API client extends a rich set of functionalities, offering developers a com

14 lines (13 loc) 872 B
import * as plugins from './plugins.js'; import type { CloudlyApiClient } from './classes.cloudlyapiclient.js'; export declare class SecretGroup implements plugins.servezoneInterfaces.data.ISecretGroup { cloudlyClientRef: CloudlyApiClient; id: string; data: plugins.servezoneInterfaces.data.ISecretGroup['data']; constructor(cloudlyClientRef: CloudlyApiClient); static getSecretGroupById(cloudlyClientRef: CloudlyApiClient, secretGroupIdArg: string): Promise<SecretGroup>; static getSecretGroups(cloudlyClientRef: CloudlyApiClient): Promise<SecretGroup[]>; static createSecretGroup(cloudlyClientRef: CloudlyApiClient, secretGroupDataArg: Partial<plugins.servezoneInterfaces.data.ISecretGroup['data']>): Promise<SecretGroup>; update(): Promise<this>; delete(cloudlyClientRef: CloudlyApiClient, secretGroupIdArg: string): Promise<any>; }