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 Peers in Oracle Cloud Infrastructure Blockchain service. * * List Blockchain Platform Peers * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPeers = oci.blockchain.getPeers({ * blockchainPlatformId: testBlockchainPlatform.id, * displayName: peerDisplayName, * }); * ``` */ export declare function getPeers(args: GetPeersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPeers. */ export interface GetPeersArgs { /** * Unique service identifier. */ blockchainPlatformId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource` */ displayName?: string; filters?: inputs.Blockchain.GetPeersFilter[]; } /** * A collection of values returned by getPeers. */ export interface GetPeersResult { readonly blockchainPlatformId: string; readonly displayName?: string; readonly filters?: outputs.Blockchain.GetPeersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of peer_collection. */ readonly peerCollections: outputs.Blockchain.GetPeersPeerCollection[]; } /** * This data source provides the list of Peers in Oracle Cloud Infrastructure Blockchain service. * * List Blockchain Platform Peers * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPeers = oci.blockchain.getPeers({ * blockchainPlatformId: testBlockchainPlatform.id, * displayName: peerDisplayName, * }); * ``` */ export declare function getPeersOutput(args: GetPeersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPeers. */ export interface GetPeersOutputArgs { /** * Unique service identifier. */ blockchainPlatformId: 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>; } //# sourceMappingURL=getPeers.d.ts.map