Fields

Fields
ParameterDescription
name
String
requiredProvide a name to create the new drive.
siteId
String
requiredProvide the SiteId of the site where you want to create the new drive.
disableInheritedPermissions
Boolean
optionalWhen true, the new drive does not inherit permissions from its parent site.
siteColumns optionalSite columns to attach to the new drive. Each entry is a DriveColumn.
contentTypes
List<String>
optionalContent types to enable on the new drive.

Constructors

global CreateDriveInput(
  String name,
  String siteId
)
global CreateDriveInput(
  String name,
  String siteId,
  Boolean disableInheritedPermissions
)
global CreateDriveInput(
  String name,
  String siteId,
  Boolean disableInheritedPermissions,
  List<DriveColumn> siteColumns
)
global CreateDriveInput(
  String name,
  String siteId,
  Boolean disableInheritedPermissions,
  List<DriveColumn> siteColumns,
  List<String> contentTypes
)