Class OperationDisplay
The object that describes the operation.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Redis.dll
Syntax
public class OperationDisplay
Constructors
OperationDisplay()
Initializes a new instance of the OperationDisplay class.
Declaration
public OperationDisplay ();
OperationDisplay(String, String, String, String)
Initializes a new instance of the OperationDisplay class.
Declaration
public OperationDisplay (string provider = null, string operation = null, string resource = null, string description = null);
Parameters
|
String
provider
Friendly name of the resource provider |
|
String
operation
Operation type: read, write, delete, listKeys/action, etc. |
|
String
resource
Resource type on which the operation is performed. |
|
String
description
Friendly name of the operation |
Properties
Description
Gets or sets friendly name of the operation
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="description")]
public string Description { get; set; }
Property Value
|
String
|
Operation
Gets or sets operation type: read, write, delete, listKeys/action, etc.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="operation")]
public string Operation { get; set; }
Property Value
|
String
|
Provider
Gets or sets friendly name of the resource provider
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="provider")]
public string Provider { get; set; }
Property Value
|
String
|
Resource
Gets or sets resource type on which the operation is performed.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="resource")]
public string Resource { get; set; }
Property Value
|
String
|