import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Email Ip Pool resource in Oracle Cloud Infrastructure Email service. * * Retrieves the specified IpPool by identifier * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEmailIpPool = oci.email.getEmailIpPool({ * emailIpPoolId: testEmailIpPoolOciEmailEmailIpPool.id, * }); * ``` */ export declare function getEmailIpPool(args: GetEmailIpPoolArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEmailIpPool. */ export interface GetEmailIpPoolArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IpPool. */ emailIpPoolId: string; } /** * A collection of values returned by getEmailIpPool. */ export interface GetEmailIpPoolResult { /** * The lock compartment ID. */ 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; }; /** * The description of the IpPool. Avoid entering confidential information. */ readonly description: string; readonly emailIpPoolId: 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 unique [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IpPool resource that is immutable on creation. */ readonly id: string; /** * Last IP will be unassigned from the IP Pool after the period of time (in hours) specified by this parameter. Default is 24 hours. */ readonly lastIpDrainPeriodInHours: number; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state. */ readonly lifecycleDetails: string; /** * Locks associated with this resource. */ readonly locks: outputs.Email.GetEmailIpPoolLock[]; /** * The name of the IpPool. The name must be unique within a region. The name is case sensitive and supported characters include alphanumeric, hyphens ("-") and underscore ("_") characters. Example: green_pool-1 */ readonly name: string; /** * Summary of outbound IPs assigned to the IpPool. */ readonly outboundIps: string[]; readonly outboundIpsResponses: outputs.Email.GetEmailIpPoolOutboundIpsResponse[]; /** * The current state of the IpPool. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the IpPool was created. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". Example: `2021-02-12T22:47:12.613Z` */ readonly timeCreated: string; /** * The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, "YYYY-MM-ddThh:mmZ". */ readonly timeUpdated: string; } /** * This data source provides details about a specific Email Ip Pool resource in Oracle Cloud Infrastructure Email service. * * Retrieves the specified IpPool by identifier * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEmailIpPool = oci.email.getEmailIpPool({ * emailIpPoolId: testEmailIpPoolOciEmailEmailIpPool.id, * }); * ``` */ export declare function getEmailIpPoolOutput(args: GetEmailIpPoolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEmailIpPool. */ export interface GetEmailIpPoolOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IpPool. */ emailIpPoolId: pulumi.Input; } //# sourceMappingURL=getEmailIpPool.d.ts.map