1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Email
  5. getEmailIpPools
Viewing docs for Oracle Cloud Infrastructure v4.2.0
published on Friday, Mar 6, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.2.0
published on Friday, Mar 6, 2026 by Pulumi

    This data source provides the list of Email Ip Pools in Oracle Cloud Infrastructure Email service.

    Returns a list of EmailIpPools.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testEmailIpPools = oci.Email.getEmailIpPools({
        compartmentId: compartmentId,
        id: emailIpPoolId,
        name: emailIpPoolName,
        state: emailIpPoolState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_email_ip_pools = oci.Email.get_email_ip_pools(compartment_id=compartment_id,
        id=email_ip_pool_id,
        name=email_ip_pool_name,
        state=email_ip_pool_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/email"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := email.GetEmailIpPools(ctx, &email.GetEmailIpPoolsArgs{
    			CompartmentId: compartmentId,
    			Id:            pulumi.StringRef(emailIpPoolId),
    			Name:          pulumi.StringRef(emailIpPoolName),
    			State:         pulumi.StringRef(emailIpPoolState),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testEmailIpPools = Oci.Email.GetEmailIpPools.Invoke(new()
        {
            CompartmentId = compartmentId,
            Id = emailIpPoolId,
            Name = emailIpPoolName,
            State = emailIpPoolState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Email.EmailFunctions;
    import com.pulumi.oci.Email.inputs.GetEmailIpPoolsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testEmailIpPools = EmailFunctions.getEmailIpPools(GetEmailIpPoolsArgs.builder()
                .compartmentId(compartmentId)
                .id(emailIpPoolId)
                .name(emailIpPoolName)
                .state(emailIpPoolState)
                .build());
    
        }
    }
    
    variables:
      testEmailIpPools:
        fn::invoke:
          function: oci:Email:getEmailIpPools
          arguments:
            compartmentId: ${compartmentId}
            id: ${emailIpPoolId}
            name: ${emailIpPoolName}
            state: ${emailIpPoolState}
    

    Using getEmailIpPools

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getEmailIpPools(args: GetEmailIpPoolsArgs, opts?: InvokeOptions): Promise<GetEmailIpPoolsResult>
    function getEmailIpPoolsOutput(args: GetEmailIpPoolsOutputArgs, opts?: InvokeOptions): Output<GetEmailIpPoolsResult>
    def get_email_ip_pools(compartment_id: Optional[str] = None,
                           filters: Optional[Sequence[GetEmailIpPoolsFilter]] = None,
                           id: Optional[str] = None,
                           name: Optional[str] = None,
                           state: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetEmailIpPoolsResult
    def get_email_ip_pools_output(compartment_id: Optional[pulumi.Input[str]] = None,
                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetEmailIpPoolsFilterArgs]]]] = None,
                           id: Optional[pulumi.Input[str]] = None,
                           name: Optional[pulumi.Input[str]] = None,
                           state: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetEmailIpPoolsResult]
    func GetEmailIpPools(ctx *Context, args *GetEmailIpPoolsArgs, opts ...InvokeOption) (*GetEmailIpPoolsResult, error)
    func GetEmailIpPoolsOutput(ctx *Context, args *GetEmailIpPoolsOutputArgs, opts ...InvokeOption) GetEmailIpPoolsResultOutput

    > Note: This function is named GetEmailIpPools in the Go SDK.

    public static class GetEmailIpPools 
    {
        public static Task<GetEmailIpPoolsResult> InvokeAsync(GetEmailIpPoolsArgs args, InvokeOptions? opts = null)
        public static Output<GetEmailIpPoolsResult> Invoke(GetEmailIpPoolsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetEmailIpPoolsResult> getEmailIpPools(GetEmailIpPoolsArgs args, InvokeOptions options)
    public static Output<GetEmailIpPoolsResult> getEmailIpPools(GetEmailIpPoolsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Email/getEmailIpPools:getEmailIpPools
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID for the compartment.
    Filters List<GetEmailIpPoolsFilter>
    Id string
    A filter to only return resources that match the given id exactly.
    Name string
    A filter to only return resources that match the given name exactly.
    State string
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    CompartmentId string
    The OCID for the compartment.
    Filters []GetEmailIpPoolsFilter
    Id string
    A filter to only return resources that match the given id exactly.
    Name string
    A filter to only return resources that match the given name exactly.
    State string
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    compartmentId String
    The OCID for the compartment.
    filters List<GetIpPoolsFilter>
    id String
    A filter to only return resources that match the given id exactly.
    name String
    A filter to only return resources that match the given name exactly.
    state String
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    compartmentId string
    The OCID for the compartment.
    filters GetEmailIpPoolsFilter[]
    id string
    A filter to only return resources that match the given id exactly.
    name string
    A filter to only return resources that match the given name exactly.
    state string
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    compartment_id str
    The OCID for the compartment.
    filters Sequence[GetEmailIpPoolsFilter]
    id str
    A filter to only return resources that match the given id exactly.
    name str
    A filter to only return resources that match the given name exactly.
    state str
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    compartmentId String
    The OCID for the compartment.
    filters List<Property Map>
    id String
    A filter to only return resources that match the given id exactly.
    name String
    A filter to only return resources that match the given name exactly.
    state String
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.

    getEmailIpPools Result

    The following output properties are available:

    CompartmentId string
    The lock compartment ID.
    EmailIpPoolCollections List<GetEmailIpPoolsEmailIpPoolCollection>
    The list of email_ip_pool_collection.
    Filters List<GetEmailIpPoolsFilter>
    Id string
    The unique OCID of the IpPool resource that is immutable on creation.
    Name string
    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
    State string
    The current state of the IpPool.
    CompartmentId string
    The lock compartment ID.
    EmailIpPoolCollections []GetEmailIpPoolsEmailIpPoolCollection
    The list of email_ip_pool_collection.
    Filters []GetEmailIpPoolsFilter
    Id string
    The unique OCID of the IpPool resource that is immutable on creation.
    Name string
    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
    State string
    The current state of the IpPool.
    compartmentId String
    The lock compartment ID.
    emailIpPoolCollections List<GetIpPoolsIpPoolCollection>
    The list of email_ip_pool_collection.
    filters List<GetIpPoolsFilter>
    id String
    The unique OCID of the IpPool resource that is immutable on creation.
    name String
    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
    state String
    The current state of the IpPool.
    compartmentId string
    The lock compartment ID.
    emailIpPoolCollections GetEmailIpPoolsEmailIpPoolCollection[]
    The list of email_ip_pool_collection.
    filters GetEmailIpPoolsFilter[]
    id string
    The unique OCID of the IpPool resource that is immutable on creation.
    name string
    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
    state string
    The current state of the IpPool.
    compartment_id str
    The lock compartment ID.
    email_ip_pool_collections Sequence[GetEmailIpPoolsEmailIpPoolCollection]
    The list of email_ip_pool_collection.
    filters Sequence[GetEmailIpPoolsFilter]
    id str
    The unique OCID of the IpPool resource that is immutable on creation.
    name str
    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
    state str
    The current state of the IpPool.
    compartmentId String
    The lock compartment ID.
    emailIpPoolCollections List<Property Map>
    The list of email_ip_pool_collection.
    filters List<Property Map>
    id String
    The unique OCID of the IpPool resource that is immutable on creation.
    name String
    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
    state String
    The current state of the IpPool.

    Supporting Types

    GetEmailIpPoolsEmailIpPoolCollection

    GetEmailIpPoolsEmailIpPoolCollectionItem

    CompartmentId string
    The OCID for the compartment.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    The description of the IpPool. Avoid entering confidential information.
    FreeformTags Dictionary<string, 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. Example: {"Department": "Finance"}
    Id string
    A filter to only return resources that match the given id exactly.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    Locks List<GetEmailIpPoolsEmailIpPoolCollectionItemLock>
    Locks associated with this resource.
    Name string
    A filter to only return resources that match the given name exactly.
    OutboundIps List<string>
    Summary of outbound IPs assigned to the IpPool.
    OutboundIpsResponses List<GetEmailIpPoolsEmailIpPoolCollectionItemOutboundIpsResponse>
    State string
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    TimeUpdated 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 timestamp format, "YYYY-MM-ddThh:mmZ".
    CompartmentId string
    The OCID for the compartment.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    The description of the IpPool. Avoid entering confidential information.
    FreeformTags map[string]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. Example: {"Department": "Finance"}
    Id string
    A filter to only return resources that match the given id exactly.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    Locks []GetEmailIpPoolsEmailIpPoolCollectionItemLock
    Locks associated with this resource.
    Name string
    A filter to only return resources that match the given name exactly.
    OutboundIps []string
    Summary of outbound IPs assigned to the IpPool.
    OutboundIpsResponses []GetEmailIpPoolsEmailIpPoolCollectionItemOutboundIpsResponse
    State string
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    TimeUpdated 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 timestamp format, "YYYY-MM-ddThh:mmZ".
    compartmentId String
    The OCID for the compartment.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    The description of the IpPool. Avoid entering confidential information.
    freeformTags Map<String,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. Example: {"Department": "Finance"}
    id String
    A filter to only return resources that match the given id exactly.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    locks List<GetIpPoolsIpPoolCollectionItemLock>
    Locks associated with this resource.
    name String
    A filter to only return resources that match the given name exactly.
    outboundIps List<String>
    Summary of outbound IPs assigned to the IpPool.
    outboundIpsResponses List<GetIpPoolsIpPoolCollectionItemOutboundIpsResponse>
    state String
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    timeUpdated 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 timestamp format, "YYYY-MM-ddThh:mmZ".
    compartmentId string
    The OCID for the compartment.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    The description of the IpPool. Avoid entering confidential information.
    freeformTags {[key: string]: 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. Example: {"Department": "Finance"}
    id string
    A filter to only return resources that match the given id exactly.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    locks GetEmailIpPoolsEmailIpPoolCollectionItemLock[]
    Locks associated with this resource.
    name string
    A filter to only return resources that match the given name exactly.
    outboundIps string[]
    Summary of outbound IPs assigned to the IpPool.
    outboundIpsResponses GetEmailIpPoolsEmailIpPoolCollectionItemOutboundIpsResponse[]
    state string
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    timeUpdated 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 timestamp format, "YYYY-MM-ddThh:mmZ".
    compartment_id str
    The OCID for the compartment.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    The description of the IpPool. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    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. Example: {"Department": "Finance"}
    id str
    A filter to only return resources that match the given id exactly.
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    locks Sequence[GetEmailIpPoolsEmailIpPoolCollectionItemLock]
    Locks associated with this resource.
    name str
    A filter to only return resources that match the given name exactly.
    outbound_ips Sequence[str]
    Summary of outbound IPs assigned to the IpPool.
    outbound_ips_responses Sequence[GetEmailIpPoolsEmailIpPoolCollectionItemOutboundIpsResponse]
    state str
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    time_updated str
    The time of the last change to the IpPool, due to a state change or an update operation. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ".
    compartmentId String
    The OCID for the compartment.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    The description of the IpPool. Avoid entering confidential information.
    freeformTags Map<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. Example: {"Department": "Finance"}
    id String
    A filter to only return resources that match the given id exactly.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    locks List<Property Map>
    Locks associated with this resource.
    name String
    A filter to only return resources that match the given name exactly.
    outboundIps List<String>
    Summary of outbound IPs assigned to the IpPool.
    outboundIpsResponses List<Property Map>
    state String
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    timeUpdated 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 timestamp format, "YYYY-MM-ddThh:mmZ".

    GetEmailIpPoolsEmailIpPoolCollectionItemLock

    CompartmentId string
    The OCID for the compartment.
    Message string
    A message added by the lock creator. The message typically gives an indication of why the resource is locked.
    RelatedResourceId string
    The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
    TimeCreated string
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    Type string
    Lock type.
    CompartmentId string
    The OCID for the compartment.
    Message string
    A message added by the lock creator. The message typically gives an indication of why the resource is locked.
    RelatedResourceId string
    The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
    TimeCreated string
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    Type string
    Lock type.
    compartmentId String
    The OCID for the compartment.
    message String
    A message added by the lock creator. The message typically gives an indication of why the resource is locked.
    relatedResourceId String
    The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
    timeCreated String
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    type String
    Lock type.
    compartmentId string
    The OCID for the compartment.
    message string
    A message added by the lock creator. The message typically gives an indication of why the resource is locked.
    relatedResourceId string
    The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
    timeCreated string
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    type string
    Lock type.
    compartment_id str
    The OCID for the compartment.
    message str
    A message added by the lock creator. The message typically gives an indication of why the resource is locked.
    related_resource_id str
    The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
    time_created str
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    type str
    Lock type.
    compartmentId String
    The OCID for the compartment.
    message String
    A message added by the lock creator. The message typically gives an indication of why the resource is locked.
    relatedResourceId String
    The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
    timeCreated String
    The time the IpPool was created. Times are expressed in RFC 3339 timestamp format, "YYYY-MM-ddThh:mmZ". Example: 2021-02-12T22:47:12.613Z
    type String
    Lock type.

    GetEmailIpPoolsEmailIpPoolCollectionItemOutboundIpsResponse

    AssignmentState string
    The assignment state of the public IP address.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    OutboundIp string
    The public IP address assigned to the tenancy.
    State string
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    AssignmentState string
    The assignment state of the public IP address.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    OutboundIp string
    The public IP address assigned to the tenancy.
    State string
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    assignmentState String
    The assignment state of the public IP address.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    outboundIp String
    The public IP address assigned to the tenancy.
    state String
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    assignmentState string
    The assignment state of the public IP address.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    outboundIp string
    The public IP address assigned to the tenancy.
    state string
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    assignment_state str
    The assignment state of the public IP address.
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    outbound_ip str
    The public IP address assigned to the tenancy.
    state str
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.
    assignmentState String
    The assignment state of the public IP address.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'DRAINING' state.
    outboundIp String
    The public IP address assigned to the tenancy.
    state String
    Filter returned list by specified lifecycle state. This parameter is case-insensitive.

    GetEmailIpPoolsFilter

    Name string
    A filter to only return resources that match the given name exactly.
    Values List<string>
    Regex bool
    Name string
    A filter to only return resources that match the given name exactly.
    Values []string
    Regex bool
    name String
    A filter to only return resources that match the given name exactly.
    values List<String>
    regex Boolean
    name string
    A filter to only return resources that match the given name exactly.
    values string[]
    regex boolean
    name str
    A filter to only return resources that match the given name exactly.
    values Sequence[str]
    regex bool
    name String
    A filter to only return resources that match the given name exactly.
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.2.0
    published on Friday, Mar 6, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.