import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Lifecycle Stage Promote Software Source Management resource in Oracle Cloud Infrastructure Os Management Hub service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/os-management/latest/LifecycleStagePromoteSoftwareSourceManagement * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/os_management_hub * * Updates the versioned custom software source content to the specified lifecycle stage. * A versioned custom software source OCID (softwareSourceId) is required when promoting content to the first lifecycle stage. You must promote content to the first stage before promoting to subsequent stages, otherwise the service returns an error. * The softwareSourceId is optional when promoting content to the second, third, forth, or fifth stages. If you provide a softwareSourceId, the service validates that it matches the softwareSourceId of the previous stage. If it does not match, the service returns an error. If you don't provide a softwareSourceId, the service promotes the versioned software source from the previous lifecycle stage. If the previous lifecycle stage has no software source, the service returns an error. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLifecycleStagePromoteSoftwareSourceManagement = new oci.osmanagementhub.LifecycleStagePromoteSoftwareSourceManagement("test_lifecycle_stage_promote_software_source_management", { * lifecycleStageId: testLifecycleStage.id, * softwareSourceId: testSoftwareSource.id, * workRequestDetails: { * description: lifecycleStagePromoteSoftwareSourceManagementWorkRequestDetailsDescription, * displayName: lifecycleStagePromoteSoftwareSourceManagementWorkRequestDetailsDisplayName, * }, * }); * ``` * * ## Import * * LifecycleStagePromoteSoftwareSourceManagement can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:OsManagementHub/lifecycleStagePromoteSoftwareSourceManagement:LifecycleStagePromoteSoftwareSourceManagement test_lifecycle_stage_promote_software_source_management "id" * ``` */ export declare class LifecycleStagePromoteSoftwareSourceManagement extends pulumi.CustomResource { /** * Get an existing LifecycleStagePromoteSoftwareSourceManagement 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?: LifecycleStagePromoteSoftwareSourceManagementState, opts?: pulumi.CustomResourceOptions): LifecycleStagePromoteSoftwareSourceManagement; /** * Returns true if the given object is an instance of LifecycleStagePromoteSoftwareSourceManagement. 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 LifecycleStagePromoteSoftwareSourceManagement; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage. */ readonly lifecycleStageId: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source. This filter returns resources associated with this software source. */ readonly softwareSourceId: pulumi.Output; /** * Provides the name and description of the job. */ readonly workRequestDetails: pulumi.Output; /** * Create a LifecycleStagePromoteSoftwareSourceManagement 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: LifecycleStagePromoteSoftwareSourceManagementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LifecycleStagePromoteSoftwareSourceManagement resources. */ export interface LifecycleStagePromoteSoftwareSourceManagementState { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage. */ lifecycleStageId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source. This filter returns resources associated with this software source. */ softwareSourceId?: pulumi.Input; /** * Provides the name and description of the job. */ workRequestDetails?: pulumi.Input; } /** * The set of arguments for constructing a LifecycleStagePromoteSoftwareSourceManagement resource. */ export interface LifecycleStagePromoteSoftwareSourceManagementArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the lifecycle stage. */ lifecycleStageId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the software source. This filter returns resources associated with this software source. */ softwareSourceId?: pulumi.Input; /** * Provides the name and description of the job. */ workRequestDetails?: pulumi.Input; } //# sourceMappingURL=lifecycleStagePromoteSoftwareSourceManagement.d.ts.map