| Server IP : 162.144.4.212 / Your IP : 216.73.216.108 Web Server : Apache System : Linux gator2125.hostgator.com 5.14.0-162.23.1.9991722448259.nf.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 31 18:11:45 UTC 2024 x86_64 User : cozeellc ( 2980) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /lib/python3.9/site-packages/oci/log_analytics/models/ |
Upload File : |
# coding: utf-8
# Copyright (c) 2016, 2024, 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 UpsertLogAnalyticsAssociation(object):
"""
UpsertLogAnalyticsAssociation
"""
def __init__(self, **kwargs):
"""
Initializes a new UpsertLogAnalyticsAssociation object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param agent_id:
The value to assign to the agent_id property of this UpsertLogAnalyticsAssociation.
:type agent_id: str
:param source_name:
The value to assign to the source_name property of this UpsertLogAnalyticsAssociation.
:type source_name: str
:param source_type_name:
The value to assign to the source_type_name property of this UpsertLogAnalyticsAssociation.
:type source_type_name: str
:param entity_id:
The value to assign to the entity_id property of this UpsertLogAnalyticsAssociation.
:type entity_id: str
:param entity_name:
The value to assign to the entity_name property of this UpsertLogAnalyticsAssociation.
:type entity_name: str
:param entity_type_name:
The value to assign to the entity_type_name property of this UpsertLogAnalyticsAssociation.
:type entity_type_name: str
:param host:
The value to assign to the host property of this UpsertLogAnalyticsAssociation.
:type host: str
:param log_group_id:
The value to assign to the log_group_id property of this UpsertLogAnalyticsAssociation.
:type log_group_id: str
:param association_properties:
The value to assign to the association_properties property of this UpsertLogAnalyticsAssociation.
:type association_properties: list[oci.log_analytics.models.AssociationProperty]
"""
self.swagger_types = {
'agent_id': 'str',
'source_name': 'str',
'source_type_name': 'str',
'entity_id': 'str',
'entity_name': 'str',
'entity_type_name': 'str',
'host': 'str',
'log_group_id': 'str',
'association_properties': 'list[AssociationProperty]'
}
self.attribute_map = {
'agent_id': 'agentId',
'source_name': 'sourceName',
'source_type_name': 'sourceTypeName',
'entity_id': 'entityId',
'entity_name': 'entityName',
'entity_type_name': 'entityTypeName',
'host': 'host',
'log_group_id': 'logGroupId',
'association_properties': 'associationProperties'
}
self._agent_id = None
self._source_name = None
self._source_type_name = None
self._entity_id = None
self._entity_name = None
self._entity_type_name = None
self._host = None
self._log_group_id = None
self._association_properties = None
@property
def agent_id(self):
"""
Gets the agent_id of this UpsertLogAnalyticsAssociation.
The agent unique identifier.
:return: The agent_id of this UpsertLogAnalyticsAssociation.
:rtype: str
"""
return self._agent_id
@agent_id.setter
def agent_id(self, agent_id):
"""
Sets the agent_id of this UpsertLogAnalyticsAssociation.
The agent unique identifier.
:param agent_id: The agent_id of this UpsertLogAnalyticsAssociation.
:type: str
"""
self._agent_id = agent_id
@property
def source_name(self):
"""
Gets the source_name of this UpsertLogAnalyticsAssociation.
The source name.
:return: The source_name of this UpsertLogAnalyticsAssociation.
:rtype: str
"""
return self._source_name
@source_name.setter
def source_name(self, source_name):
"""
Sets the source_name of this UpsertLogAnalyticsAssociation.
The source name.
:param source_name: The source_name of this UpsertLogAnalyticsAssociation.
:type: str
"""
self._source_name = source_name
@property
def source_type_name(self):
"""
Gets the source_type_name of this UpsertLogAnalyticsAssociation.
The source type internal name.
:return: The source_type_name of this UpsertLogAnalyticsAssociation.
:rtype: str
"""
return self._source_type_name
@source_type_name.setter
def source_type_name(self, source_type_name):
"""
Sets the source_type_name of this UpsertLogAnalyticsAssociation.
The source type internal name.
:param source_type_name: The source_type_name of this UpsertLogAnalyticsAssociation.
:type: str
"""
self._source_type_name = source_type_name
@property
def entity_id(self):
"""
Gets the entity_id of this UpsertLogAnalyticsAssociation.
The entity unique identifier.
:return: The entity_id of this UpsertLogAnalyticsAssociation.
:rtype: str
"""
return self._entity_id
@entity_id.setter
def entity_id(self, entity_id):
"""
Sets the entity_id of this UpsertLogAnalyticsAssociation.
The entity unique identifier.
:param entity_id: The entity_id of this UpsertLogAnalyticsAssociation.
:type: str
"""
self._entity_id = entity_id
@property
def entity_name(self):
"""
Gets the entity_name of this UpsertLogAnalyticsAssociation.
The entity name.
:return: The entity_name of this UpsertLogAnalyticsAssociation.
:rtype: str
"""
return self._entity_name
@entity_name.setter
def entity_name(self, entity_name):
"""
Sets the entity_name of this UpsertLogAnalyticsAssociation.
The entity name.
:param entity_name: The entity_name of this UpsertLogAnalyticsAssociation.
:type: str
"""
self._entity_name = entity_name
@property
def entity_type_name(self):
"""
Gets the entity_type_name of this UpsertLogAnalyticsAssociation.
The entity type internal name.
:return: The entity_type_name of this UpsertLogAnalyticsAssociation.
:rtype: str
"""
return self._entity_type_name
@entity_type_name.setter
def entity_type_name(self, entity_type_name):
"""
Sets the entity_type_name of this UpsertLogAnalyticsAssociation.
The entity type internal name.
:param entity_type_name: The entity_type_name of this UpsertLogAnalyticsAssociation.
:type: str
"""
self._entity_type_name = entity_type_name
@property
def host(self):
"""
Gets the host of this UpsertLogAnalyticsAssociation.
The host name.
:return: The host of this UpsertLogAnalyticsAssociation.
:rtype: str
"""
return self._host
@host.setter
def host(self, host):
"""
Sets the host of this UpsertLogAnalyticsAssociation.
The host name.
:param host: The host of this UpsertLogAnalyticsAssociation.
:type: str
"""
self._host = host
@property
def log_group_id(self):
"""
Gets the log_group_id of this UpsertLogAnalyticsAssociation.
The log group unique identifier.
:return: The log_group_id of this UpsertLogAnalyticsAssociation.
:rtype: str
"""
return self._log_group_id
@log_group_id.setter
def log_group_id(self, log_group_id):
"""
Sets the log_group_id of this UpsertLogAnalyticsAssociation.
The log group unique identifier.
:param log_group_id: The log_group_id of this UpsertLogAnalyticsAssociation.
:type: str
"""
self._log_group_id = log_group_id
@property
def association_properties(self):
"""
Gets the association_properties of this UpsertLogAnalyticsAssociation.
A list of association properties.
:return: The association_properties of this UpsertLogAnalyticsAssociation.
:rtype: list[oci.log_analytics.models.AssociationProperty]
"""
return self._association_properties
@association_properties.setter
def association_properties(self, association_properties):
"""
Sets the association_properties of this UpsertLogAnalyticsAssociation.
A list of association properties.
:param association_properties: The association_properties of this UpsertLogAnalyticsAssociation.
:type: list[oci.log_analytics.models.AssociationProperty]
"""
self._association_properties = association_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