File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/log_analytics/models/ingest_time_rule_summary.py
Back
# coding: utf-8 # Copyright (c) 2016, 2026, 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: 20200601 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 IngestTimeRuleSummary(object): """ Summary of an ingest time rule. """ #: A constant which can be used with the lifecycle_state property of a IngestTimeRuleSummary. #: This constant has a value of "ACTIVE" LIFECYCLE_STATE_ACTIVE = "ACTIVE" #: A constant which can be used with the lifecycle_state property of a IngestTimeRuleSummary. #: This constant has a value of "DELETED" LIFECYCLE_STATE_DELETED = "DELETED" #: A constant which can be used with the condition_kind property of a IngestTimeRuleSummary. #: This constant has a value of "FIELD" CONDITION_KIND_FIELD = "FIELD" def __init__(self, **kwargs): """ Initializes a new IngestTimeRuleSummary 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 IngestTimeRuleSummary. :type id: str :param description: The value to assign to the description property of this IngestTimeRuleSummary. :type description: str :param compartment_id: The value to assign to the compartment_id property of this IngestTimeRuleSummary. :type compartment_id: str :param time_created: The value to assign to the time_created property of this IngestTimeRuleSummary. :type time_created: datetime :param time_updated: The value to assign to the time_updated property of this IngestTimeRuleSummary. :type time_updated: datetime :param freeform_tags: The value to assign to the freeform_tags property of this IngestTimeRuleSummary. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this IngestTimeRuleSummary. :type defined_tags: dict(str, dict(str, object)) :param lifecycle_state: The value to assign to the lifecycle_state property of this IngestTimeRuleSummary. Allowed values for this property are: "ACTIVE", "DELETED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str :param display_name: The value to assign to the display_name property of this IngestTimeRuleSummary. :type display_name: str :param is_enabled: The value to assign to the is_enabled property of this IngestTimeRuleSummary. :type is_enabled: bool :param condition_kind: The value to assign to the condition_kind property of this IngestTimeRuleSummary. Allowed values for this property are: "FIELD", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type condition_kind: str :param field_name: The value to assign to the field_name property of this IngestTimeRuleSummary. :type field_name: str :param field_value: The value to assign to the field_value property of this IngestTimeRuleSummary. :type field_value: str """ self.swagger_types = { 'id': 'str', 'description': 'str', 'compartment_id': 'str', 'time_created': 'datetime', 'time_updated': 'datetime', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))', 'lifecycle_state': 'str', 'display_name': 'str', 'is_enabled': 'bool', 'condition_kind': 'str', 'field_name': 'str', 'field_value': 'str' } self.attribute_map = { 'id': 'id', 'description': 'description', 'compartment_id': 'compartmentId', 'time_created': 'timeCreated', 'time_updated': 'timeUpdated', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags', 'lifecycle_state': 'lifecycleState', 'display_name': 'displayName', 'is_enabled': 'isEnabled', 'condition_kind': 'conditionKind', 'field_name': 'fieldName', 'field_value': 'fieldValue' } self._id = None self._description = None self._compartment_id = None self._time_created = None self._time_updated = None self._freeform_tags = None self._defined_tags = None self._lifecycle_state = None self._display_name = None self._is_enabled = None self._condition_kind = None self._field_name = None self._field_value = None @property def id(self): """ **[Required]** Gets the id of this IngestTimeRuleSummary. The log analytics entity OCID. This ID is a reference used by log analytics features and it represents a resource that is provisioned and managed by the customer on their premises or on the cloud. :return: The id of this IngestTimeRuleSummary. :rtype: str """ return self._id @id.setter def id(self, id): """ Sets the id of this IngestTimeRuleSummary. The log analytics entity OCID. This ID is a reference used by log analytics features and it represents a resource that is provisioned and managed by the customer on their premises or on the cloud. :param id: The id of this IngestTimeRuleSummary. :type: str """ self._id = id @property def description(self): """ Gets the description of this IngestTimeRuleSummary. Description for this resource. :return: The description of this IngestTimeRuleSummary. :rtype: str """ return self._description @description.setter def description(self, description): """ Sets the description of this IngestTimeRuleSummary. Description for this resource. :param description: The description of this IngestTimeRuleSummary. :type: str """ self._description = description @property def compartment_id(self): """ **[Required]** Gets the compartment_id of this IngestTimeRuleSummary. Compartment Identifier `OCID]`__. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :return: The compartment_id of this IngestTimeRuleSummary. :rtype: str """ return self._compartment_id @compartment_id.setter def compartment_id(self, compartment_id): """ Sets the compartment_id of this IngestTimeRuleSummary. Compartment Identifier `OCID]`__. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param compartment_id: The compartment_id of this IngestTimeRuleSummary. :type: str """ self._compartment_id = compartment_id @property def time_created(self): """ Gets the time_created of this IngestTimeRuleSummary. The date and time the resource was created, in the format defined by RFC3339. :return: The time_created of this IngestTimeRuleSummary. :rtype: datetime """ return self._time_created @time_created.setter def time_created(self, time_created): """ Sets the time_created of this IngestTimeRuleSummary. The date and time the resource was created, in the format defined by RFC3339. :param time_created: The time_created of this IngestTimeRuleSummary. :type: datetime """ self._time_created = time_created @property def time_updated(self): """ Gets the time_updated of this IngestTimeRuleSummary. The date and time the resource was last updated, in the format defined by RFC3339. :return: The time_updated of this IngestTimeRuleSummary. :rtype: datetime """ return self._time_updated @time_updated.setter def time_updated(self, time_updated): """ Sets the time_updated of this IngestTimeRuleSummary. The date and time the resource was last updated, in the format defined by RFC3339. :param time_updated: The time_updated of this IngestTimeRuleSummary. :type: datetime """ self._time_updated = time_updated @property def freeform_tags(self): """ Gets the freeform_tags of this IngestTimeRuleSummary. Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` :return: The freeform_tags of this IngestTimeRuleSummary. :rtype: dict(str, str) """ return self._freeform_tags @freeform_tags.setter def freeform_tags(self, freeform_tags): """ Sets the freeform_tags of this IngestTimeRuleSummary. Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` :param freeform_tags: The freeform_tags of this IngestTimeRuleSummary. :type: dict(str, str) """ self._freeform_tags = freeform_tags @property def defined_tags(self): """ Gets the defined_tags of this IngestTimeRuleSummary. Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` :return: The defined_tags of this IngestTimeRuleSummary. :rtype: dict(str, dict(str, object)) """ return self._defined_tags @defined_tags.setter def defined_tags(self, defined_tags): """ Sets the defined_tags of this IngestTimeRuleSummary. Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` :param defined_tags: The defined_tags of this IngestTimeRuleSummary. :type: dict(str, dict(str, object)) """ self._defined_tags = defined_tags @property def lifecycle_state(self): """ Gets the lifecycle_state of this IngestTimeRuleSummary. The current state of the ingest time rule. Allowed values for this property are: "ACTIVE", "DELETED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The lifecycle_state of this IngestTimeRuleSummary. :rtype: str """ return self._lifecycle_state @lifecycle_state.setter def lifecycle_state(self, lifecycle_state): """ Sets the lifecycle_state of this IngestTimeRuleSummary. The current state of the ingest time rule. :param lifecycle_state: The lifecycle_state of this IngestTimeRuleSummary. :type: str """ allowed_values = ["ACTIVE", "DELETED"] if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values): lifecycle_state = 'UNKNOWN_ENUM_VALUE' self._lifecycle_state = lifecycle_state @property def display_name(self): """ **[Required]** Gets the display_name of this IngestTimeRuleSummary. The ingest time rule display name. :return: The display_name of this IngestTimeRuleSummary. :rtype: str """ return self._display_name @display_name.setter def display_name(self, display_name): """ Sets the display_name of this IngestTimeRuleSummary. The ingest time rule display name. :param display_name: The display_name of this IngestTimeRuleSummary. :type: str """ self._display_name = display_name @property def is_enabled(self): """ Gets the is_enabled of this IngestTimeRuleSummary. A flag indicating whether or not the ingest time rule is enabled. :return: The is_enabled of this IngestTimeRuleSummary. :rtype: bool """ return self._is_enabled @is_enabled.setter def is_enabled(self, is_enabled): """ Sets the is_enabled of this IngestTimeRuleSummary. A flag indicating whether or not the ingest time rule is enabled. :param is_enabled: The is_enabled of this IngestTimeRuleSummary. :type: bool """ self._is_enabled = is_enabled @property def condition_kind(self): """ Gets the condition_kind of this IngestTimeRuleSummary. The ingest time rule condition kind. Allowed values for this property are: "FIELD", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The condition_kind of this IngestTimeRuleSummary. :rtype: str """ return self._condition_kind @condition_kind.setter def condition_kind(self, condition_kind): """ Sets the condition_kind of this IngestTimeRuleSummary. The ingest time rule condition kind. :param condition_kind: The condition_kind of this IngestTimeRuleSummary. :type: str """ allowed_values = ["FIELD"] if not value_allowed_none_or_none_sentinel(condition_kind, allowed_values): condition_kind = 'UNKNOWN_ENUM_VALUE' self._condition_kind = condition_kind @property def field_name(self): """ Gets the field_name of this IngestTimeRuleSummary. The ingest time rule condition field name. :return: The field_name of this IngestTimeRuleSummary. :rtype: str """ return self._field_name @field_name.setter def field_name(self, field_name): """ Sets the field_name of this IngestTimeRuleSummary. The ingest time rule condition field name. :param field_name: The field_name of this IngestTimeRuleSummary. :type: str """ self._field_name = field_name @property def field_value(self): """ Gets the field_value of this IngestTimeRuleSummary. The ingest time rule condition field value. :return: The field_value of this IngestTimeRuleSummary. :rtype: str """ return self._field_value @field_value.setter def field_value(self, field_value): """ Sets the field_value of this IngestTimeRuleSummary. The ingest time rule condition field value. :param field_value: The field_value of this IngestTimeRuleSummary. :type: str """ self._field_value = field_value 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
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings