import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Blockchain Platforms in Oracle Cloud Infrastructure Blockchain service. * * Returns a list Blockchain Platform Instances in a compartment * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBlockchainPlatforms = oci.blockchain.getBlockchainPlatforms({ * compartmentId: compartmentId, * displayName: blockchainPlatformDisplayName, * state: blockchainPlatformState, * }); * ``` */ export declare function getBlockchainPlatforms(args: GetBlockchainPlatformsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBlockchainPlatforms. */ export interface GetBlockchainPlatformsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource` */ displayName?: string; filters?: inputs.Blockchain.GetBlockchainPlatformsFilter[]; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getBlockchainPlatforms. */ export interface GetBlockchainPlatformsResult { /** * The list of blockchain_platform_collection. */ readonly blockchainPlatformCollections: outputs.Blockchain.GetBlockchainPlatformsBlockchainPlatformCollection[]; /** * Compartment Identifier */ readonly compartmentId: string; /** * Platform Instance Display name, can be renamed */ readonly displayName?: string; readonly filters?: outputs.Blockchain.GetBlockchainPlatformsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Platform Instance. */ readonly state?: string; } /** * This data source provides the list of Blockchain Platforms in Oracle Cloud Infrastructure Blockchain service. * * Returns a list Blockchain Platform Instances in a compartment * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBlockchainPlatforms = oci.blockchain.getBlockchainPlatforms({ * compartmentId: compartmentId, * displayName: blockchainPlatformDisplayName, * state: blockchainPlatformState, * }); * ``` */ export declare function getBlockchainPlatformsOutput(args: GetBlockchainPlatformsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBlockchainPlatforms. */ export interface GetBlockchainPlatformsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource` */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getBlockchainPlatforms.d.ts.map