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 Software Source Vendors in Oracle Cloud Infrastructure Os Management Hub service. * * Lists available software source vendors. Filter the list against a variety of criteria including but not limited * to its name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSoftwareSourceVendors = oci.osmanagementhub.getSoftwareSourceVendors({ * compartmentId: compartmentId, * name: softwareSourceVendorName, * }); * ``` */ export declare function getSoftwareSourceVendors(args: GetSoftwareSourceVendorsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSoftwareSourceVendors. */ export interface GetSoftwareSourceVendorsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment. */ compartmentId: string; filters?: inputs.OsManagementHub.GetSoftwareSourceVendorsFilter[]; /** * The name of the entity to be queried. */ name?: string; } /** * A collection of values returned by getSoftwareSourceVendors. */ export interface GetSoftwareSourceVendorsResult { readonly compartmentId: string; readonly filters?: outputs.OsManagementHub.GetSoftwareSourceVendorsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Name of the vendor providing the software source. */ readonly name?: string; /** * The list of software_source_vendor_collection. */ readonly softwareSourceVendorCollections: outputs.OsManagementHub.GetSoftwareSourceVendorsSoftwareSourceVendorCollection[]; } /** * This data source provides the list of Software Source Vendors in Oracle Cloud Infrastructure Os Management Hub service. * * Lists available software source vendors. Filter the list against a variety of criteria including but not limited * to its name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSoftwareSourceVendors = oci.osmanagementhub.getSoftwareSourceVendors({ * compartmentId: compartmentId, * name: softwareSourceVendorName, * }); * ``` */ export declare function getSoftwareSourceVendorsOutput(args: GetSoftwareSourceVendorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSoftwareSourceVendors. */ export interface GetSoftwareSourceVendorsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. This parameter is required and returns only resources contained within the specified compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The name of the entity to be queried. */ name?: pulumi.Input; } //# sourceMappingURL=getSoftwareSourceVendors.d.ts.map