ListComplianceDocTemplates: Retrieve information about all compliance doc templates.

View source: R/ComplianceDocumentation.R

ListComplianceDocTemplatesR Documentation

Retrieve information about all compliance doc templates.

Description

Retrieve information about all compliance doc templates.

Usage

ListComplianceDocTemplates(namePart = NULL, limit = NULL, offset = NULL)

Arguments

namePart

character. Return only compliance doc templates that have a name that contains this string.

limit

integer. Return only this many compliance doc templates.

offset

integer. Skip this many compliance doc templates before returning.

Value

list of available compliance doc templates. Contains:

  • name character. The name of the compliance doc template.

  • creatorUsername character. The name of the user who created the compliance doc template.

  • orgId character. The ID of the organization of the creator user.

  • creatorId character. The ID of the creator user.

  • sections list. The list of sections that define the template.

  • id character. The ID of the template.

Examples

## Not run: 
 # Get all compliance doc templates
 ListComplianceDocTemplates()
 Get the first three compliance doc templates with names that contain "foo".
 ListComplianceDocTemplates(namePart = "foo", limit = 3)

## End(Not run)

datarobot documentation built on Nov. 3, 2023, 1:07 a.m.