assign_physical_host_fileset

Assign a Fileset to a Linux, Unix or Windows machine. If you have multiple Filesets with identical names, you will need to populate the Filesets properties (i.e this functions keyword arguments) to find a specific match. Filesets with identical names and properties are not supported.

def assign_physical_host_fileset(hostname, fileset_name, operating_system, sla_name, include=None, exclude=None, exclude_exception=None, follow_network_shares=False, backup_hidden_folders=False, timeout=30)

Arguments

Keyword Arguments

Returns

Example

import rubrik_cdm

rubrik = rubrik_cdm.Connect()

hostname = "python-sdk-demo"
fileset_name = "Python SDK"
operating_system = 'Linux'
sla = 'Gold'

assign_fileset = rubrik.assign_physical_host_fileset(hostname, fileset_name, operating_system, sla)

Last updated