import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Software Source Change Availability 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/SoftwareSourceChangeAvailabilityManagement * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/os_management_hub * * Updates the availability for a list of specified software sources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSoftwareSourceChangeAvailabilityManagement = new oci.osmanagementhub.SoftwareSourceChangeAvailabilityManagement("test_software_source_change_availability_management", {softwareSourceAvailabilities: [{ * softwareSourceId: testSoftwareSource.id, * availability: softwareSourceChangeAvailabilityManagementSoftwareSourceAvailabilitiesAvailability, * availabilityAtOci: softwareSourceChangeAvailabilityManagementSoftwareSourceAvailabilitiesAvailabilityAtOci, * }]}); * ``` * * ## Import * * SoftwareSourceChangeAvailabilityManagement can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:OsManagementHub/softwareSourceChangeAvailabilityManagement:SoftwareSourceChangeAvailabilityManagement test_software_source_change_availability_management "id" * ``` */ export declare class SoftwareSourceChangeAvailabilityManagement extends pulumi.CustomResource { /** * Get an existing SoftwareSourceChangeAvailabilityManagement 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?: SoftwareSourceChangeAvailabilityManagementState, opts?: pulumi.CustomResourceOptions): SoftwareSourceChangeAvailabilityManagement; /** * Returns true if the given object is an instance of SoftwareSourceChangeAvailabilityManagement. 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 SoftwareSourceChangeAvailabilityManagement; /** * List of vendor software sources and their availability statuses. */ readonly softwareSourceAvailabilities: pulumi.Output; /** * Create a SoftwareSourceChangeAvailabilityManagement 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: SoftwareSourceChangeAvailabilityManagementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SoftwareSourceChangeAvailabilityManagement resources. */ export interface SoftwareSourceChangeAvailabilityManagementState { /** * List of vendor software sources and their availability statuses. */ softwareSourceAvailabilities?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a SoftwareSourceChangeAvailabilityManagement resource. */ export interface SoftwareSourceChangeAvailabilityManagementArgs { /** * List of vendor software sources and their availability statuses. */ softwareSourceAvailabilities: pulumi.Input[]>; } //# sourceMappingURL=softwareSourceChangeAvailabilityManagement.d.ts.map