ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/usr/share/mysqlsh/oci_sdk/oci/waas/models/ |
# coding: utf-8 # Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. 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 EdgeSubnet(object): """ The details about an edge node subnet. """ def __init__(self, **kwargs): """ Initializes a new EdgeSubnet object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param cidr: The value to assign to the cidr property of this EdgeSubnet. :type cidr: str :param time_modified: The value to assign to the time_modified property of this EdgeSubnet. :type time_modified: datetime :param region: The value to assign to the region property of this EdgeSubnet. :type region: str """ self.swagger_types = { 'cidr': 'str', 'time_modified': 'datetime', 'region': 'str' } self.attribute_map = { 'cidr': 'cidr', 'time_modified': 'timeModified', 'region': 'region' } self._cidr = None self._time_modified = None self._region = None @property def cidr(self): """ Gets the cidr of this EdgeSubnet. An edge node subnet. This can include /24 or /8 addresses. :return: The cidr of this EdgeSubnet. :rtype: str """ return self._cidr @cidr.setter def cidr(self, cidr): """ Sets the cidr of this EdgeSubnet. An edge node subnet. This can include /24 or /8 addresses. :param cidr: The cidr of this EdgeSubnet. :type: str """ self._cidr = cidr @property def time_modified(self): """ Gets the time_modified of this EdgeSubnet. The date and time the last change was made to the indicated edge node subnet, expressed in RFC 3339 timestamp format. :return: The time_modified of this EdgeSubnet. :rtype: datetime """ return self._time_modified @time_modified.setter def time_modified(self, time_modified): """ Sets the time_modified of this EdgeSubnet. The date and time the last change was made to the indicated edge node subnet, expressed in RFC 3339 timestamp format. :param time_modified: The time_modified of this EdgeSubnet. :type: datetime """ self._time_modified = time_modified @property def region(self): """ Gets the region of this EdgeSubnet. The name of the region containing the indicated subnet. :return: The region of this EdgeSubnet. :rtype: str """ return self._region @region.setter def region(self, region): """ Sets the region of this EdgeSubnet. The name of the region containing the indicated subnet. :param region: The region of this EdgeSubnet. :type: str """ self._region = region 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