UpdateMetricExtensionDetails¶
- 
class oci.stack_monitoring.models.UpdateMetricExtensionDetails(**kwargs)¶
- Bases: - object- The information about updating a metric extension resource - Methods - __init__(**kwargs)- Initializes a new UpdateMetricExtensionDetails object with values from keyword arguments. - Attributes - collection_recurrences- Gets the collection_recurrences of this UpdateMetricExtensionDetails. - description- Gets the description of this UpdateMetricExtensionDetails. - display_name- Gets the display_name of this UpdateMetricExtensionDetails. - metric_list- Gets the metric_list of this UpdateMetricExtensionDetails. - query_properties- Gets the query_properties of this UpdateMetricExtensionDetails. - 
__init__(**kwargs)¶
- Initializes a new UpdateMetricExtensionDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - display_name (str) – The value to assign to the display_name property of this UpdateMetricExtensionDetails.
- description (str) – The value to assign to the description property of this UpdateMetricExtensionDetails.
- collection_recurrences (str) – The value to assign to the collection_recurrences property of this UpdateMetricExtensionDetails.
- metric_list (list[oci.stack_monitoring.models.Metric]) – The value to assign to the metric_list property of this UpdateMetricExtensionDetails.
- query_properties (oci.stack_monitoring.models.MetricExtensionUpdateQueryProperties) – The value to assign to the query_properties property of this UpdateMetricExtensionDetails.
 
 - 
collection_recurrences¶
- Gets the collection_recurrences of this UpdateMetricExtensionDetails. Schedule of metric extension should use RFC 5545 format -> recur-rule-part = “FREQ”;”INTERVAL” where FREQ rule part identifies the type of recurrence rule. Valid values are “MINUTELY”,”HOURLY”,”DAILY” to specify repeating events based on an interval of a minute, an hour and a day or more. Example- FREQ=DAILY;INTERVAL=1 - Returns: - The collection_recurrences of this UpdateMetricExtensionDetails. - Return type: - str 
 - 
description¶
- Gets the description of this UpdateMetricExtensionDetails. Description of the metric extension. - Returns: - The description of this UpdateMetricExtensionDetails. - Return type: - str 
 - 
display_name¶
- Gets the display_name of this UpdateMetricExtensionDetails. Metric Extension resource display name. - Returns: - The display_name of this UpdateMetricExtensionDetails. - Return type: - str 
 - 
metric_list¶
- Gets the metric_list of this UpdateMetricExtensionDetails. List of metrics which are part of this metric extension - Returns: - The metric_list of this UpdateMetricExtensionDetails. - Return type: - list[oci.stack_monitoring.models.Metric] 
 - 
query_properties¶
- Gets the query_properties of this UpdateMetricExtensionDetails. - Returns: - The query_properties of this UpdateMetricExtensionDetails. - Return type: - oci.stack_monitoring.models.MetricExtensionUpdateQueryProperties 
 
-