Type Alias ListResourceData

ListResourceData: {
    page?: number;
    perPage?: number;
    resourceType?: string;
    resourceTypeExclude?: string;
    workspace: string;
}

Type declaration

  • Optionalpage?: number

    which page to return (start at 1, default 1)

  • OptionalperPage?: number

    number of items to return for a given page (default 30, max 100)

  • OptionalresourceType?: string

    resource_types to list from, separated by ',',

  • OptionalresourceTypeExclude?: string

    resource_types to not list from, separated by ',',

  • workspace: string