Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Optional description

description?: string

name

name: string

permissions

permissions: { ContentDelivery: string | string[]; ContentModel: string[]; EnvironmentAliases: string | string[]; Environments: string | string[]; Settings: string | string[]; Tags: string | string[] }

Permissions for application sections

Type declaration

  • ContentDelivery: string | string[]
  • ContentModel: string[]
  • EnvironmentAliases: string | string[]
  • Environments: string | string[]
  • Settings: string | string[]
  • Tags: string | string[]

policies

policies: { actions: ActionType[] | "all"; constraint: ConstraintType; effect: string }[]

sys

sys: BasicMetaSysProps & { space: SysLink }

Methods

delete

  • delete(): Promise<void>
  • Deletes this object on the server.

    memberof

    Role

    func

    delete

    example
    const contentful = require('contentful-management')

    const client = contentful.createClient({
    accessToken: '<content_management_api_key>'
    })

    client.getSpace('<space_id>')
    .then((space) => space.getRole('<role_id>'))
    .then((role) => role.delete())
    .then((role) => console.log(`role deleted.`))
    .catch(console.error)

    Returns Promise<void>

    Promise for the deletion. It contains no data, but the Promise error case should be handled.

toPlainObject

update

  • update(): Promise<Role>
  • Sends an update to the server with any changes made to the object's properties

    example
    const contentful = require('contentful-management')

    const client = contentful.createClient({
    accessToken: '<content_management_api_key>'
    })

    client.getSpace('<space_id>')
    .then((space) => space.getRole('<roles_id>'))
    .then((roles) => {
    roles.name = 'New role name'
    return roles.update()
    })
    .then((roles) => console.log(`roles ${roles.sys.id} updated.`))
    .catch(console.error)

    Returns Promise<Role>

    Object returned from the server with updated changes.