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 Agent Dependencies in Oracle Cloud Infrastructure Cloud Bridge service. * * Returns a list of AgentDependencies such as AgentDependencyCollection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentDependencies = oci.cloudbridge.getAgentDependencies({ * compartmentId: compartmentId, * agentId: testAgent.id, * displayName: agentDependencyDisplayName, * environmentId: testEnvironment.id, * state: agentDependencyState, * }); * ``` */ export declare function getAgentDependencies(args: GetAgentDependenciesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAgentDependencies. */ export interface GetAgentDependenciesArgs { /** * A filter to return only resources that match the given Agent ID. */ agentId?: 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; /** * A filter to return only resources that match the given environment ID. */ environmentId?: string; filters?: inputs.CloudBridge.GetAgentDependenciesFilter[]; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getAgentDependencies. */ export interface GetAgentDependenciesResult { /** * The list of agent_dependency_collection. */ readonly agentDependencyCollections: outputs.CloudBridge.GetAgentDependenciesAgentDependencyCollection[]; readonly agentId?: string; /** * Compartment identifier */ readonly compartmentId: string; /** * Display name of the Agent dependency. */ readonly displayName?: string; readonly environmentId?: string; readonly filters?: outputs.CloudBridge.GetAgentDependenciesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of AgentDependency. */ readonly state?: string; } /** * This data source provides the list of Agent Dependencies in Oracle Cloud Infrastructure Cloud Bridge service. * * Returns a list of AgentDependencies such as AgentDependencyCollection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentDependencies = oci.cloudbridge.getAgentDependencies({ * compartmentId: compartmentId, * agentId: testAgent.id, * displayName: agentDependencyDisplayName, * environmentId: testEnvironment.id, * state: agentDependencyState, * }); * ``` */ export declare function getAgentDependenciesOutput(args: GetAgentDependenciesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAgentDependencies. */ export interface GetAgentDependenciesOutputArgs { /** * A filter to return only resources that match the given Agent ID. */ agentId?: 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; /** * A filter to return only resources that match the given environment ID. */ environmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getAgentDependencies.d.ts.map