import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Drg Route Distribution resource in Oracle Cloud Infrastructure Core service. * * Gets the specified route distribution's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDrgRouteDistribution = oci.core.getDrgRouteDistribution({ * drgRouteDistributionId: testDrgRouteDistributionOciCoreDrgRouteDistribution.id, * }); * ``` */ export declare function getDrgRouteDistribution(args: GetDrgRouteDistributionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDrgRouteDistribution. */ export interface GetDrgRouteDistributionArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route distribution. */ drgRouteDistributionId: string; } /** * A collection of values returned by getDrgRouteDistribution. */ export interface GetDrgRouteDistributionResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the route distribution. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * Whether this distribution defines how routes get imported into route tables or exported through DRG attachments. */ readonly distributionType: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DRG that contains this route distribution. */ readonly drgId: string; readonly drgRouteDistributionId: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The route distribution's Oracle ID ([OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)). */ readonly id: string; /** * The route distribution's current state. */ readonly state: string; /** * The date and time the route distribution was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; } /** * This data source provides details about a specific Drg Route Distribution resource in Oracle Cloud Infrastructure Core service. * * Gets the specified route distribution's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDrgRouteDistribution = oci.core.getDrgRouteDistribution({ * drgRouteDistributionId: testDrgRouteDistributionOciCoreDrgRouteDistribution.id, * }); * ``` */ export declare function getDrgRouteDistributionOutput(args: GetDrgRouteDistributionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDrgRouteDistribution. */ export interface GetDrgRouteDistributionOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route distribution. */ drgRouteDistributionId: pulumi.Input; } //# sourceMappingURL=getDrgRouteDistribution.d.ts.map