1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ServiceMesh
  5. getIngressGateways
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

oci.ServiceMesh.getIngressGateways

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

    This data source provides the list of Ingress Gateways in Oracle Cloud Infrastructure Service Mesh service.

    Returns a list of IngressGateway objects.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testIngressGateways = oci.ServiceMesh.getIngressGateways({
        compartmentId: _var.compartment_id,
        id: _var.ingress_gateway_id,
        meshId: oci_service_mesh_mesh.test_mesh.id,
        name: _var.ingress_gateway_name,
        state: _var.ingress_gateway_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_ingress_gateways = oci.ServiceMesh.get_ingress_gateways(compartment_id=var["compartment_id"],
        id=var["ingress_gateway_id"],
        mesh_id=oci_service_mesh_mesh["test_mesh"]["id"],
        name=var["ingress_gateway_name"],
        state=var["ingress_gateway_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/ServiceMesh"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ServiceMesh.GetIngressGateways(ctx, &servicemesh.GetIngressGatewaysArgs{
    			CompartmentId: _var.Compartment_id,
    			Id:            pulumi.StringRef(_var.Ingress_gateway_id),
    			MeshId:        pulumi.StringRef(oci_service_mesh_mesh.Test_mesh.Id),
    			Name:          pulumi.StringRef(_var.Ingress_gateway_name),
    			State:         pulumi.StringRef(_var.Ingress_gateway_state),
    		}, 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 testIngressGateways = Oci.ServiceMesh.GetIngressGateways.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            Id = @var.Ingress_gateway_id,
            MeshId = oci_service_mesh_mesh.Test_mesh.Id,
            Name = @var.Ingress_gateway_name,
            State = @var.Ingress_gateway_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.ServiceMesh.ServiceMeshFunctions;
    import com.pulumi.oci.ServiceMesh.inputs.GetIngressGatewaysArgs;
    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 testIngressGateways = ServiceMeshFunctions.getIngressGateways(GetIngressGatewaysArgs.builder()
                .compartmentId(var_.compartment_id())
                .id(var_.ingress_gateway_id())
                .meshId(oci_service_mesh_mesh.test_mesh().id())
                .name(var_.ingress_gateway_name())
                .state(var_.ingress_gateway_state())
                .build());
    
        }
    }
    
    variables:
      testIngressGateways:
        fn::invoke:
          Function: oci:ServiceMesh:getIngressGateways
          Arguments:
            compartmentId: ${var.compartment_id}
            id: ${var.ingress_gateway_id}
            meshId: ${oci_service_mesh_mesh.test_mesh.id}
            name: ${var.ingress_gateway_name}
            state: ${var.ingress_gateway_state}
    

    Using getIngressGateways

    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 getIngressGateways(args: GetIngressGatewaysArgs, opts?: InvokeOptions): Promise<GetIngressGatewaysResult>
    function getIngressGatewaysOutput(args: GetIngressGatewaysOutputArgs, opts?: InvokeOptions): Output<GetIngressGatewaysResult>
    def get_ingress_gateways(compartment_id: Optional[str] = None,
                             filters: Optional[Sequence[_servicemesh.GetIngressGatewaysFilter]] = None,
                             id: Optional[str] = None,
                             mesh_id: Optional[str] = None,
                             name: Optional[str] = None,
                             state: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetIngressGatewaysResult
    def get_ingress_gateways_output(compartment_id: Optional[pulumi.Input[str]] = None,
                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[_servicemesh.GetIngressGatewaysFilterArgs]]]] = None,
                             id: Optional[pulumi.Input[str]] = None,
                             mesh_id: Optional[pulumi.Input[str]] = None,
                             name: Optional[pulumi.Input[str]] = None,
                             state: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetIngressGatewaysResult]
    func GetIngressGateways(ctx *Context, args *GetIngressGatewaysArgs, opts ...InvokeOption) (*GetIngressGatewaysResult, error)
    func GetIngressGatewaysOutput(ctx *Context, args *GetIngressGatewaysOutputArgs, opts ...InvokeOption) GetIngressGatewaysResultOutput

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

    public static class GetIngressGateways 
    {
        public static Task<GetIngressGatewaysResult> InvokeAsync(GetIngressGatewaysArgs args, InvokeOptions? opts = null)
        public static Output<GetIngressGatewaysResult> Invoke(GetIngressGatewaysInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIngressGatewaysResult> getIngressGateways(GetIngressGatewaysArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:ServiceMesh/getIngressGateways:getIngressGateways
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    Filters List<GetIngressGatewaysFilter>
    Id string
    Unique IngressGateway identifier.
    MeshId string
    Unique Mesh identifier.
    Name string
    A filter to return only resources that match the entire name given.
    State string
    A filter to return only resources that match the life cycle state given.
    CompartmentId string
    The ID of the compartment in which to list resources.
    Filters []GetIngressGatewaysFilter
    Id string
    Unique IngressGateway identifier.
    MeshId string
    Unique Mesh identifier.
    Name string
    A filter to return only resources that match the entire name given.
    State string
    A filter to return only resources that match the life cycle state given.
    compartmentId String
    The ID of the compartment in which to list resources.
    filters List<GetIngressGatewaysFilter>
    id String
    Unique IngressGateway identifier.
    meshId String
    Unique Mesh identifier.
    name String
    A filter to return only resources that match the entire name given.
    state String
    A filter to return only resources that match the life cycle state given.
    compartmentId string
    The ID of the compartment in which to list resources.
    filters GetIngressGatewaysFilter[]
    id string
    Unique IngressGateway identifier.
    meshId string
    Unique Mesh identifier.
    name string
    A filter to return only resources that match the entire name given.
    state string
    A filter to return only resources that match the life cycle state given.
    compartment_id str
    The ID of the compartment in which to list resources.
    filters GetIngressGatewaysFilter]
    id str
    Unique IngressGateway identifier.
    mesh_id str
    Unique Mesh identifier.
    name str
    A filter to return only resources that match the entire name given.
    state str
    A filter to return only resources that match the life cycle state given.
    compartmentId String
    The ID of the compartment in which to list resources.
    filters List<Property Map>
    id String
    Unique IngressGateway identifier.
    meshId String
    Unique Mesh identifier.
    name String
    A filter to return only resources that match the entire name given.
    state String
    A filter to return only resources that match the life cycle state given.

    getIngressGateways Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment.
    IngressGatewayCollections List<GetIngressGatewaysIngressGatewayCollection>
    The list of ingress_gateway_collection.
    Filters List<GetIngressGatewaysFilter>
    Id string
    Unique identifier that is immutable on creation.
    MeshId string
    The OCID of the service mesh in which this ingress gateway is created.
    Name string
    A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
    State string
    The current state of the Resource.
    CompartmentId string
    The OCID of the compartment.
    IngressGatewayCollections []GetIngressGatewaysIngressGatewayCollection
    The list of ingress_gateway_collection.
    Filters []GetIngressGatewaysFilter
    Id string
    Unique identifier that is immutable on creation.
    MeshId string
    The OCID of the service mesh in which this ingress gateway is created.
    Name string
    A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
    State string
    The current state of the Resource.
    compartmentId String
    The OCID of the compartment.
    ingressGatewayCollections List<GetIngressGatewaysIngressGatewayCollection>
    The list of ingress_gateway_collection.
    filters List<GetIngressGatewaysFilter>
    id String
    Unique identifier that is immutable on creation.
    meshId String
    The OCID of the service mesh in which this ingress gateway is created.
    name String
    A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
    state String
    The current state of the Resource.
    compartmentId string
    The OCID of the compartment.
    ingressGatewayCollections GetIngressGatewaysIngressGatewayCollection[]
    The list of ingress_gateway_collection.
    filters GetIngressGatewaysFilter[]
    id string
    Unique identifier that is immutable on creation.
    meshId string
    The OCID of the service mesh in which this ingress gateway is created.
    name string
    A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
    state string
    The current state of the Resource.
    compartment_id str
    The OCID of the compartment.
    ingress_gateway_collections GetIngressGatewaysIngressGatewayCollection]
    The list of ingress_gateway_collection.
    filters GetIngressGatewaysFilter]
    id str
    Unique identifier that is immutable on creation.
    mesh_id str
    The OCID of the service mesh in which this ingress gateway is created.
    name str
    A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
    state str
    The current state of the Resource.
    compartmentId String
    The OCID of the compartment.
    ingressGatewayCollections List<Property Map>
    The list of ingress_gateway_collection.
    filters List<Property Map>
    id String
    Unique identifier that is immutable on creation.
    meshId String
    The OCID of the service mesh in which this ingress gateway is created.
    name String
    A user-friendly name. The name has to be unique within the same service mesh and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
    state String
    The current state of the Resource.

    Supporting Types

    GetIngressGatewaysFilter

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

    GetIngressGatewaysIngressGatewayCollection

    GetIngressGatewaysIngressGatewayCollectionItem

    AccessLoggings List<GetIngressGatewaysIngressGatewayCollectionItemAccessLogging>
    This configuration determines if logging is enabled and where the logs will be output.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Hosts List<GetIngressGatewaysIngressGatewayCollectionItemHost>
    Array of hostnames and their listener configuration that this gateway will bind to.
    Id string
    Unique IngressGateway identifier.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    MeshId string
    Unique Mesh identifier.
    Mtls List<GetIngressGatewaysIngressGatewayCollectionItemMtl>
    Mutual TLS settings used when sending requests to virtual services within the mesh.
    Name string
    A filter to return only resources that match the entire name given.
    State string
    A filter to return only resources that match the life cycle state given.
    SystemTags Dictionary<string, object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time when this resource was created in an RFC3339 formatted datetime string.
    TimeUpdated string
    The time when this resource was updated in an RFC3339 formatted datetime string.
    AccessLoggings []GetIngressGatewaysIngressGatewayCollectionItemAccessLogging
    This configuration determines if logging is enabled and where the logs will be output.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Hosts []GetIngressGatewaysIngressGatewayCollectionItemHost
    Array of hostnames and their listener configuration that this gateway will bind to.
    Id string
    Unique IngressGateway identifier.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    MeshId string
    Unique Mesh identifier.
    Mtls []GetIngressGatewaysIngressGatewayCollectionItemMtl
    Mutual TLS settings used when sending requests to virtual services within the mesh.
    Name string
    A filter to return only resources that match the entire name given.
    State string
    A filter to return only resources that match the life cycle state given.
    SystemTags map[string]interface{}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time when this resource was created in an RFC3339 formatted datetime string.
    TimeUpdated string
    The time when this resource was updated in an RFC3339 formatted datetime string.
    accessLoggings List<GetIngressGatewaysIngressGatewayCollectionItemAccessLogging>
    This configuration determines if logging is enabled and where the logs will be output.
    compartmentId String
    The ID of the compartment in which to list resources.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    hosts List<GetIngressGatewaysIngressGatewayCollectionItemHost>
    Array of hostnames and their listener configuration that this gateway will bind to.
    id String
    Unique IngressGateway identifier.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    meshId String
    Unique Mesh identifier.
    mtls List<GetIngressGatewaysIngressGatewayCollectionItemMtl>
    Mutual TLS settings used when sending requests to virtual services within the mesh.
    name String
    A filter to return only resources that match the entire name given.
    state String
    A filter to return only resources that match the life cycle state given.
    systemTags Map<String,Object>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time when this resource was created in an RFC3339 formatted datetime string.
    timeUpdated String
    The time when this resource was updated in an RFC3339 formatted datetime string.
    accessLoggings GetIngressGatewaysIngressGatewayCollectionItemAccessLogging[]
    This configuration determines if logging is enabled and where the logs will be output.
    compartmentId string
    The ID of the compartment in which to list resources.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    hosts GetIngressGatewaysIngressGatewayCollectionItemHost[]
    Array of hostnames and their listener configuration that this gateway will bind to.
    id string
    Unique IngressGateway identifier.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    meshId string
    Unique Mesh identifier.
    mtls GetIngressGatewaysIngressGatewayCollectionItemMtl[]
    Mutual TLS settings used when sending requests to virtual services within the mesh.
    name string
    A filter to return only resources that match the entire name given.
    state string
    A filter to return only resources that match the life cycle state given.
    systemTags {[key: string]: any}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time when this resource was created in an RFC3339 formatted datetime string.
    timeUpdated string
    The time when this resource was updated in an RFC3339 formatted datetime string.
    access_loggings GetIngressGatewaysIngressGatewayCollectionItemAccessLogging]
    This configuration determines if logging is enabled and where the logs will be output.
    compartment_id str
    The ID of the compartment in which to list resources.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
    freeform_tags Mapping[str, Any]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    hosts GetIngressGatewaysIngressGatewayCollectionItemHost]
    Array of hostnames and their listener configuration that this gateway will bind to.
    id str
    Unique IngressGateway identifier.
    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 a Failed state.
    mesh_id str
    Unique Mesh identifier.
    mtls GetIngressGatewaysIngressGatewayCollectionItemMtl]
    Mutual TLS settings used when sending requests to virtual services within the mesh.
    name str
    A filter to return only resources that match the entire name given.
    state str
    A filter to return only resources that match the life cycle state given.
    system_tags Mapping[str, Any]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The time when this resource was created in an RFC3339 formatted datetime string.
    time_updated str
    The time when this resource was updated in an RFC3339 formatted datetime string.
    accessLoggings List<Property Map>
    This configuration determines if logging is enabled and where the logs will be output.
    compartmentId String
    The ID of the compartment in which to list resources.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    hosts List<Property Map>
    Array of hostnames and their listener configuration that this gateway will bind to.
    id String
    Unique IngressGateway identifier.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.
    meshId String
    Unique Mesh identifier.
    mtls List<Property Map>
    Mutual TLS settings used when sending requests to virtual services within the mesh.
    name String
    A filter to return only resources that match the entire name given.
    state String
    A filter to return only resources that match the life cycle state given.
    systemTags Map<Any>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time when this resource was created in an RFC3339 formatted datetime string.
    timeUpdated String
    The time when this resource was updated in an RFC3339 formatted datetime string.

    GetIngressGatewaysIngressGatewayCollectionItemAccessLogging

    IsEnabled bool
    Determines if the logging configuration is enabled.
    IsEnabled bool
    Determines if the logging configuration is enabled.
    isEnabled Boolean
    Determines if the logging configuration is enabled.
    isEnabled boolean
    Determines if the logging configuration is enabled.
    is_enabled bool
    Determines if the logging configuration is enabled.
    isEnabled Boolean
    Determines if the logging configuration is enabled.

    GetIngressGatewaysIngressGatewayCollectionItemHost

    Hostnames List<string>
    Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
    Listeners List<GetIngressGatewaysIngressGatewayCollectionItemHostListener>
    The listeners for the ingress gateway.
    Name string
    A filter to return only resources that match the entire name given.
    Hostnames []string
    Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
    Listeners []GetIngressGatewaysIngressGatewayCollectionItemHostListener
    The listeners for the ingress gateway.
    Name string
    A filter to return only resources that match the entire name given.
    hostnames List<String>
    Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
    listeners List<GetIngressGatewaysIngressGatewayCollectionItemHostListener>
    The listeners for the ingress gateway.
    name String
    A filter to return only resources that match the entire name given.
    hostnames string[]
    Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
    listeners GetIngressGatewaysIngressGatewayCollectionItemHostListener[]
    The listeners for the ingress gateway.
    name string
    A filter to return only resources that match the entire name given.
    hostnames Sequence[str]
    Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
    listeners GetIngressGatewaysIngressGatewayCollectionItemHostListener]
    The listeners for the ingress gateway.
    name str
    A filter to return only resources that match the entire name given.
    hostnames List<String>
    Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".
    listeners List<Property Map>
    The listeners for the ingress gateway.
    name String
    A filter to return only resources that match the entire name given.

    GetIngressGatewaysIngressGatewayCollectionItemHostListener

    Port int
    Port on which ingress gateway is listening.
    Protocol string
    Type of protocol used.
    Tls List<GetIngressGatewaysIngressGatewayCollectionItemHostListenerTl>
    TLS enforcement config for the ingress listener.
    Port int
    Port on which ingress gateway is listening.
    Protocol string
    Type of protocol used.
    Tls []GetIngressGatewaysIngressGatewayCollectionItemHostListenerTl
    TLS enforcement config for the ingress listener.
    port Integer
    Port on which ingress gateway is listening.
    protocol String
    Type of protocol used.
    tls List<GetIngressGatewaysIngressGatewayCollectionItemHostListenerTl>
    TLS enforcement config for the ingress listener.
    port number
    Port on which ingress gateway is listening.
    protocol string
    Type of protocol used.
    tls GetIngressGatewaysIngressGatewayCollectionItemHostListenerTl[]
    TLS enforcement config for the ingress listener.
    port int
    Port on which ingress gateway is listening.
    protocol str
    Type of protocol used.
    tls GetIngressGatewaysIngressGatewayCollectionItemHostListenerTl]
    TLS enforcement config for the ingress listener.
    port Number
    Port on which ingress gateway is listening.
    protocol String
    Type of protocol used.
    tls List<Property Map>
    TLS enforcement config for the ingress listener.

    GetIngressGatewaysIngressGatewayCollectionItemHostListenerTl

    ClientValidations List<GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidation>
    Resource representing the TLS configuration used for validating client certificates.
    Mode string
    DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
    ServerCertificates List<GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlServerCertificate>
    Resource representing the location of the TLS certificate.
    ClientValidations []GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidation
    Resource representing the TLS configuration used for validating client certificates.
    Mode string
    DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
    ServerCertificates []GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlServerCertificate
    Resource representing the location of the TLS certificate.
    clientValidations List<GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidation>
    Resource representing the TLS configuration used for validating client certificates.
    mode String
    DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
    serverCertificates List<GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlServerCertificate>
    Resource representing the location of the TLS certificate.
    clientValidations GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidation[]
    Resource representing the TLS configuration used for validating client certificates.
    mode string
    DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
    serverCertificates GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlServerCertificate[]
    Resource representing the location of the TLS certificate.
    client_validations GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidation]
    Resource representing the TLS configuration used for validating client certificates.
    mode str
    DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
    server_certificates GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlServerCertificate]
    Resource representing the location of the TLS certificate.
    clientValidations List<Property Map>
    Resource representing the TLS configuration used for validating client certificates.
    mode String
    DISABLED: Connection can only be plaintext. PERMISSIVE: Connection can be either plaintext or TLS/mTLS. If the clientValidation.trustedCaBundle property is configured for the listener, mTLS is performed and the client's certificates are validated by the gateway. TLS: Connection can only be TLS. MUTUAL_TLS: Connection can only be MTLS.
    serverCertificates List<Property Map>
    Resource representing the location of the TLS certificate.

    GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidation

    SubjectAlternateNames List<string>
    A list of alternate names to verify the subject identity in the certificate presented by the client.
    TrustedCaBundles List<GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidationTrustedCaBundle>
    Resource representing the CA bundle.
    SubjectAlternateNames []string
    A list of alternate names to verify the subject identity in the certificate presented by the client.
    TrustedCaBundles []GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidationTrustedCaBundle
    Resource representing the CA bundle.
    subjectAlternateNames List<String>
    A list of alternate names to verify the subject identity in the certificate presented by the client.
    trustedCaBundles List<GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidationTrustedCaBundle>
    Resource representing the CA bundle.
    subjectAlternateNames string[]
    A list of alternate names to verify the subject identity in the certificate presented by the client.
    trustedCaBundles GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidationTrustedCaBundle[]
    Resource representing the CA bundle.
    subject_alternate_names Sequence[str]
    A list of alternate names to verify the subject identity in the certificate presented by the client.
    trusted_ca_bundles GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidationTrustedCaBundle]
    Resource representing the CA bundle.
    subjectAlternateNames List<String>
    A list of alternate names to verify the subject identity in the certificate presented by the client.
    trustedCaBundles List<Property Map>
    Resource representing the CA bundle.

    GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlClientValidationTrustedCaBundle

    CaBundleId string
    The OCID of the CA Bundle resource.
    SecretName string
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    Type string
    Type of certificate.
    CaBundleId string
    The OCID of the CA Bundle resource.
    SecretName string
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    Type string
    Type of certificate.
    caBundleId String
    The OCID of the CA Bundle resource.
    secretName String
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    type String
    Type of certificate.
    caBundleId string
    The OCID of the CA Bundle resource.
    secretName string
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    type string
    Type of certificate.
    ca_bundle_id str
    The OCID of the CA Bundle resource.
    secret_name str
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    type str
    Type of certificate.
    caBundleId String
    The OCID of the CA Bundle resource.
    secretName String
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    type String
    Type of certificate.

    GetIngressGatewaysIngressGatewayCollectionItemHostListenerTlServerCertificate

    CertificateId string
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    SecretName string
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    Type string
    Type of certificate.
    CertificateId string
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    SecretName string
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    Type string
    Type of certificate.
    certificateId String
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    secretName String
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    type String
    Type of certificate.
    certificateId string
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    secretName string
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    type string
    Type of certificate.
    certificate_id str
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    secret_name str
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    type str
    Type of certificate.
    certificateId String
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    secretName String
    Name of the secret. For Kubernetes this is the name of the Kubernetes secret of type tls. For other platforms the secrets must be mounted at: /etc/oci/secrets/${secretName}/tls.{key,crt}
    type String
    Type of certificate.

    GetIngressGatewaysIngressGatewayCollectionItemMtl

    CertificateId string
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    MaximumValidity int
    The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
    CertificateId string
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    MaximumValidity int
    The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
    certificateId String
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    maximumValidity Integer
    The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
    certificateId string
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    maximumValidity number
    The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
    certificate_id str
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    maximum_validity int
    The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.
    certificateId String
    The OCID of the certificate resource that will be used for mTLS authentication with other virtual services in the mesh.
    maximumValidity Number
    The number of days the mTLS certificate is valid. This value should be less than the Maximum Validity Duration for Certificates (Days) setting on the Certificate Authority associated with this Mesh. The certificate will be automatically renewed after 2/3 of the validity period, so a certificate with a maximum validity of 45 days will be renewed every 30 days.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi