import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Agent Dependency resource in Oracle Cloud Infrastructure Cloud Bridge service. * * Gets an AgentDependency by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentDependency = oci.cloudbridge.getAgentDependency({ * agentDependencyId: testAgentDependencyOciCloudBridgeAgentDependency.id, * }); * ``` */ export declare function getAgentDependency(args: GetAgentDependencyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAgentDependency. */ export interface GetAgentDependencyArgs { /** * A unique AgentDependency identifier. */ agentDependencyId: string; } /** * A collection of values returned by getAgentDependency. */ export interface GetAgentDependencyResult { readonly agentDependencyId: string; /** * Object storage bucket where the Agent dependency is uploaded. */ readonly bucket: string; /** * The checksum associated with the dependency object returned by Object Storage. */ readonly checksum: string; /** * Compartment identifier */ readonly compartmentId: string; /** * The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Name of the dependency type. This should match the whitelisted enum of dependency names. */ readonly dependencyName: string; /** * Version of the Agent dependency. */ readonly dependencyVersion: string; /** * Description about the Agent dependency. */ readonly description: string; /** * Display name of the Agent dependency. */ readonly displayName: string; /** * The eTag associated with the dependency object returned by Object Storage. */ readonly eTag: string; /** * The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * Unique identifier that is immutable on creation. */ readonly id: string; /** * A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * Object storage namespace associated with the customer's tenancy. */ readonly namespace: string; /** * Name of the dependency object uploaded by the customer. */ readonly object: string; /** * The current state of AgentDependency. */ readonly state: string; /** * The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` */ readonly systemTags: { [key: string]: string; }; /** * The time when the AgentDependency was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; } /** * This data source provides details about a specific Agent Dependency resource in Oracle Cloud Infrastructure Cloud Bridge service. * * Gets an AgentDependency by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentDependency = oci.cloudbridge.getAgentDependency({ * agentDependencyId: testAgentDependencyOciCloudBridgeAgentDependency.id, * }); * ``` */ export declare function getAgentDependencyOutput(args: GetAgentDependencyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAgentDependency. */ export interface GetAgentDependencyOutputArgs { /** * A unique AgentDependency identifier. */ agentDependencyId: pulumi.Input; } //# sourceMappingURL=getAgentDependency.d.ts.map