Class PiiRequestCreateRequest
CreateNetworkPiiRequest
[DataContract]
public class PiiRequestCreateRequest
- Inheritance
-
PiiRequestCreateRequest
- Inherited Members
Properties
Datasets
The datasets related to the provided key that should be deleted. Only applies to "delete" requests. The value "all" will be expanded to all datasets applicable to this type. The datasets by applicable to each type are: mac (usage, events, traffic), email (users, loginAttempts), username (users, loginAttempts), bluetoothMac (client, connectivity), smDeviceId (device), smUserId (user)
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "datasets")]
public List<string>? Datasets { get; set; }
Property Value
The email of a network user account. Only applies to "delete" requests.
[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "email")]
public string? Email { get; set; }
Property Value
Mac
The MAC of a network client device. Applies to both "restrict processing" and "delete" requests.
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "mac")]
public string Mac { get; set; }
Property Value
SmDeviceId
The sm_device_id of a Systems Manager device. The only way to "restrict processing" or "delete" a Systems Manager device. Must include "device" in the dataset for a "delete" request to destroy the device.
[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "smDeviceId")]
public string SmDeviceId { get; set; }
Property Value
SmUserId
The sm_user_id of a Systems Manager user. The only way to "restrict processing" or "delete" a Systems Manager user. Must include "user" in the dataset for a "delete" request to destroy the user.
[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "smUserId")]
public string SmUserId { get; set; }
Property Value
Type
Gets or Sets Type
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "type")]
public PiiType Type { get; set; }
Property Value
Username
The username of a network log in. Only applies to "delete" requests.
[ApiAccess(ApiAccess.Create)]
[DataMember(Name = "username")]
public string? Username { get; set; }