// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../resource'; import * as Core from '../../../core'; import * as Shared from '../../shared'; import * as RequestsAPI from './requests'; export class PriorityResource extends APIResource { /** * Create a New Priority Intelligence Requirement */ create( accountIdentifier: string, body: PriorityCreateParams, options?: Core.RequestOptions, ): Core.APIPromise { return ( this._client.post(`/accounts/${accountIdentifier}/cloudforce-one/requests/priority/new`, { body, ...options, }) as Core.APIPromise<{ result: Priority }> )._thenUnwrap((obj) => obj.result); } /** * Update a Priority Intelligence Requirement */ update( accountIdentifier: string, priorityIdentifer: string, body: PriorityUpdateParams, options?: Core.RequestOptions, ): Core.APIPromise { return ( this._client.put( `/accounts/${accountIdentifier}/cloudforce-one/requests/priority/${priorityIdentifer}`, { body, ...options }, ) as Core.APIPromise<{ result: RequestsAPI.Item }> )._thenUnwrap((obj) => obj.result); } /** * Delete a Priority Intelligence Requirement */ delete( accountIdentifier: string, priorityIdentifer: string, options?: Core.RequestOptions, ): Core.APIPromise { return this._client.delete( `/accounts/${accountIdentifier}/cloudforce-one/requests/priority/${priorityIdentifer}`, options, ); } /** * Get a Priority Intelligence Requirement */ get( accountIdentifier: string, priorityIdentifer: string, options?: Core.RequestOptions, ): Core.APIPromise { return ( this._client.get( `/accounts/${accountIdentifier}/cloudforce-one/requests/priority/${priorityIdentifer}`, options, ) as Core.APIPromise<{ result: RequestsAPI.Item }> )._thenUnwrap((obj) => obj.result); } /** * Get Priority Intelligence Requirement Quota */ quota(accountIdentifier: string, options?: Core.RequestOptions): Core.APIPromise { return ( this._client.get( `/accounts/${accountIdentifier}/cloudforce-one/requests/priority/quota`, options, ) as Core.APIPromise<{ result: RequestsAPI.Quota }> )._thenUnwrap((obj) => obj.result); } } export type Label = string; export type LabelParam = string; export interface Priority { /** * UUID */ id: string; /** * Priority creation time */ created: string; /** * List of labels */ labels: Array