cloudflare
Version:
The official TypeScript library for the Cloudflare API
139 lines (119 loc) • 3.4 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../resource';
import * as Core from '../../../core';
import { SinglePage } from '../../../pagination';
export class Delegations extends APIResource {
/**
* Create a new account delegation for a given IP prefix.
*/
create(
prefixId: string,
params: DelegationCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<Delegations> {
const { account_id, ...body } = params;
return (
this._client.post(`/accounts/${account_id}/addressing/prefixes/${prefixId}/delegations`, {
body,
...options,
}) as Core.APIPromise<{ result: Delegations }>
)._thenUnwrap((obj) => obj.result);
}
/**
* List all delegations for a given account IP prefix.
*/
list(
prefixId: string,
params: DelegationListParams,
options?: Core.RequestOptions,
): Core.PagePromise<DelegationsSinglePage, Delegations> {
const { account_id } = params;
return this._client.getAPIList(
`/accounts/${account_id}/addressing/prefixes/${prefixId}/delegations`,
DelegationsSinglePage,
options,
);
}
/**
* Delete an account delegation for a given IP prefix.
*/
delete(
prefixId: string,
delegationId: string,
params: DelegationDeleteParams,
options?: Core.RequestOptions,
): Core.APIPromise<DelegationDeleteResponse> {
const { account_id } = params;
return (
this._client.delete(
`/accounts/${account_id}/addressing/prefixes/${prefixId}/delegations/${delegationId}`,
options,
) as Core.APIPromise<{ result: DelegationDeleteResponse }>
)._thenUnwrap((obj) => obj.result);
}
}
export class DelegationsSinglePage extends SinglePage<Delegations> {}
export interface Delegations {
/**
* Identifier of a Delegation.
*/
id?: string;
/**
* IP Prefix in Classless Inter-Domain Routing format.
*/
cidr?: string;
created_at?: string;
/**
* Account identifier for the account to which prefix is being delegated.
*/
delegated_account_id?: string;
modified_at?: string;
/**
* Identifier of an IP Prefix.
*/
parent_prefix_id?: string;
}
export interface DelegationDeleteResponse {
/**
* Identifier of a Delegation.
*/
id?: string;
}
export interface DelegationCreateParams {
/**
* Path param: Identifier of a Cloudflare account.
*/
account_id: string;
/**
* Body param: IP Prefix in Classless Inter-Domain Routing format.
*/
cidr: string;
/**
* Body param: Account identifier for the account to which prefix is being
* delegated.
*/
delegated_account_id: string;
}
export interface DelegationListParams {
/**
* Identifier of a Cloudflare account.
*/
account_id: string;
}
export interface DelegationDeleteParams {
/**
* Identifier of a Cloudflare account.
*/
account_id: string;
}
Delegations.DelegationsSinglePage = DelegationsSinglePage;
export declare namespace Delegations {
export {
type Delegations as Delegations,
type DelegationDeleteResponse as DelegationDeleteResponse,
DelegationsSinglePage as DelegationsSinglePage,
type DelegationCreateParams as DelegationCreateParams,
type DelegationListParams as DelegationListParams,
type DelegationDeleteParams as DelegationDeleteParams,
};
}