Class DeleteOptions
Options for deleting project policy statements
Inherited Members
Namespace: Unity.Services.Apis.Admin.AccessPolicy
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "DeleteOptions")]
[Preserve]
public class DeleteOptions
Constructors
DeleteOptions(List<string>)
Initializes a new instance of the DeleteOptions class.
Declaration
[Preserve]
public DeleteOptions(List<string> statementIDs = null)
Parameters
Type | Name | Description |
---|---|---|
List<string> | statementIDs | Array of statement IDs which are to be deleted from the policy (required). |
Properties
StatementIDs
Array of statement IDs which are to be deleted from the policy
Declaration
[DataMember(Name = "statementIDs", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public List<string> StatementIDs { get; set; }
Property Value
Type | Description |
---|---|
List<string> | Array of statement IDs which are to be deleted from the policy |