1. Packages
  2. Confluent Provider
  3. API Docs
  4. getEndpoint
Confluent v2.57.0 published on Friday, Feb 6, 2026 by Pulumi
confluentcloud logo
Confluent v2.57.0 published on Friday, Feb 6, 2026 by Pulumi

    General Availability

    confluentcloud.getEndpoint describes an Endpoint data source.

    An Endpoint object represents a Fully Qualified Domain Name (FQDN) for a Confluent service resource via a specific networking solution for a given Confluent Cloud environment. Endpoints can be filtered by service, cloud provider, region, etc.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as confluentcloud from "@pulumi/confluentcloud";
    
    const main = confluentcloud.getEndpoint({
        filter: {
            environment: {
                id: "env-123abc",
            },
            service: "KAFKA",
            resource: "lkc-abc123",
            cloud: "AWS",
            region: "us-west-2",
        },
    });
    export const endpoints = main.then(main => main.endpoints);
    
    import pulumi
    import pulumi_confluentcloud as confluentcloud
    
    main = confluentcloud.get_endpoint(filter={
        "environment": {
            "id": "env-123abc",
        },
        "service": "KAFKA",
        "resource": "lkc-abc123",
        "cloud": "AWS",
        "region": "us-west-2",
    })
    pulumi.export("endpoints", main.endpoints)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-confluentcloud/sdk/v2/go/confluentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		main, err := confluentcloud.GetEndpoint(ctx, &confluentcloud.GetEndpointArgs{
    			Filter: confluentcloud.GetEndpointFilter{
    				Environment: confluentcloud.GetEndpointFilterEnvironment{
    					Id: "env-123abc",
    				},
    				Service:  "KAFKA",
    				Resource: pulumi.StringRef("lkc-abc123"),
    				Cloud:    pulumi.StringRef("AWS"),
    				Region:   pulumi.StringRef("us-west-2"),
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("endpoints", main.Endpoints)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using ConfluentCloud = Pulumi.ConfluentCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var main = ConfluentCloud.GetEndpoint.Invoke(new()
        {
            Filter = new ConfluentCloud.Inputs.GetEndpointFilterInputArgs
            {
                Environment = new ConfluentCloud.Inputs.GetEndpointFilterEnvironmentInputArgs
                {
                    Id = "env-123abc",
                },
                Service = "KAFKA",
                Resource = "lkc-abc123",
                Cloud = "AWS",
                Region = "us-west-2",
            },
        });
    
        return new Dictionary<string, object?>
        {
            ["endpoints"] = main.Apply(getEndpointResult => getEndpointResult.Endpoints),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.confluentcloud.ConfluentcloudFunctions;
    import com.pulumi.confluentcloud.inputs.GetEndpointArgs;
    import com.pulumi.confluentcloud.inputs.GetEndpointFilterArgs;
    import com.pulumi.confluentcloud.inputs.GetEndpointFilterEnvironmentArgs;
    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 main = ConfluentcloudFunctions.getEndpoint(GetEndpointArgs.builder()
                .filter(GetEndpointFilterArgs.builder()
                    .environment(GetEndpointFilterEnvironmentArgs.builder()
                        .id("env-123abc")
                        .build())
                    .service("KAFKA")
                    .resource("lkc-abc123")
                    .cloud("AWS")
                    .region("us-west-2")
                    .build())
                .build());
    
            ctx.export("endpoints", main.endpoints());
        }
    }
    
    variables:
      main:
        fn::invoke:
          function: confluentcloud:getEndpoint
          arguments:
            filter:
              environment:
                id: env-123abc
              service: KAFKA
              resource: lkc-abc123
              cloud: AWS
              region: us-west-2
    outputs:
      endpoints: ${main.endpoints}
    

    Using getEndpoint

    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 getEndpoint(args: GetEndpointArgs, opts?: InvokeOptions): Promise<GetEndpointResult>
    function getEndpointOutput(args: GetEndpointOutputArgs, opts?: InvokeOptions): Output<GetEndpointResult>
    def get_endpoint(filter: Optional[GetEndpointFilter] = None,
                     opts: Optional[InvokeOptions] = None) -> GetEndpointResult
    def get_endpoint_output(filter: Optional[pulumi.Input[GetEndpointFilterArgs]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetEndpointResult]
    func GetEndpoint(ctx *Context, args *GetEndpointArgs, opts ...InvokeOption) (*GetEndpointResult, error)
    func GetEndpointOutput(ctx *Context, args *GetEndpointOutputArgs, opts ...InvokeOption) GetEndpointResultOutput

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

    public static class GetEndpoint 
    {
        public static Task<GetEndpointResult> InvokeAsync(GetEndpointArgs args, InvokeOptions? opts = null)
        public static Output<GetEndpointResult> Invoke(GetEndpointInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetEndpointResult> getEndpoint(GetEndpointArgs args, InvokeOptions options)
    public static Output<GetEndpointResult> getEndpoint(GetEndpointArgs args, InvokeOptions options)
    
    fn::invoke:
      function: confluentcloud:index/getEndpoint:getEndpoint
      arguments:
        # arguments dictionary

    The following arguments are supported:

    getEndpoint Result

    The following output properties are available:

    Endpoints List<Pulumi.ConfluentCloud.Outputs.GetEndpointEndpoint>
    (Computed List) List of endpoints matching the filter criteria. Each endpoint object contains:
    Filter Pulumi.ConfluentCloud.Outputs.GetEndpointFilter
    Id string
    The provider-assigned unique ID for this managed resource.
    Endpoints []GetEndpointEndpoint
    (Computed List) List of endpoints matching the filter criteria. Each endpoint object contains:
    Filter GetEndpointFilter
    Id string
    The provider-assigned unique ID for this managed resource.
    endpoints List<GetEndpointEndpoint>
    (Computed List) List of endpoints matching the filter criteria. Each endpoint object contains:
    filter GetEndpointFilter
    id String
    The provider-assigned unique ID for this managed resource.
    endpoints GetEndpointEndpoint[]
    (Computed List) List of endpoints matching the filter criteria. Each endpoint object contains:
    filter GetEndpointFilter
    id string
    The provider-assigned unique ID for this managed resource.
    endpoints Sequence[GetEndpointEndpoint]
    (Computed List) List of endpoints matching the filter criteria. Each endpoint object contains:
    filter GetEndpointFilter
    id str
    The provider-assigned unique ID for this managed resource.
    endpoints List<Property Map>
    (Computed List) List of endpoints matching the filter criteria. Each endpoint object contains:
    filter Property Map
    id String
    The provider-assigned unique ID for this managed resource.

    Supporting Types

    GetEndpointEndpoint

    AccessPoints List<Pulumi.ConfluentCloud.Inputs.GetEndpointEndpointAccessPoint>
    (Computed Configuration Block) supports the following:
    ApiVersion string
    (Computed String) API Version defines the schema version of this representation of an Endpoint.
    Cloud string
    (Computed String) The cloud service provider.
    ConnectionType string
    (Computed String) The network connection type. Accepted values are: PUBLIC, PRIVATE_LINK, PEERING, TRANSIT_GATEWAY, PRIVATE_NETWORK_INTERFACE.
    Endpoint string
    (Computed String) The endpoint URL or address, for example, https://lkc-abc123-ap12345.us-west-2.aws.accesspoint.glb.confluent.cloud:443.
    EndpointType string
    (Computed String) The endpoint type enum values:

    • REST - REST API endpoint for HTTP/HTTPS access, used by Kafka/Flink/Schema Registry services.
    • BOOTSTRAP - Kafka native protocol bootstrap servers for direct client connections, used by Kafka only.
    • LANGUAGE_SERVICE - Flink language service endpoint for SQL/Table API, used by Flink only.
    Environment Pulumi.ConfluentCloud.Inputs.GetEndpointEndpointEnvironment
    (Computed Configuration Block) supports the following:
    Gateways List<Pulumi.ConfluentCloud.Inputs.GetEndpointEndpointGateway>
    (Computed Configuration Block) supports the following:
    Id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    IsPrivate bool
    (Computed Boolean) Whether the endpoint is private (true) or public (false).
    Kind string
    (Computed String) The kind of the resource.
    Region string
    (Computed String) The cloud service provider region in which the resource is located.
    Resources List<Pulumi.ConfluentCloud.Inputs.GetEndpointEndpointResource>
    (Computed Configuration Block) supports the following:
    Service string
    (Computed String) The Confluent Cloud service.
    AccessPoints []GetEndpointEndpointAccessPoint
    (Computed Configuration Block) supports the following:
    ApiVersion string
    (Computed String) API Version defines the schema version of this representation of an Endpoint.
    Cloud string
    (Computed String) The cloud service provider.
    ConnectionType string
    (Computed String) The network connection type. Accepted values are: PUBLIC, PRIVATE_LINK, PEERING, TRANSIT_GATEWAY, PRIVATE_NETWORK_INTERFACE.
    Endpoint string
    (Computed String) The endpoint URL or address, for example, https://lkc-abc123-ap12345.us-west-2.aws.accesspoint.glb.confluent.cloud:443.
    EndpointType string
    (Computed String) The endpoint type enum values:

    • REST - REST API endpoint for HTTP/HTTPS access, used by Kafka/Flink/Schema Registry services.
    • BOOTSTRAP - Kafka native protocol bootstrap servers for direct client connections, used by Kafka only.
    • LANGUAGE_SERVICE - Flink language service endpoint for SQL/Table API, used by Flink only.
    Environment GetEndpointEndpointEnvironment
    (Computed Configuration Block) supports the following:
    Gateways []GetEndpointEndpointGateway
    (Computed Configuration Block) supports the following:
    Id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    IsPrivate bool
    (Computed Boolean) Whether the endpoint is private (true) or public (false).
    Kind string
    (Computed String) The kind of the resource.
    Region string
    (Computed String) The cloud service provider region in which the resource is located.
    Resources []GetEndpointEndpointResource
    (Computed Configuration Block) supports the following:
    Service string
    (Computed String) The Confluent Cloud service.
    accessPoints List<GetEndpointEndpointAccessPoint>
    (Computed Configuration Block) supports the following:
    apiVersion String
    (Computed String) API Version defines the schema version of this representation of an Endpoint.
    cloud String
    (Computed String) The cloud service provider.
    connectionType String
    (Computed String) The network connection type. Accepted values are: PUBLIC, PRIVATE_LINK, PEERING, TRANSIT_GATEWAY, PRIVATE_NETWORK_INTERFACE.
    endpoint String
    (Computed String) The endpoint URL or address, for example, https://lkc-abc123-ap12345.us-west-2.aws.accesspoint.glb.confluent.cloud:443.
    endpointType String
    (Computed String) The endpoint type enum values:

    • REST - REST API endpoint for HTTP/HTTPS access, used by Kafka/Flink/Schema Registry services.
    • BOOTSTRAP - Kafka native protocol bootstrap servers for direct client connections, used by Kafka only.
    • LANGUAGE_SERVICE - Flink language service endpoint for SQL/Table API, used by Flink only.
    environment GetEndpointEndpointEnvironment
    (Computed Configuration Block) supports the following:
    gateways List<GetEndpointEndpointGateway>
    (Computed Configuration Block) supports the following:
    id String
    (Computed String) The ID of the access point to which the Endpoint belongs.
    isPrivate Boolean
    (Computed Boolean) Whether the endpoint is private (true) or public (false).
    kind String
    (Computed String) The kind of the resource.
    region String
    (Computed String) The cloud service provider region in which the resource is located.
    resources List<GetEndpointEndpointResource>
    (Computed Configuration Block) supports the following:
    service String
    (Computed String) The Confluent Cloud service.
    accessPoints GetEndpointEndpointAccessPoint[]
    (Computed Configuration Block) supports the following:
    apiVersion string
    (Computed String) API Version defines the schema version of this representation of an Endpoint.
    cloud string
    (Computed String) The cloud service provider.
    connectionType string
    (Computed String) The network connection type. Accepted values are: PUBLIC, PRIVATE_LINK, PEERING, TRANSIT_GATEWAY, PRIVATE_NETWORK_INTERFACE.
    endpoint string
    (Computed String) The endpoint URL or address, for example, https://lkc-abc123-ap12345.us-west-2.aws.accesspoint.glb.confluent.cloud:443.
    endpointType string
    (Computed String) The endpoint type enum values:

    • REST - REST API endpoint for HTTP/HTTPS access, used by Kafka/Flink/Schema Registry services.
    • BOOTSTRAP - Kafka native protocol bootstrap servers for direct client connections, used by Kafka only.
    • LANGUAGE_SERVICE - Flink language service endpoint for SQL/Table API, used by Flink only.
    environment GetEndpointEndpointEnvironment
    (Computed Configuration Block) supports the following:
    gateways GetEndpointEndpointGateway[]
    (Computed Configuration Block) supports the following:
    id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    isPrivate boolean
    (Computed Boolean) Whether the endpoint is private (true) or public (false).
    kind string
    (Computed String) The kind of the resource.
    region string
    (Computed String) The cloud service provider region in which the resource is located.
    resources GetEndpointEndpointResource[]
    (Computed Configuration Block) supports the following:
    service string
    (Computed String) The Confluent Cloud service.
    access_points Sequence[GetEndpointEndpointAccessPoint]
    (Computed Configuration Block) supports the following:
    api_version str
    (Computed String) API Version defines the schema version of this representation of an Endpoint.
    cloud str
    (Computed String) The cloud service provider.
    connection_type str
    (Computed String) The network connection type. Accepted values are: PUBLIC, PRIVATE_LINK, PEERING, TRANSIT_GATEWAY, PRIVATE_NETWORK_INTERFACE.
    endpoint str
    (Computed String) The endpoint URL or address, for example, https://lkc-abc123-ap12345.us-west-2.aws.accesspoint.glb.confluent.cloud:443.
    endpoint_type str
    (Computed String) The endpoint type enum values:

    • REST - REST API endpoint for HTTP/HTTPS access, used by Kafka/Flink/Schema Registry services.
    • BOOTSTRAP - Kafka native protocol bootstrap servers for direct client connections, used by Kafka only.
    • LANGUAGE_SERVICE - Flink language service endpoint for SQL/Table API, used by Flink only.
    environment GetEndpointEndpointEnvironment
    (Computed Configuration Block) supports the following:
    gateways Sequence[GetEndpointEndpointGateway]
    (Computed Configuration Block) supports the following:
    id str
    (Computed String) The ID of the access point to which the Endpoint belongs.
    is_private bool
    (Computed Boolean) Whether the endpoint is private (true) or public (false).
    kind str
    (Computed String) The kind of the resource.
    region str
    (Computed String) The cloud service provider region in which the resource is located.
    resources Sequence[GetEndpointEndpointResource]
    (Computed Configuration Block) supports the following:
    service str
    (Computed String) The Confluent Cloud service.
    accessPoints List<Property Map>
    (Computed Configuration Block) supports the following:
    apiVersion String
    (Computed String) API Version defines the schema version of this representation of an Endpoint.
    cloud String
    (Computed String) The cloud service provider.
    connectionType String
    (Computed String) The network connection type. Accepted values are: PUBLIC, PRIVATE_LINK, PEERING, TRANSIT_GATEWAY, PRIVATE_NETWORK_INTERFACE.
    endpoint String
    (Computed String) The endpoint URL or address, for example, https://lkc-abc123-ap12345.us-west-2.aws.accesspoint.glb.confluent.cloud:443.
    endpointType String
    (Computed String) The endpoint type enum values:

    • REST - REST API endpoint for HTTP/HTTPS access, used by Kafka/Flink/Schema Registry services.
    • BOOTSTRAP - Kafka native protocol bootstrap servers for direct client connections, used by Kafka only.
    • LANGUAGE_SERVICE - Flink language service endpoint for SQL/Table API, used by Flink only.
    environment Property Map
    (Computed Configuration Block) supports the following:
    gateways List<Property Map>
    (Computed Configuration Block) supports the following:
    id String
    (Computed String) The ID of the access point to which the Endpoint belongs.
    isPrivate Boolean
    (Computed Boolean) Whether the endpoint is private (true) or public (false).
    kind String
    (Computed String) The kind of the resource.
    region String
    (Computed String) The cloud service provider region in which the resource is located.
    resources List<Property Map>
    (Computed Configuration Block) supports the following:
    service String
    (Computed String) The Confluent Cloud service.

    GetEndpointEndpointAccessPoint

    Id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    Id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id String
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id str
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id String
    (Computed String) The ID of the access point to which the Endpoint belongs.

    GetEndpointEndpointEnvironment

    Id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    Id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id String
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id str
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id String
    (Computed String) The ID of the access point to which the Endpoint belongs.

    GetEndpointEndpointGateway

    Id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    Id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id String
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id str
    (Computed String) The ID of the access point to which the Endpoint belongs.
    id String
    (Computed String) The ID of the access point to which the Endpoint belongs.

    GetEndpointEndpointResource

    Id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    Kind string
    (Computed String) The kind of the resource.
    Id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    Kind string
    (Computed String) The kind of the resource.
    id String
    (Computed String) The ID of the access point to which the Endpoint belongs.
    kind String
    (Computed String) The kind of the resource.
    id string
    (Computed String) The ID of the access point to which the Endpoint belongs.
    kind string
    (Computed String) The kind of the resource.
    id str
    (Computed String) The ID of the access point to which the Endpoint belongs.
    kind str
    (Computed String) The kind of the resource.
    id String
    (Computed String) The ID of the access point to which the Endpoint belongs.
    kind String
    (Computed String) The kind of the resource.

    GetEndpointFilter

    Environment Pulumi.ConfluentCloud.Inputs.GetEndpointFilterEnvironment
    (Computed Configuration Block) supports the following:
    Service string
    The Confluent Cloud service. Accepted values are: KAFKA, SCHEMA_REGISTRY, FLINK.
    Cloud string
    The cloud service provider. Accepted values are: AWS, GCP, AZURE.
    IsPrivate bool
    Whether the endpoint is private (true) or public (false).
    Region string
    The cloud service provider region in which the resource is located, for example, us-west-2.
    Resource string
    The resource associated with the endpoint. The resource can be one of Kafka Cluster ID (example: lkc-12345), or Schema Registry Cluster ID (example: lsrc-12345). May be omitted if not associated with a resource.
    Environment GetEndpointFilterEnvironment
    (Computed Configuration Block) supports the following:
    Service string
    The Confluent Cloud service. Accepted values are: KAFKA, SCHEMA_REGISTRY, FLINK.
    Cloud string
    The cloud service provider. Accepted values are: AWS, GCP, AZURE.
    IsPrivate bool
    Whether the endpoint is private (true) or public (false).
    Region string
    The cloud service provider region in which the resource is located, for example, us-west-2.
    Resource string
    The resource associated with the endpoint. The resource can be one of Kafka Cluster ID (example: lkc-12345), or Schema Registry Cluster ID (example: lsrc-12345). May be omitted if not associated with a resource.
    environment GetEndpointFilterEnvironment
    (Computed Configuration Block) supports the following:
    service String
    The Confluent Cloud service. Accepted values are: KAFKA, SCHEMA_REGISTRY, FLINK.
    cloud String
    The cloud service provider. Accepted values are: AWS, GCP, AZURE.
    isPrivate Boolean
    Whether the endpoint is private (true) or public (false).
    region String
    The cloud service provider region in which the resource is located, for example, us-west-2.
    resource String
    The resource associated with the endpoint. The resource can be one of Kafka Cluster ID (example: lkc-12345), or Schema Registry Cluster ID (example: lsrc-12345). May be omitted if not associated with a resource.
    environment GetEndpointFilterEnvironment
    (Computed Configuration Block) supports the following:
    service string
    The Confluent Cloud service. Accepted values are: KAFKA, SCHEMA_REGISTRY, FLINK.
    cloud string
    The cloud service provider. Accepted values are: AWS, GCP, AZURE.
    isPrivate boolean
    Whether the endpoint is private (true) or public (false).
    region string
    The cloud service provider region in which the resource is located, for example, us-west-2.
    resource string
    The resource associated with the endpoint. The resource can be one of Kafka Cluster ID (example: lkc-12345), or Schema Registry Cluster ID (example: lsrc-12345). May be omitted if not associated with a resource.
    environment GetEndpointFilterEnvironment
    (Computed Configuration Block) supports the following:
    service str
    The Confluent Cloud service. Accepted values are: KAFKA, SCHEMA_REGISTRY, FLINK.
    cloud str
    The cloud service provider. Accepted values are: AWS, GCP, AZURE.
    is_private bool
    Whether the endpoint is private (true) or public (false).
    region str
    The cloud service provider region in which the resource is located, for example, us-west-2.
    resource str
    The resource associated with the endpoint. The resource can be one of Kafka Cluster ID (example: lkc-12345), or Schema Registry Cluster ID (example: lsrc-12345). May be omitted if not associated with a resource.
    environment Property Map
    (Computed Configuration Block) supports the following:
    service String
    The Confluent Cloud service. Accepted values are: KAFKA, SCHEMA_REGISTRY, FLINK.
    cloud String
    The cloud service provider. Accepted values are: AWS, GCP, AZURE.
    isPrivate Boolean
    Whether the endpoint is private (true) or public (false).
    region String
    The cloud service provider region in which the resource is located, for example, us-west-2.
    resource String
    The resource associated with the endpoint. The resource can be one of Kafka Cluster ID (example: lkc-12345), or Schema Registry Cluster ID (example: lsrc-12345). May be omitted if not associated with a resource.

    GetEndpointFilterEnvironment

    Id string
    The ID of the Environment that the Endpoint belongs to, for example, env-123abc.
    Id string
    The ID of the Environment that the Endpoint belongs to, for example, env-123abc.
    id String
    The ID of the Environment that the Endpoint belongs to, for example, env-123abc.
    id string
    The ID of the Environment that the Endpoint belongs to, for example, env-123abc.
    id str
    The ID of the Environment that the Endpoint belongs to, for example, env-123abc.
    id String
    The ID of the Environment that the Endpoint belongs to, for example, env-123abc.

    Package Details

    Repository
    Confluent Cloud pulumi/pulumi-confluentcloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the confluent Terraform Provider.
    confluentcloud logo
    Confluent v2.57.0 published on Friday, Feb 6, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate