Source: schemas/shield-information-barrier.generated.ts

  1. import * as schemas from '.';
  2. /**
  3. * Shield information barrier
  4. *
  5. * A standard representation of a
  6. * shield information barrier object
  7. */
  8. export interface ShieldInformationBarrier {
  9. /**
  10. * The unique identifier for the shield information barrier
  11. * Example: 11446498
  12. */
  13. id?: string;
  14. /**
  15. * The type of the shield information barrier
  16. * Example: shield_information_barrier
  17. */
  18. type?: 'shield_information_barrier';
  19. /**
  20. * The `type` and `id` of enterprise this barrier is under.
  21. */
  22. enterprise?: schemas.EnterpriseBase;
  23. /**
  24. * Status of the shield information barrier
  25. * Example: draft
  26. */
  27. status?: 'draft' | 'pending' | 'disabled' | 'enabled' | 'invalid';
  28. /**
  29. * ISO date time string when this
  30. * shield information barrier object was created.
  31. * Example: 2020-06-26T18:44:45.869Z
  32. */
  33. created_at?: string;
  34. /**
  35. * The user who created this shield information barrier.
  36. */
  37. created_by?: schemas.UserBase;
  38. /**
  39. * ISO date time string when this shield information barrier was updated.
  40. * Example: 2020-07-26T18:44:45.869Z
  41. */
  42. updated_at?: string;
  43. /**
  44. * The user that updated this shield information barrier.
  45. */
  46. updated_by?: schemas.UserBase;
  47. /**
  48. * ISO date time string when this shield information barrier was enabled.
  49. * Example: 2020-07-26T18:44:45.869Z
  50. */
  51. enabled_at?: string;
  52. /**
  53. * The user that enabled this shield information barrier.
  54. */
  55. enabled_by?: schemas.UserBase;
  56. }