interface SpaceResource {
    entity: {
        compute?: SpaceCompute[];
        description?: string;
        generator?: string;
        members?: SpaceMember[];
        name: string;
        scope: {
            bss_account_id: string;
        };
        settings: SpaceSettings;
        stage: SpaceStage;
        status: {
            failure?: {
                errors: ErrorResponse[];
                trace: string;
            };
            state: string;
        };
        storage?: SpaceStorage;
        tags?: string[];
        type: string;
    };
    metadata: {
        created_at: string;
        creator_id: string;
        id: string;
        updated_at: string;
        url: string;
    };
}

Properties

Properties

entity: {
    compute?: SpaceCompute[];
    description?: string;
    generator?: string;
    members?: SpaceMember[];
    name: string;
    scope: {
        bss_account_id: string;
    };
    settings: SpaceSettings;
    stage: SpaceStage;
    status: {
        failure?: {
            errors: ErrorResponse[];
            trace: string;
        };
        state: string;
    };
    storage?: SpaceStorage;
    tags?: string[];
    type: string;
}

Type declaration

  • Optional compute?: SpaceCompute[]
  • Optional description?: string
  • Optional generator?: string
  • Optional members?: SpaceMember[]
  • name: string
  • scope: {
        bss_account_id: string;
    }
    • bss_account_id: string
  • settings: SpaceSettings
  • stage: SpaceStage
  • status: {
        failure?: {
            errors: ErrorResponse[];
            trace: string;
        };
        state: string;
    }
  • Optional storage?: SpaceStorage
  • Optional tags?: string[]
  • type: string
metadata: {
    created_at: string;
    creator_id: string;
    id: string;
    updated_at: string;
    url: string;
}

Type declaration

  • created_at: string
  • creator_id: string
  • id: string
  • updated_at: string
  • url: string