CreateApdexRulesDetails¶
- 
class 
oci.apm_config.models.CreateApdexRulesDetails(**kwargs)¶ Bases:
oci.apm_config.models.create_config_details.CreateConfigDetailsThe set of Apdex rules to be used in Apdex computation. In the current version, only one rule set may exist per configuration, and attempting to create a rule set if it already exists results in an error.
Attributes
CONFIG_TYPE_AGENTstr(object=’’) -> str CONFIG_TYPE_APDEXstr(object=’’) -> str CONFIG_TYPE_MACS_APM_EXTENSIONstr(object=’’) -> str CONFIG_TYPE_METRIC_GROUPstr(object=’’) -> str CONFIG_TYPE_OPTIONSstr(object=’’) -> str CONFIG_TYPE_SPAN_FILTERstr(object=’’) -> str config_type[Required] Gets the config_type of this CreateConfigDetails. defined_tagsGets the defined_tags of this CreateConfigDetails. display_name[Required] Gets the display_name of this CreateApdexRulesDetails. freeform_tagsGets the freeform_tags of this CreateConfigDetails. rules[Required] Gets the rules of this CreateApdexRulesDetails. Methods
__init__(**kwargs)Initializes a new CreateApdexRulesDetails object with values from keyword arguments. get_subtype(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
CONFIG_TYPE_AGENT= 'AGENT'¶ 
- 
CONFIG_TYPE_APDEX= 'APDEX'¶ 
- 
CONFIG_TYPE_MACS_APM_EXTENSION= 'MACS_APM_EXTENSION'¶ 
- 
CONFIG_TYPE_METRIC_GROUP= 'METRIC_GROUP'¶ 
- 
CONFIG_TYPE_OPTIONS= 'OPTIONS'¶ 
- 
CONFIG_TYPE_SPAN_FILTER= 'SPAN_FILTER'¶ 
- 
__init__(**kwargs)¶ Initializes a new CreateApdexRulesDetails object with values from keyword arguments. The default value of the
config_typeattribute of this class isAPDEXand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - config_type (str) – The value to assign to the config_type property of this CreateApdexRulesDetails. Allowed values for this property are: “SPAN_FILTER”, “METRIC_GROUP”, “APDEX”, “OPTIONS”, “AGENT”, “MACS_APM_EXTENSION”
 - freeform_tags (dict(str, str)) – The value to assign to the freeform_tags property of this CreateApdexRulesDetails.
 - defined_tags (dict(str, dict(str, object))) – The value to assign to the defined_tags property of this CreateApdexRulesDetails.
 - rules (list[oci.apm_config.models.Apdex]) – The value to assign to the rules property of this CreateApdexRulesDetails.
 - display_name (str) – The value to assign to the display_name property of this CreateApdexRulesDetails.
 
- 
config_type¶ [Required] Gets the config_type of this CreateConfigDetails. The type of configuration item.
Allowed values for this property are: “SPAN_FILTER”, “METRIC_GROUP”, “APDEX”, “OPTIONS”, “AGENT”, “MACS_APM_EXTENSION”
Returns: The config_type of this CreateConfigDetails. Return type: str 
Gets the defined_tags of this CreateConfigDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {“foo-namespace”: {“bar-key”: “value”}}
Returns: The defined_tags of this CreateConfigDetails. Return type: dict(str, dict(str, object)) 
- 
display_name¶ [Required] Gets the display_name of this CreateApdexRulesDetails. The name by which a configuration entity is displayed to the end user.
Returns: The display_name of this CreateApdexRulesDetails. Return type: str 
Gets the freeform_tags of this CreateConfigDetails. Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {“bar-key”: “value”}
Returns: The freeform_tags of this CreateConfigDetails. Return type: dict(str, str) 
- 
static 
get_subtype(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
- 
rules¶ [Required] Gets the rules of this CreateApdexRulesDetails.
Returns: The rules of this CreateApdexRulesDetails. Return type: list[oci.apm_config.models.Apdex] 
-