ÿØÿà 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/nosql/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 IndexKey(object): """ Specifies a single key in a secondary index. """ def __init__(self, **kwargs): """ Initializes a new IndexKey object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param column_name: The value to assign to the column_name property of this IndexKey. :type column_name: str :param json_path: The value to assign to the json_path property of this IndexKey. :type json_path: str :param json_field_type: The value to assign to the json_field_type property of this IndexKey. :type json_field_type: str """ self.swagger_types = { 'column_name': 'str', 'json_path': 'str', 'json_field_type': 'str' } self.attribute_map = { 'column_name': 'columnName', 'json_path': 'jsonPath', 'json_field_type': 'jsonFieldType' } self._column_name = None self._json_path = None self._json_field_type = None @property def column_name(self): """ **[Required]** Gets the column_name of this IndexKey. The name of a column to be included as an index key. :return: The column_name of this IndexKey. :rtype: str """ return self._column_name @column_name.setter def column_name(self, column_name): """ Sets the column_name of this IndexKey. The name of a column to be included as an index key. :param column_name: The column_name of this IndexKey. :type: str """ self._column_name = column_name @property def json_path(self): """ Gets the json_path of this IndexKey. If the specified column is of type JSON, jsonPath contains a dotted path indicating the field within the JSON object that will be the index key. :return: The json_path of this IndexKey. :rtype: str """ return self._json_path @json_path.setter def json_path(self, json_path): """ Sets the json_path of this IndexKey. If the specified column is of type JSON, jsonPath contains a dotted path indicating the field within the JSON object that will be the index key. :param json_path: The json_path of this IndexKey. :type: str """ self._json_path = json_path @property def json_field_type(self): """ Gets the json_field_type of this IndexKey. If the specified column is of type JSON, jsonFieldType contains the type of the field indicated by jsonPath. :return: The json_field_type of this IndexKey. :rtype: str """ return self._json_field_type @json_field_type.setter def json_field_type(self, json_field_type): """ Sets the json_field_type of this IndexKey. If the specified column is of type JSON, jsonFieldType contains the type of the field indicated by jsonPath. :param json_field_type: The json_field_type of this IndexKey. :type: str """ self._json_field_type = json_field_type 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