/** * Marketplace Service API * Use the Marketplace API to manage applications in Oracle Cloud Infrastructure Marketplace. For more information, see [Overview of Marketplace](https://docs.oracle.com/iaas/Content/Marketplace/Concepts/marketoverview.htm) * OpenAPI spec version: 20181001 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 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. */ import * as model from "../model"; /** * The model for a summary of an Oracle Cloud Infrastructure publication. */ export interface PublicationSummary { /** * The lifecycle state of the publication. */ "lifecycleState": string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the publication exists. */ "compartmentId": string; /** * The unique identifier for the publication in Marketplace. */ "id": string; /** * The name of the publication, which is also used in the listing. */ "name": string; /** * A short description of the publication to use in the listing. */ "shortDescription"?: string; "icon"?: model.UploadData; /** * The listing's package type. */ "packageType"?: model.PackageTypeEnum; /** * The list of operating systems supported by the listing. */ "supportedOperatingSystems"?: Array; /** * The publisher category to which the publication belongs. The publisher category informs where the listing appears for use. */ "listingType": model.ListingType; /** * The date and time the publication was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) * timestamp format. *

Example: {@code 2016-08-25T21:10:29.600Z} * */ "timeCreated"?: Date; /** * The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. * For more information, see [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). * Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}} * */ "definedTags"?: { [key: string]: { [key: string]: any; }; }; /** * The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no * predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). * Example: {@code {\"Department\": \"Finance\"}} * */ "freeformTags"?: { [key: string]: string; }; /** * The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. * For more information, see [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). * Example: {@code {orcl-cloud: {free-tier-retain: true}}} * */ "systemTags"?: { [key: string]: { [key: string]: any; }; }; } export declare namespace PublicationSummary { function getJsonObj(obj: PublicationSummary): object; function getDeserializedJsonObj(obj: PublicationSummary): object; }