import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Agent Dependency resource in Oracle Cloud Infrastructure Cloud Bridge service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/OCB/latest/AgentDependency * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/cloudBridge * * Creates an AgentDependency. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAgentDependency = new oci.cloudbridge.AgentDependency("test_agent_dependency", { * bucket: agentDependencyBucket, * compartmentId: compartmentId, * dependencyName: agentDependencyDependencyName, * displayName: agentDependencyDisplayName, * namespace: agentDependencyNamespace, * object: agentDependencyObject, * definedTags: { * "Operations.CostCenter": "42", * }, * dependencyVersion: agentDependencyDependencyVersion, * description: agentDependencyDescription, * freeformTags: { * Department: "Finance", * }, * systemTags: agentDependencySystemTags, * }); * ``` * * ## Import * * AgentDependencies can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:CloudBridge/agentDependency:AgentDependency test_agent_dependency "id" * ``` */ export declare class AgentDependency extends pulumi.CustomResource { /** * Get an existing AgentDependency resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AgentDependencyState, opts?: pulumi.CustomResourceOptions): AgentDependency; /** * Returns true if the given object is an instance of AgentDependency. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AgentDependency; /** * (Updatable) Object storage bucket where the dependency is uploaded. */ readonly bucket: pulumi.Output; /** * The checksum associated with the dependency object returned by Object Storage. */ readonly checksum: pulumi.Output; /** * (Updatable) Compartment identifier. */ readonly compartmentId: pulumi.Output; /** * (Updatable) 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: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) Name of the dependency type. This should match the whitelisted enum of dependency names. */ readonly dependencyName: pulumi.Output; /** * (Updatable) Version of the Agent dependency. */ readonly dependencyVersion: pulumi.Output; /** * (Updatable) Description about the Agent dependency. */ readonly description: pulumi.Output; /** * (Updatable) Display name of the Agent dependency. */ readonly displayName: pulumi.Output; /** * The eTag associated with the dependency object returned by Object Storage. */ readonly eTag: pulumi.Output; /** * (Updatable) 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: pulumi.Output<{ [key: string]: 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: pulumi.Output; /** * (Updatable) Object storage namespace associated with the customer's tenancy. */ readonly namespace: pulumi.Output; /** * (Updatable) Name of the dependency object uploaded by the customer. */ readonly object: pulumi.Output; /** * The current state of AgentDependency. */ readonly state: pulumi.Output; /** * (Updatable) 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}}` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * The time when the AgentDependency was created. An RFC3339 formatted datetime string. */ readonly timeCreated: pulumi.Output; /** * Create a AgentDependency resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AgentDependencyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AgentDependency resources. */ export interface AgentDependencyState { /** * (Updatable) Object storage bucket where the dependency is uploaded. */ bucket?: pulumi.Input; /** * The checksum associated with the dependency object returned by Object Storage. */ checksum?: pulumi.Input; /** * (Updatable) Compartment identifier. */ compartmentId?: pulumi.Input; /** * (Updatable) 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"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Name of the dependency type. This should match the whitelisted enum of dependency names. */ dependencyName?: pulumi.Input; /** * (Updatable) Version of the Agent dependency. */ dependencyVersion?: pulumi.Input; /** * (Updatable) Description about the Agent dependency. */ description?: pulumi.Input; /** * (Updatable) Display name of the Agent dependency. */ displayName?: pulumi.Input; /** * The eTag associated with the dependency object returned by Object Storage. */ eTag?: pulumi.Input; /** * (Updatable) 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"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * 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. */ lifecycleDetails?: pulumi.Input; /** * (Updatable) Object storage namespace associated with the customer's tenancy. */ namespace?: pulumi.Input; /** * (Updatable) Name of the dependency object uploaded by the customer. */ object?: pulumi.Input; /** * The current state of AgentDependency. */ state?: pulumi.Input; /** * (Updatable) 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}}` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The time when the AgentDependency was created. An RFC3339 formatted datetime string. */ timeCreated?: pulumi.Input; } /** * The set of arguments for constructing a AgentDependency resource. */ export interface AgentDependencyArgs { /** * (Updatable) Object storage bucket where the dependency is uploaded. */ bucket: pulumi.Input; /** * (Updatable) Compartment identifier. */ compartmentId: pulumi.Input; /** * (Updatable) 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"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Name of the dependency type. This should match the whitelisted enum of dependency names. */ dependencyName: pulumi.Input; /** * (Updatable) Version of the Agent dependency. */ dependencyVersion?: pulumi.Input; /** * (Updatable) Description about the Agent dependency. */ description?: pulumi.Input; /** * (Updatable) Display name of the Agent dependency. */ displayName: pulumi.Input; /** * (Updatable) 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"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Object storage namespace associated with the customer's tenancy. */ namespace: pulumi.Input; /** * (Updatable) Name of the dependency object uploaded by the customer. */ object: pulumi.Input; /** * (Updatable) 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}}` * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; } //# sourceMappingURL=agentDependency.d.ts.map