Show / Hide Table of Contents

Class OperatorAction

Details of the operator action. Operator actions are a pre-defined set of commands available to the operator on different layers of the infrastructure. Although the groupings may differ depending on the infrastructure layers, the groups are designed to enable the operator access to commands to resolve a specific set of issues. The infrastructure layers controlled by the Operator Control include Dom0, CellServer, and Control Plane Server (CPS).
There are five groups available to the operator. x-obmcs-top-level-enum: '#/definitions/OperatorActionCategories' enum: *OPERATORACTIONCATEGORIES
The following infrastructure layers are controlled by the operator actions x-obmcs-top-level-enum: '#/definitions/InfrastructureLayers' enum: *INFRASTRUCTURELAYERS

Inheritance
object
OperatorAction
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OperatoraccesscontrolService.Models
Assembly: OCI.DotNetSDK.Operatoraccesscontrol.dll
Syntax
public class OperatorAction

Properties

Component

Declaration
[JsonProperty(PropertyName = "component")]
public string Component { get; set; }
Property Value
Type Description
string

Name of the infrastructure layer associated with the operator action.

CustomerDisplayName

Declaration
[JsonProperty(PropertyName = "customerDisplayName")]
public string CustomerDisplayName { get; set; }
Property Value
Type Description
string

Display Name of the operator action.

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Description of the operator action in terms of associated risk profile, and characteristics of the operating system commands made available to the operator under this operator action.

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

Unique Oracle assigned identifier for the operator action.

Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Unique name of the operator action.

Remarks

Required

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public List<OperatorActionProperties> Properties { get; set; }
Property Value
Type Description
List<OperatorActionProperties>

Fine grained properties associated with the operator control.

ResourceType

Declaration
[JsonProperty(PropertyName = "resourceType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ResourceTypes? ResourceType { get; set; }
Property Value
Type Description
ResourceTypes?

resourceType for which the OperatorAction is applicable

In this article
Back to top