/** * Blockchain Platform Control Plane API * Blockchain Platform Control Plane API * OpenAPI spec version: 20191010 * * * 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. */ /** * Blockchain Platform Instance Summary. */ export interface BlockchainPlatformSummary { /** * unique identifier that is immutable on creation */ "id": string; /** * Platform Instance Display name, can be renamed */ "displayName": string; /** * Compartment Identifier */ "compartmentId": string; /** * Platform Instance Description */ "description"?: string; /** * The time the the Platform Instance was created. An RFC3339 formatted datetime string */ "timeCreated"?: Date; /** * The time the Platform Instance was updated. An RFC3339 formatted datetime string */ "timeUpdated"?: Date; /** * Role of platform - founder or participant */ "platformRole"?: string; /** * Compute shape - STANDARD or ENTERPRISE_SMALL or ENTERPRISE_MEDIUM or ENTERPRISE_LARGE or ENTERPRISE_EXTRA_LARGE or ENTERPRISE_CUSTOM */ "computeShape": string; /** * Service endpoint URL, valid post-provisioning */ "serviceEndpoint"?: string; /** * The current state of the Platform Instance. */ "lifecycleState"?: string; /** * An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ "lifecycleDetails"?: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. * Example: {@code {\"bar-key\": \"value\"}} * */ "freeformTags"?: { [key: string]: string; }; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}} * */ "definedTags"?: { [key: string]: { [key: string]: any; }; }; } export declare namespace BlockchainPlatformSummary { function getJsonObj(obj: BlockchainPlatformSummary): object; function getDeserializedJsonObj(obj: BlockchainPlatformSummary): object; }