pi dmtype

These commands are related to custom Data Management (DM) definitions. Perforce IPLM has a number of native DM type integrations, but can also be expanded to work with any arbitrary DM type. Use the dmtype commands to define custom DM types.

Command overview help

> pi dmtype -h
Usage: pi dmtype [-h] SUBCOMMAND ...

Description: Commands related to DM Types. These subcommands are used to add,
edit, delete and list information about DM Types.

Optional arguments:
  -h, --help            Show this help message and exit

Available sub-commands:
  SUBCOMMAND
    add                 Create a new DM Type.
    delete (del, remove, rm)
                        Delete an existing DM Type.
    edit                Edit an existing DM Type.
    list (ls)           List all matching DM Types.

More information and documentation available at:
  https://help.perforce.com/methodics/
Copyright © 2010-2020  Perforce, Inc

DMTYPE template

[DMTYPE]
# Name is required
# Using a namespaced custom DM name is highly recommended to avoid possible future namespace collisions. 
# For example for a custom Git DM, the DM name could be "customer_name_git"name = mydm

# Short name is optional. If not provided, the name will be used.
short_name = 

# Description is optional
description = 

# Script is required
script = 

# Property set
property_set = 

# Repo path required
repo_path_required = True

Subcommands