import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Ip Inventory Subnet resource in Oracle Cloud Infrastructure Core service. * * Gets the IP Inventory data of the specified subnet. Specify the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIpInventorySubnet = oci.core.getIpInventorySubnet({ * subnetId: testSubnet.id, * }); * ``` */ export declare function getIpInventorySubnet(args: GetIpInventorySubnetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIpInventorySubnet. */ export interface GetIpInventorySubnetArgs { /** * Specify the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet. */ subnetId: string; } /** * A collection of values returned by getIpInventorySubnet. */ export interface GetIpInventorySubnetResult { /** * The compartment of the subnet. */ readonly compartmentId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Specifies the count for the number of results for the response. */ readonly ipInventorySubnetCount: number; /** * Lists `SubnetResourceSummary` objects. */ readonly ipInventorySubnetResourceSummaries: outputs.Core.GetIpInventorySubnetIpInventorySubnetResourceSummary[]; /** * The Timestamp of the latest update from the database in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly lastUpdatedTimestamp: string; /** * Indicates the status of the data. */ readonly message: string; readonly subnetId: string; } /** * This data source provides details about a specific Ip Inventory Subnet resource in Oracle Cloud Infrastructure Core service. * * Gets the IP Inventory data of the specified subnet. Specify the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIpInventorySubnet = oci.core.getIpInventorySubnet({ * subnetId: testSubnet.id, * }); * ``` */ export declare function getIpInventorySubnetOutput(args: GetIpInventorySubnetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIpInventorySubnet. */ export interface GetIpInventorySubnetOutputArgs { /** * Specify the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet. */ subnetId: pulumi.Input; } //# sourceMappingURL=getIpInventorySubnet.d.ts.map