import { APIResource } from "../../../resource.js"; import * as Core from "../../../core.js"; import { SinglePage, V4PagePaginationArray, type V4PagePaginationArrayParams } from "../../../pagination.js"; export declare class Members extends APIResource { /** * Add members to a User Group. * * @example * ```ts * const member = await client.iam.userGroups.members.create( * '023e105f4ecef8ad9ca31a8372d0c353', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * body: [{ id: '023e105f4ecef8ad9ca31a8372d0c353' }], * }, * ); * ``` */ create(userGroupId: string, params: MemberCreateParams, options?: Core.RequestOptions): Core.APIPromise; /** * Replace the set of members attached to a User Group. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const memberUpdateResponse of client.iam.userGroups.members.update( * '023e105f4ecef8ad9ca31a8372d0c353', * { * account_id: '023e105f4ecef8ad9ca31a8372d0c353', * body: [{ id: '023e105f4ecef8ad9ca31a8372d0c353' }], * }, * )) { * // ... * } * ``` */ update(userGroupId: string, params: MemberUpdateParams, options?: Core.RequestOptions): Core.PagePromise; /** * List all the members attached to a user group. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const memberListResponse of client.iam.userGroups.members.list( * '023e105f4ecef8ad9ca31a8372d0c353', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * )) { * // ... * } * ``` */ list(userGroupId: string, params: MemberListParams, options?: Core.RequestOptions): Core.PagePromise; /** * Remove a member from User Group * * @example * ```ts * const member = await client.iam.userGroups.members.delete( * '023e105f4ecef8ad9ca31a8372d0c353', * '023e105f4ecef8ad9ca31a8372d0c353', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * ); * ``` */ delete(userGroupId: string, memberId: string, params: MemberDeleteParams, options?: Core.RequestOptions): Core.APIPromise; } export declare class MemberUpdateResponsesSinglePage extends SinglePage { } export declare class MemberListResponsesV4PagePaginationArray extends V4PagePaginationArray { } /** * Member attached to a User Group. */ export interface MemberCreateResponse { /** * Account member identifier. */ id: string; /** * The contact email address of the user. */ email?: string; /** * The member's status in the account. */ status?: 'accepted' | 'pending'; } /** * Member attached to a User Group. */ export interface MemberUpdateResponse { /** * Account member identifier. */ id: string; /** * The contact email address of the user. */ email?: string; /** * The member's status in the account. */ status?: 'accepted' | 'pending'; } /** * Member attached to a User Group. */ export interface MemberListResponse { /** * Account member identifier. */ id: string; /** * The contact email address of the user. */ email?: string; /** * The member's status in the account. */ status?: 'accepted' | 'pending'; } /** * Member attached to a User Group. */ export interface MemberDeleteResponse { /** * Account member identifier. */ id: string; /** * The contact email address of the user. */ email?: string; /** * The member's status in the account. */ status?: 'accepted' | 'pending'; } export interface MemberCreateParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: */ body: Array; } export declare namespace MemberCreateParams { interface Body { /** * The identifier of an existing account Member. */ id: string; } } export interface MemberUpdateParams { /** * Path param: Account identifier tag. */ account_id: string; /** * Body param: Set/Replace members to a user group. */ body: Array; } export declare namespace MemberUpdateParams { interface Body { /** * The identifier of an existing account Member. */ id: string; } } export interface MemberListParams extends V4PagePaginationArrayParams { /** * Path param: Account identifier tag. */ account_id: string; } export interface MemberDeleteParams { /** * Account identifier tag. */ account_id: string; } export declare namespace Members { export { type MemberCreateResponse as MemberCreateResponse, type MemberUpdateResponse as MemberUpdateResponse, type MemberListResponse as MemberListResponse, type MemberDeleteResponse as MemberDeleteResponse, MemberUpdateResponsesSinglePage as MemberUpdateResponsesSinglePage, MemberListResponsesV4PagePaginationArray as MemberListResponsesV4PagePaginationArray, type MemberCreateParams as MemberCreateParams, type MemberUpdateParams as MemberUpdateParams, type MemberListParams as MemberListParams, type MemberDeleteParams as MemberDeleteParams, }; } //# sourceMappingURL=members.d.ts.map