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 Byoasns in Oracle Cloud Infrastructure Core service. * * Lists the `Byoasn` resources in the specified compartment. * You can filter the list using query parameters. * * ## Example Usage */ export declare function getByoasns(args: GetByoasnsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getByoasns. */ export interface GetByoasnsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.Core.GetByoasnsFilter[]; } /** * A collection of values returned by getByoasns. */ export interface GetByoasnsResult { /** * The list of byoasn_collection. */ readonly byoasnCollections: outputs.Core.GetByoasnsByoasnCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the `Byoasn` resource. */ readonly compartmentId: string; readonly filters?: outputs.Core.GetByoasnsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Byoasns in Oracle Cloud Infrastructure Core service. * * Lists the `Byoasn` resources in the specified compartment. * You can filter the list using query parameters. * * ## Example Usage */ export declare function getByoasnsOutput(args: GetByoasnsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getByoasns. */ export interface GetByoasnsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getByoasns.d.ts.map