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 Asset Sources in Oracle Cloud Infrastructure Cloud Bridge service. * * Returns a list of asset sources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAssetSources = oci.cloudbridge.getAssetSources({ * compartmentId: compartmentId, * assetSourceId: testAssetSource.id, * displayName: assetSourceDisplayName, * state: assetSourceState, * }); * ``` */ export declare function getAssetSources(args: GetAssetSourcesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAssetSources. */ export interface GetAssetSourcesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the asset source. */ assetSourceId?: string; /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.CloudBridge.GetAssetSourcesFilter[]; /** * The current state of the asset source. */ state?: string; } /** * A collection of values returned by getAssetSources. */ export interface GetAssetSourcesResult { /** * The list of asset_source_collection. */ readonly assetSourceCollections: outputs.CloudBridge.GetAssetSourcesAssetSourceCollection[]; readonly assetSourceId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for the resource. */ readonly compartmentId: string; /** * A user-friendly name for the asset source. Does not have to be unique, and it's mutable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.CloudBridge.GetAssetSourcesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the asset source. */ readonly state?: string; } /** * This data source provides the list of Asset Sources in Oracle Cloud Infrastructure Cloud Bridge service. * * Returns a list of asset sources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAssetSources = oci.cloudbridge.getAssetSources({ * compartmentId: compartmentId, * assetSourceId: testAssetSource.id, * displayName: assetSourceDisplayName, * state: assetSourceState, * }); * ``` */ export declare function getAssetSourcesOutput(args: GetAssetSourcesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAssetSources. */ export interface GetAssetSourcesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the asset source. */ assetSourceId?: pulumi.Input; /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The current state of the asset source. */ state?: pulumi.Input; } //# sourceMappingURL=getAssetSources.d.ts.map