File: //lib/mysqlsh/lib/python3.8/site-packages/oci/operator_access_control/models/operator_action.py
# coding: utf-8
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630
from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
from oci.decorators import init_model_state_from_kwargs
@init_model_state_from_kwargs
class OperatorAction(object):
"""
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
"""
#: A constant which can be used with the resource_type property of a OperatorAction.
#: This constant has a value of "EXACC"
RESOURCE_TYPE_EXACC = "EXACC"
#: A constant which can be used with the resource_type property of a OperatorAction.
#: This constant has a value of "EXADATAINFRASTRUCTURE"
RESOURCE_TYPE_EXADATAINFRASTRUCTURE = "EXADATAINFRASTRUCTURE"
#: A constant which can be used with the resource_type property of a OperatorAction.
#: This constant has a value of "AUTONOMOUSVMCLUSTER"
RESOURCE_TYPE_AUTONOMOUSVMCLUSTER = "AUTONOMOUSVMCLUSTER"
#: A constant which can be used with the resource_type property of a OperatorAction.
#: This constant has a value of "CLOUDAUTONOMOUSVMCLUSTER"
RESOURCE_TYPE_CLOUDAUTONOMOUSVMCLUSTER = "CLOUDAUTONOMOUSVMCLUSTER"
#: A constant which can be used with the resource_type property of a OperatorAction.
#: This constant has a value of "CCCINFRASTRUCTURE"
RESOURCE_TYPE_CCCINFRASTRUCTURE = "CCCINFRASTRUCTURE"
def __init__(self, **kwargs):
"""
Initializes a new OperatorAction object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param id:
The value to assign to the id property of this OperatorAction.
:type id: str
:param name:
The value to assign to the name property of this OperatorAction.
:type name: str
:param customer_display_name:
The value to assign to the customer_display_name property of this OperatorAction.
:type customer_display_name: str
:param component:
The value to assign to the component property of this OperatorAction.
:type component: str
:param resource_type:
The value to assign to the resource_type property of this OperatorAction.
Allowed values for this property are: "EXACC", "EXADATAINFRASTRUCTURE", "AUTONOMOUSVMCLUSTER", "CLOUDAUTONOMOUSVMCLUSTER", "CCCINFRASTRUCTURE", 'UNKNOWN_ENUM_VALUE'.
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
:type resource_type: str
:param description:
The value to assign to the description property of this OperatorAction.
:type description: str
:param properties:
The value to assign to the properties property of this OperatorAction.
:type properties: list[oci.operator_access_control.models.OperatorActionProperties]
"""
self.swagger_types = {
'id': 'str',
'name': 'str',
'customer_display_name': 'str',
'component': 'str',
'resource_type': 'str',
'description': 'str',
'properties': 'list[OperatorActionProperties]'
}
self.attribute_map = {
'id': 'id',
'name': 'name',
'customer_display_name': 'customerDisplayName',
'component': 'component',
'resource_type': 'resourceType',
'description': 'description',
'properties': 'properties'
}
self._id = None
self._name = None
self._customer_display_name = None
self._component = None
self._resource_type = None
self._description = None
self._properties = None
@property
def id(self):
"""
**[Required]** Gets the id of this OperatorAction.
Unique Oracle assigned identifier for the operator action.
:return: The id of this OperatorAction.
:rtype: str
"""
return self._id
@id.setter
def id(self, id):
"""
Sets the id of this OperatorAction.
Unique Oracle assigned identifier for the operator action.
:param id: The id of this OperatorAction.
:type: str
"""
self._id = id
@property
def name(self):
"""
**[Required]** Gets the name of this OperatorAction.
Unique name of the operator action.
:return: The name of this OperatorAction.
:rtype: str
"""
return self._name
@name.setter
def name(self, name):
"""
Sets the name of this OperatorAction.
Unique name of the operator action.
:param name: The name of this OperatorAction.
:type: str
"""
self._name = name
@property
def customer_display_name(self):
"""
Gets the customer_display_name of this OperatorAction.
Display Name of the operator action.
:return: The customer_display_name of this OperatorAction.
:rtype: str
"""
return self._customer_display_name
@customer_display_name.setter
def customer_display_name(self, customer_display_name):
"""
Sets the customer_display_name of this OperatorAction.
Display Name of the operator action.
:param customer_display_name: The customer_display_name of this OperatorAction.
:type: str
"""
self._customer_display_name = customer_display_name
@property
def component(self):
"""
Gets the component of this OperatorAction.
Name of the infrastructure layer associated with the operator action.
:return: The component of this OperatorAction.
:rtype: str
"""
return self._component
@component.setter
def component(self, component):
"""
Sets the component of this OperatorAction.
Name of the infrastructure layer associated with the operator action.
:param component: The component of this OperatorAction.
:type: str
"""
self._component = component
@property
def resource_type(self):
"""
Gets the resource_type of this OperatorAction.
resourceType for which the OperatorAction is applicable
Allowed values for this property are: "EXACC", "EXADATAINFRASTRUCTURE", "AUTONOMOUSVMCLUSTER", "CLOUDAUTONOMOUSVMCLUSTER", "CCCINFRASTRUCTURE", 'UNKNOWN_ENUM_VALUE'.
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
:return: The resource_type of this OperatorAction.
:rtype: str
"""
return self._resource_type
@resource_type.setter
def resource_type(self, resource_type):
"""
Sets the resource_type of this OperatorAction.
resourceType for which the OperatorAction is applicable
:param resource_type: The resource_type of this OperatorAction.
:type: str
"""
allowed_values = ["EXACC", "EXADATAINFRASTRUCTURE", "AUTONOMOUSVMCLUSTER", "CLOUDAUTONOMOUSVMCLUSTER", "CCCINFRASTRUCTURE"]
if not value_allowed_none_or_none_sentinel(resource_type, allowed_values):
resource_type = 'UNKNOWN_ENUM_VALUE'
self._resource_type = resource_type
@property
def description(self):
"""
Gets the description of this OperatorAction.
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.
:return: The description of this OperatorAction.
:rtype: str
"""
return self._description
@description.setter
def description(self, description):
"""
Sets the description of this OperatorAction.
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.
:param description: The description of this OperatorAction.
:type: str
"""
self._description = description
@property
def properties(self):
"""
Gets the properties of this OperatorAction.
Fine grained properties associated with the operator control.
:return: The properties of this OperatorAction.
:rtype: list[oci.operator_access_control.models.OperatorActionProperties]
"""
return self._properties
@properties.setter
def properties(self, properties):
"""
Sets the properties of this OperatorAction.
Fine grained properties associated with the operator control.
:param properties: The properties of this OperatorAction.
:type: list[oci.operator_access_control.models.OperatorActionProperties]
"""
self._properties = properties
def __repr__(self):
return formatted_flat_dict(self)
def __eq__(self, other):
if other is None:
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
return not self == other