cloudflare
Version:
The official TypeScript library for the Cloudflare API
406 lines (344 loc) • 9.57 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 * as DownloadsAPI from './downloads';
import { DownloadGetParams, DownloadGetResponse, Downloads } from './downloads';
import * as PermissionsAPI from './permissions';
import {
PermissionCreateParams,
PermissionCreateResponse,
PermissionDeleteParams,
PermissionDeleteResponse,
PermissionListParams,
PermissionListResponse,
Permissions,
} from './permissions';
import * as SnapshotsAPI from './snapshots';
import { SnapshotUpdateParams, SnapshotUpdateResponse, Snapshots } from './snapshots';
import { SinglePage } from '../../../pagination';
export class IndicatorFeeds extends APIResource {
snapshots: SnapshotsAPI.Snapshots = new SnapshotsAPI.Snapshots(this._client);
permissions: PermissionsAPI.Permissions = new PermissionsAPI.Permissions(this._client);
downloads: DownloadsAPI.Downloads = new DownloadsAPI.Downloads(this._client);
/**
* Create new indicator feed
*/
create(
params: IndicatorFeedCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<IndicatorFeedCreateResponse> {
const { account_id, ...body } = params;
return (
this._client.post(`/accounts/${account_id}/intel/indicator-feeds`, {
body,
...options,
}) as Core.APIPromise<{ result: IndicatorFeedCreateResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Update indicator feed metadata
*/
update(
feedId: number,
params: IndicatorFeedUpdateParams,
options?: Core.RequestOptions,
): Core.APIPromise<IndicatorFeedUpdateResponse> {
const { account_id, ...body } = params;
return (
this._client.put(`/accounts/${account_id}/intel/indicator-feeds/${feedId}`, {
body,
...options,
}) as Core.APIPromise<{ result: IndicatorFeedUpdateResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Get indicator feeds owned by this account
*/
list(
params: IndicatorFeedListParams,
options?: Core.RequestOptions,
): Core.PagePromise<IndicatorFeedListResponsesSinglePage, IndicatorFeedListResponse> {
const { account_id } = params;
return this._client.getAPIList(
`/accounts/${account_id}/intel/indicator-feeds`,
IndicatorFeedListResponsesSinglePage,
options,
);
}
/**
* Get indicator feed data
*/
data(
feedId: number,
params: IndicatorFeedDataParams,
options?: Core.RequestOptions,
): Core.APIPromise<string> {
const { account_id } = params;
return this._client.get(`/accounts/${account_id}/intel/indicator-feeds/${feedId}/data`, {
...options,
headers: { Accept: 'text/csv', ...options?.headers },
});
}
/**
* Get indicator feed metadata
*/
get(
feedId: number,
params: IndicatorFeedGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<IndicatorFeedGetResponse> {
const { account_id } = params;
return (
this._client.get(
`/accounts/${account_id}/intel/indicator-feeds/${feedId}`,
options,
) as Core.APIPromise<{ result: IndicatorFeedGetResponse }>
)._thenUnwrap((obj) => obj.result);
}
}
export class IndicatorFeedListResponsesSinglePage extends SinglePage<IndicatorFeedListResponse> {}
export interface IndicatorFeedCreateResponse {
/**
* The unique identifier for the indicator feed
*/
id?: number;
/**
* The date and time when the data entry was created
*/
created_on?: string;
/**
* The description of the example test
*/
description?: string;
/**
* Whether the indicator feed can be attributed to a provider
*/
is_attributable?: boolean;
/**
* Whether the indicator feed can be downloaded
*/
is_downloadable?: boolean;
/**
* Whether the indicator feed is exposed to customers
*/
is_public?: boolean;
/**
* The date and time when the data entry was last modified
*/
modified_on?: string;
/**
* The name of the indicator feed
*/
name?: string;
}
export interface IndicatorFeedUpdateResponse {
/**
* The unique identifier for the indicator feed
*/
id?: number;
/**
* The date and time when the data entry was created
*/
created_on?: string;
/**
* The description of the example test
*/
description?: string;
/**
* Whether the indicator feed can be attributed to a provider
*/
is_attributable?: boolean;
/**
* Whether the indicator feed can be downloaded
*/
is_downloadable?: boolean;
/**
* Whether the indicator feed is exposed to customers
*/
is_public?: boolean;
/**
* The date and time when the data entry was last modified
*/
modified_on?: string;
/**
* The name of the indicator feed
*/
name?: string;
}
export interface IndicatorFeedListResponse {
/**
* The unique identifier for the indicator feed
*/
id?: number;
/**
* The date and time when the data entry was created
*/
created_on?: string;
/**
* The description of the example test
*/
description?: string;
/**
* Whether the indicator feed can be attributed to a provider
*/
is_attributable?: boolean;
/**
* Whether the indicator feed can be downloaded
*/
is_downloadable?: boolean;
/**
* Whether the indicator feed is exposed to customers
*/
is_public?: boolean;
/**
* The date and time when the data entry was last modified
*/
modified_on?: string;
/**
* The name of the indicator feed
*/
name?: string;
}
export type IndicatorFeedDataResponse = string;
export interface IndicatorFeedGetResponse {
/**
* The unique identifier for the indicator feed
*/
id?: number;
/**
* The date and time when the data entry was created
*/
created_on?: string;
/**
* The description of the example test
*/
description?: string;
/**
* Whether the indicator feed can be attributed to a provider
*/
is_attributable?: boolean;
/**
* Whether the indicator feed can be downloaded
*/
is_downloadable?: boolean;
/**
* Whether the indicator feed is exposed to customers
*/
is_public?: boolean;
/**
* Status of the latest snapshot uploaded
*/
latest_upload_status?: 'Mirroring' | 'Unifying' | 'Loading' | 'Provisioning' | 'Complete' | 'Error';
/**
* The date and time when the data entry was last modified
*/
modified_on?: string;
/**
* The name of the indicator feed
*/
name?: string;
/**
* The unique identifier for the provider
*/
provider_id?: string;
/**
* The provider of the indicator feed
*/
provider_name?: string;
}
export interface IndicatorFeedCreateParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param: The description of the example test
*/
description?: string;
/**
* Body param: The name of the indicator feed
*/
name?: string;
}
export interface IndicatorFeedUpdateParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param: The new description of the feed
*/
description?: string;
/**
* Body param: The new is_attributable value of the feed
*/
is_attributable?: boolean;
/**
* Body param: The new is_downloadable value of the feed
*/
is_downloadable?: boolean;
/**
* Body param: The new is_public value of the feed
*/
is_public?: boolean;
/**
* Body param: The new name of the feed
*/
name?: string;
}
export interface IndicatorFeedListParams {
/**
* Identifier
*/
account_id: string;
}
export interface IndicatorFeedDataParams {
/**
* Identifier
*/
account_id: string;
}
export interface IndicatorFeedGetParams {
/**
* Identifier
*/
account_id: string;
}
IndicatorFeeds.IndicatorFeedListResponsesSinglePage = IndicatorFeedListResponsesSinglePage;
IndicatorFeeds.Snapshots = Snapshots;
IndicatorFeeds.Permissions = Permissions;
IndicatorFeeds.Downloads = Downloads;
export declare namespace IndicatorFeeds {
export {
type IndicatorFeedCreateResponse as IndicatorFeedCreateResponse,
type IndicatorFeedUpdateResponse as IndicatorFeedUpdateResponse,
type IndicatorFeedListResponse as IndicatorFeedListResponse,
type IndicatorFeedDataResponse as IndicatorFeedDataResponse,
type IndicatorFeedGetResponse as IndicatorFeedGetResponse,
IndicatorFeedListResponsesSinglePage as IndicatorFeedListResponsesSinglePage,
type IndicatorFeedCreateParams as IndicatorFeedCreateParams,
type IndicatorFeedUpdateParams as IndicatorFeedUpdateParams,
type IndicatorFeedListParams as IndicatorFeedListParams,
type IndicatorFeedDataParams as IndicatorFeedDataParams,
type IndicatorFeedGetParams as IndicatorFeedGetParams,
};
export {
Snapshots as Snapshots,
type SnapshotUpdateResponse as SnapshotUpdateResponse,
type SnapshotUpdateParams as SnapshotUpdateParams,
};
export {
Permissions as Permissions,
type PermissionCreateResponse as PermissionCreateResponse,
type PermissionListResponse as PermissionListResponse,
type PermissionDeleteResponse as PermissionDeleteResponse,
type PermissionCreateParams as PermissionCreateParams,
type PermissionListParams as PermissionListParams,
type PermissionDeleteParams as PermissionDeleteParams,
};
export {
Downloads as Downloads,
type DownloadGetResponse as DownloadGetResponse,
type DownloadGetParams as DownloadGetParams,
};
}