File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/marketplace/models/listing_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: 20181001 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 ListingSummary(object): """ The model for a summary of an Oracle Cloud Infrastructure Marketplace listing. """ #: A constant which can be used with the package_type property of a ListingSummary. #: This constant has a value of "ORCHESTRATION" PACKAGE_TYPE_ORCHESTRATION = "ORCHESTRATION" #: A constant which can be used with the package_type property of a ListingSummary. #: This constant has a value of "IMAGE" PACKAGE_TYPE_IMAGE = "IMAGE" #: A constant which can be used with the package_type property of a ListingSummary. #: This constant has a value of "CONTAINER" PACKAGE_TYPE_CONTAINER = "CONTAINER" #: A constant which can be used with the package_type property of a ListingSummary. #: This constant has a value of "KUBERNETES" PACKAGE_TYPE_KUBERNETES = "KUBERNETES" #: A constant which can be used with the compatible_architectures property of a ListingSummary. #: This constant has a value of "X86" COMPATIBLE_ARCHITECTURES_X86 = "X86" #: A constant which can be used with the compatible_architectures property of a ListingSummary. #: This constant has a value of "ARM" COMPATIBLE_ARCHITECTURES_ARM = "ARM" #: A constant which can be used with the listing_type property of a ListingSummary. #: This constant has a value of "COMMUNITY" LISTING_TYPE_COMMUNITY = "COMMUNITY" #: A constant which can be used with the listing_type property of a ListingSummary. #: This constant has a value of "PARTNER" LISTING_TYPE_PARTNER = "PARTNER" #: A constant which can be used with the listing_type property of a ListingSummary. #: This constant has a value of "PRIVATE" LISTING_TYPE_PRIVATE = "PRIVATE" def __init__(self, **kwargs): """ Initializes a new ListingSummary 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 ListingSummary. :type id: str :param name: The value to assign to the name property of this ListingSummary. :type name: str :param short_description: The value to assign to the short_description property of this ListingSummary. :type short_description: str :param is_rover_exportable: The value to assign to the is_rover_exportable property of this ListingSummary. :type is_rover_exportable: bool :param tagline: The value to assign to the tagline property of this ListingSummary. :type tagline: str :param icon: The value to assign to the icon property of this ListingSummary. :type icon: oci.marketplace.models.UploadData :param package_type: The value to assign to the package_type property of this ListingSummary. Allowed values for this property are: "ORCHESTRATION", "IMAGE", "CONTAINER", "KUBERNETES", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type package_type: str :param pricing_types: The value to assign to the pricing_types property of this ListingSummary. :type pricing_types: list[oci.marketplace.models.PricingTypeEnum] :param compatible_architectures: The value to assign to the compatible_architectures property of this ListingSummary. Allowed values for items in this list are: "X86", "ARM", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type compatible_architectures: list[str] :param regions: The value to assign to the regions property of this ListingSummary. :type regions: list[oci.marketplace.models.Region] :param is_featured: The value to assign to the is_featured property of this ListingSummary. :type is_featured: bool :param categories: The value to assign to the categories property of this ListingSummary. :type categories: list[str] :param publisher: The value to assign to the publisher property of this ListingSummary. :type publisher: oci.marketplace.models.PublisherSummary :param supported_operating_systems: The value to assign to the supported_operating_systems property of this ListingSummary. :type supported_operating_systems: list[oci.marketplace.models.OperatingSystem] :param listing_type: The value to assign to the listing_type property of this ListingSummary. Allowed values for this property are: "COMMUNITY", "PARTNER", "PRIVATE", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type listing_type: str """ self.swagger_types = { 'id': 'str', 'name': 'str', 'short_description': 'str', 'is_rover_exportable': 'bool', 'tagline': 'str', 'icon': 'UploadData', 'package_type': 'str', 'pricing_types': 'list[PricingTypeEnum]', 'compatible_architectures': 'list[str]', 'regions': 'list[Region]', 'is_featured': 'bool', 'categories': 'list[str]', 'publisher': 'PublisherSummary', 'supported_operating_systems': 'list[OperatingSystem]', 'listing_type': 'str' } self.attribute_map = { 'id': 'id', 'name': 'name', 'short_description': 'shortDescription', 'is_rover_exportable': 'isRoverExportable', 'tagline': 'tagline', 'icon': 'icon', 'package_type': 'packageType', 'pricing_types': 'pricingTypes', 'compatible_architectures': 'compatibleArchitectures', 'regions': 'regions', 'is_featured': 'isFeatured', 'categories': 'categories', 'publisher': 'publisher', 'supported_operating_systems': 'supportedOperatingSystems', 'listing_type': 'listingType' } self._id = None self._name = None self._short_description = None self._is_rover_exportable = None self._tagline = None self._icon = None self._package_type = None self._pricing_types = None self._compatible_architectures = None self._regions = None self._is_featured = None self._categories = None self._publisher = None self._supported_operating_systems = None self._listing_type = None @property def id(self): """ Gets the id of this ListingSummary. The unique identifier for the listing in Marketplace. :return: The id of this ListingSummary. :rtype: str """ return self._id @id.setter def id(self, id): """ Sets the id of this ListingSummary. The unique identifier for the listing in Marketplace. :param id: The id of this ListingSummary. :type: str """ self._id = id @property def name(self): """ Gets the name of this ListingSummary. The name of the listing. :return: The name of this ListingSummary. :rtype: str """ return self._name @name.setter def name(self, name): """ Sets the name of this ListingSummary. The name of the listing. :param name: The name of this ListingSummary. :type: str """ self._name = name @property def short_description(self): """ Gets the short_description of this ListingSummary. A short description of the listing. :return: The short_description of this ListingSummary. :rtype: str """ return self._short_description @short_description.setter def short_description(self, short_description): """ Sets the short_description of this ListingSummary. A short description of the listing. :param short_description: The short_description of this ListingSummary. :type: str """ self._short_description = short_description @property def is_rover_exportable(self): """ Gets the is_rover_exportable of this ListingSummary. True if this application is Rover exportable :return: The is_rover_exportable of this ListingSummary. :rtype: bool """ return self._is_rover_exportable @is_rover_exportable.setter def is_rover_exportable(self, is_rover_exportable): """ Sets the is_rover_exportable of this ListingSummary. True if this application is Rover exportable :param is_rover_exportable: The is_rover_exportable of this ListingSummary. :type: bool """ self._is_rover_exportable = is_rover_exportable @property def tagline(self): """ Gets the tagline of this ListingSummary. The tagline of the listing. :return: The tagline of this ListingSummary. :rtype: str """ return self._tagline @tagline.setter def tagline(self, tagline): """ Sets the tagline of this ListingSummary. The tagline of the listing. :param tagline: The tagline of this ListingSummary. :type: str """ self._tagline = tagline @property def icon(self): """ Gets the icon of this ListingSummary. :return: The icon of this ListingSummary. :rtype: oci.marketplace.models.UploadData """ return self._icon @icon.setter def icon(self, icon): """ Sets the icon of this ListingSummary. :param icon: The icon of this ListingSummary. :type: oci.marketplace.models.UploadData """ self._icon = icon @property def package_type(self): """ Gets the package_type of this ListingSummary. The listing's package type. Allowed values for this property are: "ORCHESTRATION", "IMAGE", "CONTAINER", "KUBERNETES", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The package_type of this ListingSummary. :rtype: str """ return self._package_type @package_type.setter def package_type(self, package_type): """ Sets the package_type of this ListingSummary. The listing's package type. :param package_type: The package_type of this ListingSummary. :type: str """ allowed_values = ["ORCHESTRATION", "IMAGE", "CONTAINER", "KUBERNETES"] if not value_allowed_none_or_none_sentinel(package_type, allowed_values): package_type = 'UNKNOWN_ENUM_VALUE' self._package_type = package_type @property def pricing_types(self): """ Gets the pricing_types of this ListingSummary. Summary of the pricing types available across all packages in the listing. :return: The pricing_types of this ListingSummary. :rtype: list[oci.marketplace.models.PricingTypeEnum] """ return self._pricing_types @pricing_types.setter def pricing_types(self, pricing_types): """ Sets the pricing_types of this ListingSummary. Summary of the pricing types available across all packages in the listing. :param pricing_types: The pricing_types of this ListingSummary. :type: list[oci.marketplace.models.PricingTypeEnum] """ self._pricing_types = pricing_types @property def compatible_architectures(self): """ Gets the compatible_architectures of this ListingSummary. The list of compatible architectures supported by the listing Allowed values for items in this list are: "X86", "ARM", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The compatible_architectures of this ListingSummary. :rtype: list[str] """ return self._compatible_architectures @compatible_architectures.setter def compatible_architectures(self, compatible_architectures): """ Sets the compatible_architectures of this ListingSummary. The list of compatible architectures supported by the listing :param compatible_architectures: The compatible_architectures of this ListingSummary. :type: list[str] """ allowed_values = ["X86", "ARM"] if compatible_architectures: compatible_architectures[:] = ['UNKNOWN_ENUM_VALUE' if not value_allowed_none_or_none_sentinel(x, allowed_values) else x for x in compatible_architectures] self._compatible_architectures = compatible_architectures @property def regions(self): """ Gets the regions of this ListingSummary. The regions where you can deploy the listing. (Some listings have restrictions that limit their deployment to United States regions only.) :return: The regions of this ListingSummary. :rtype: list[oci.marketplace.models.Region] """ return self._regions @regions.setter def regions(self, regions): """ Sets the regions of this ListingSummary. The regions where you can deploy the listing. (Some listings have restrictions that limit their deployment to United States regions only.) :param regions: The regions of this ListingSummary. :type: list[oci.marketplace.models.Region] """ self._regions = regions @property def is_featured(self): """ Gets the is_featured of this ListingSummary. Indicates whether the listing is featured. :return: The is_featured of this ListingSummary. :rtype: bool """ return self._is_featured @is_featured.setter def is_featured(self, is_featured): """ Sets the is_featured of this ListingSummary. Indicates whether the listing is featured. :param is_featured: The is_featured of this ListingSummary. :type: bool """ self._is_featured = is_featured @property def categories(self): """ Gets the categories of this ListingSummary. Product categories that the listing belongs to. :return: The categories of this ListingSummary. :rtype: list[str] """ return self._categories @categories.setter def categories(self, categories): """ Sets the categories of this ListingSummary. Product categories that the listing belongs to. :param categories: The categories of this ListingSummary. :type: list[str] """ self._categories = categories @property def publisher(self): """ Gets the publisher of this ListingSummary. :return: The publisher of this ListingSummary. :rtype: oci.marketplace.models.PublisherSummary """ return self._publisher @publisher.setter def publisher(self, publisher): """ Sets the publisher of this ListingSummary. :param publisher: The publisher of this ListingSummary. :type: oci.marketplace.models.PublisherSummary """ self._publisher = publisher @property def supported_operating_systems(self): """ Gets the supported_operating_systems of this ListingSummary. The list of operating systems supported by the listing. :return: The supported_operating_systems of this ListingSummary. :rtype: list[oci.marketplace.models.OperatingSystem] """ return self._supported_operating_systems @supported_operating_systems.setter def supported_operating_systems(self, supported_operating_systems): """ Sets the supported_operating_systems of this ListingSummary. The list of operating systems supported by the listing. :param supported_operating_systems: The supported_operating_systems of this ListingSummary. :type: list[oci.marketplace.models.OperatingSystem] """ self._supported_operating_systems = supported_operating_systems @property def listing_type(self): """ Gets the listing_type of this ListingSummary. The publisher category to which the listing belongs. The publisher category informs where the listing appears for use. Allowed values for this property are: "COMMUNITY", "PARTNER", "PRIVATE", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The listing_type of this ListingSummary. :rtype: str """ return self._listing_type @listing_type.setter def listing_type(self, listing_type): """ Sets the listing_type of this ListingSummary. The publisher category to which the listing belongs. The publisher category informs where the listing appears for use. :param listing_type: The listing_type of this ListingSummary. :type: str """ allowed_values = ["COMMUNITY", "PARTNER", "PRIVATE"] if not value_allowed_none_or_none_sentinel(listing_type, allowed_values): listing_type = 'UNKNOWN_ENUM_VALUE' self._listing_type = listing_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
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings