1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. GenerativeAi
  5. getAgentAgentEndpoints
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.GenerativeAi.getAgentAgentEndpoints

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Agent Endpoints in Oracle Cloud Infrastructure Generative Ai Agent service.

ListAgentEndpoints

Gets a list of endpoints.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testAgentEndpoints = oci.GenerativeAi.getAgentAgentEndpoints({
    agentId: testAgent.id,
    compartmentId: compartmentId,
    displayName: agentEndpointDisplayName,
    state: agentEndpointState,
});
Copy
import pulumi
import pulumi_oci as oci

test_agent_endpoints = oci.GenerativeAi.get_agent_agent_endpoints(agent_id=test_agent["id"],
    compartment_id=compartment_id,
    display_name=agent_endpoint_display_name,
    state=agent_endpoint_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/generativeai"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := generativeai.GetAgentAgentEndpoints(ctx, &generativeai.GetAgentAgentEndpointsArgs{
			AgentId:       pulumi.StringRef(testAgent.Id),
			CompartmentId: pulumi.StringRef(compartmentId),
			DisplayName:   pulumi.StringRef(agentEndpointDisplayName),
			State:         pulumi.StringRef(agentEndpointState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testAgentEndpoints = Oci.GenerativeAi.GetAgentAgentEndpoints.Invoke(new()
    {
        AgentId = testAgent.Id,
        CompartmentId = compartmentId,
        DisplayName = agentEndpointDisplayName,
        State = agentEndpointState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.GenerativeAi.GenerativeAiFunctions;
import com.pulumi.oci.GenerativeAi.inputs.GetAgentAgentEndpointsArgs;
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 testAgentEndpoints = GenerativeAiFunctions.getAgentAgentEndpoints(GetAgentAgentEndpointsArgs.builder()
            .agentId(testAgent.id())
            .compartmentId(compartmentId)
            .displayName(agentEndpointDisplayName)
            .state(agentEndpointState)
            .build());

    }
}
Copy
variables:
  testAgentEndpoints:
    fn::invoke:
      function: oci:GenerativeAi:getAgentAgentEndpoints
      arguments:
        agentId: ${testAgent.id}
        compartmentId: ${compartmentId}
        displayName: ${agentEndpointDisplayName}
        state: ${agentEndpointState}
Copy

Using getAgentAgentEndpoints

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 getAgentAgentEndpoints(args: GetAgentAgentEndpointsArgs, opts?: InvokeOptions): Promise<GetAgentAgentEndpointsResult>
function getAgentAgentEndpointsOutput(args: GetAgentAgentEndpointsOutputArgs, opts?: InvokeOptions): Output<GetAgentAgentEndpointsResult>
Copy
def get_agent_agent_endpoints(agent_id: Optional[str] = None,
                              compartment_id: Optional[str] = None,
                              display_name: Optional[str] = None,
                              filters: Optional[Sequence[_generativeai.GetAgentAgentEndpointsFilter]] = None,
                              state: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetAgentAgentEndpointsResult
def get_agent_agent_endpoints_output(agent_id: Optional[pulumi.Input[str]] = None,
                              compartment_id: Optional[pulumi.Input[str]] = None,
                              display_name: Optional[pulumi.Input[str]] = None,
                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[_generativeai.GetAgentAgentEndpointsFilterArgs]]]] = None,
                              state: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetAgentAgentEndpointsResult]
Copy
func GetAgentAgentEndpoints(ctx *Context, args *GetAgentAgentEndpointsArgs, opts ...InvokeOption) (*GetAgentAgentEndpointsResult, error)
func GetAgentAgentEndpointsOutput(ctx *Context, args *GetAgentAgentEndpointsOutputArgs, opts ...InvokeOption) GetAgentAgentEndpointsResultOutput
Copy

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

public static class GetAgentAgentEndpoints 
{
    public static Task<GetAgentAgentEndpointsResult> InvokeAsync(GetAgentAgentEndpointsArgs args, InvokeOptions? opts = null)
    public static Output<GetAgentAgentEndpointsResult> Invoke(GetAgentAgentEndpointsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetAgentAgentEndpointsResult> getAgentAgentEndpoints(GetAgentAgentEndpointsArgs args, InvokeOptions options)
public static Output<GetAgentAgentEndpointsResult> getAgentAgentEndpoints(GetAgentAgentEndpointsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:GenerativeAi/getAgentAgentEndpoints:getAgentAgentEndpoints
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

AgentId string
The OCID of the agent.
CompartmentId string
The OCID of the compartment in which to list resources.
DisplayName string
A filter to return only resources that match the given display name exactly.
Filters Changes to this property will trigger replacement. List<GetAgentAgentEndpointsFilter>
State string
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
AgentId string
The OCID of the agent.
CompartmentId string
The OCID of the compartment in which to list resources.
DisplayName string
A filter to return only resources that match the given display name exactly.
Filters Changes to this property will trigger replacement. []GetAgentAgentEndpointsFilter
State string
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
agentId String
The OCID of the agent.
compartmentId String
The OCID of the compartment in which to list resources.
displayName String
A filter to return only resources that match the given display name exactly.
filters Changes to this property will trigger replacement. List<GetAgentAgentEndpointsFilter>
state String
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
agentId string
The OCID of the agent.
compartmentId string
The OCID of the compartment in which to list resources.
displayName string
A filter to return only resources that match the given display name exactly.
filters Changes to this property will trigger replacement. GetAgentAgentEndpointsFilter[]
state string
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
agent_id str
The OCID of the agent.
compartment_id str
The OCID of the compartment in which to list resources.
display_name str
A filter to return only resources that match the given display name exactly.
filters Changes to this property will trigger replacement. Sequence[generativeai.GetAgentAgentEndpointsFilter]
state str
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
agentId String
The OCID of the agent.
compartmentId String
The OCID of the compartment in which to list resources.
displayName String
A filter to return only resources that match the given display name exactly.
filters Changes to this property will trigger replacement. List<Property Map>
state String
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.

getAgentAgentEndpoints Result

The following output properties are available:

AgentEndpointCollections List<GetAgentAgentEndpointsAgentEndpointCollection>
The list of agent_endpoint_collection.
Id string
The provider-assigned unique ID for this managed resource.
AgentId string
The OCID of the agent that this endpoint is associated with.
CompartmentId string
The OCID of the compartment.
DisplayName string
A user-friendly name. Does not have to be unique, and it's changeable.
Filters List<GetAgentAgentEndpointsFilter>
State string
The current state of the endpoint.
AgentEndpointCollections []GetAgentAgentEndpointsAgentEndpointCollection
The list of agent_endpoint_collection.
Id string
The provider-assigned unique ID for this managed resource.
AgentId string
The OCID of the agent that this endpoint is associated with.
CompartmentId string
The OCID of the compartment.
DisplayName string
A user-friendly name. Does not have to be unique, and it's changeable.
Filters []GetAgentAgentEndpointsFilter
State string
The current state of the endpoint.
agentEndpointCollections List<GetAgentAgentEndpointsAgentEndpointCollection>
The list of agent_endpoint_collection.
id String
The provider-assigned unique ID for this managed resource.
agentId String
The OCID of the agent that this endpoint is associated with.
compartmentId String
The OCID of the compartment.
displayName String
A user-friendly name. Does not have to be unique, and it's changeable.
filters List<GetAgentAgentEndpointsFilter>
state String
The current state of the endpoint.
agentEndpointCollections GetAgentAgentEndpointsAgentEndpointCollection[]
The list of agent_endpoint_collection.
id string
The provider-assigned unique ID for this managed resource.
agentId string
The OCID of the agent that this endpoint is associated with.
compartmentId string
The OCID of the compartment.
displayName string
A user-friendly name. Does not have to be unique, and it's changeable.
filters GetAgentAgentEndpointsFilter[]
state string
The current state of the endpoint.
agent_endpoint_collections Sequence[generativeai.GetAgentAgentEndpointsAgentEndpointCollection]
The list of agent_endpoint_collection.
id str
The provider-assigned unique ID for this managed resource.
agent_id str
The OCID of the agent that this endpoint is associated with.
compartment_id str
The OCID of the compartment.
display_name str
A user-friendly name. Does not have to be unique, and it's changeable.
filters Sequence[generativeai.GetAgentAgentEndpointsFilter]
state str
The current state of the endpoint.
agentEndpointCollections List<Property Map>
The list of agent_endpoint_collection.
id String
The provider-assigned unique ID for this managed resource.
agentId String
The OCID of the agent that this endpoint is associated with.
compartmentId String
The OCID of the compartment.
displayName String
A user-friendly name. Does not have to be unique, and it's changeable.
filters List<Property Map>
state String
The current state of the endpoint.

Supporting Types

GetAgentAgentEndpointsAgentEndpointCollection

items This property is required. List<Property Map>

GetAgentAgentEndpointsAgentEndpointCollectionItem

AgentId This property is required. string
The OCID of the agent.
CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
ContentModerationConfigs This property is required. List<GetAgentAgentEndpointsAgentEndpointCollectionItemContentModerationConfig>
The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
DefinedTags This property is required. 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 This property is required. string
An optional description of the endpoint.
DisplayName This property is required. string
A filter to return only resources that match the given display name exactly.
FreeformTags This property is required. 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 This property is required. string
The OCID of the endpoint.
LifecycleDetails This property is required. string
A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
SessionConfigs This property is required. List<GetAgentAgentEndpointsAgentEndpointCollectionItemSessionConfig>
SessionConfig
ShouldEnableCitation This property is required. bool
Whether to show citations in the chat result.
ShouldEnableSession This property is required. bool
Whether or not to enable Session-based chat.
ShouldEnableTrace This property is required. bool
Whether to show traces in the chat result.
State This property is required. string
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
SystemTags This property is required. Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
TimeUpdated This property is required. string
The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
AgentId This property is required. string
The OCID of the agent.
CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
ContentModerationConfigs This property is required. []GetAgentAgentEndpointsAgentEndpointCollectionItemContentModerationConfig
The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
DefinedTags This property is required. 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 This property is required. string
An optional description of the endpoint.
DisplayName This property is required. string
A filter to return only resources that match the given display name exactly.
FreeformTags This property is required. 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 This property is required. string
The OCID of the endpoint.
LifecycleDetails This property is required. string
A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
SessionConfigs This property is required. []GetAgentAgentEndpointsAgentEndpointCollectionItemSessionConfig
SessionConfig
ShouldEnableCitation This property is required. bool
Whether to show citations in the chat result.
ShouldEnableSession This property is required. bool
Whether or not to enable Session-based chat.
ShouldEnableTrace This property is required. bool
Whether to show traces in the chat result.
State This property is required. string
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
SystemTags This property is required. map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
TimeUpdated This property is required. string
The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
agentId This property is required. String
The OCID of the agent.
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
contentModerationConfigs This property is required. List<GetAgentAgentEndpointsAgentEndpointCollectionItemContentModerationConfig>
The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
definedTags This property is required. 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 This property is required. String
An optional description of the endpoint.
displayName This property is required. String
A filter to return only resources that match the given display name exactly.
freeformTags This property is required. 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 This property is required. String
The OCID of the endpoint.
lifecycleDetails This property is required. String
A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
sessionConfigs This property is required. List<GetAgentAgentEndpointsAgentEndpointCollectionItemSessionConfig>
SessionConfig
shouldEnableCitation This property is required. Boolean
Whether to show citations in the chat result.
shouldEnableSession This property is required. Boolean
Whether or not to enable Session-based chat.
shouldEnableTrace This property is required. Boolean
Whether to show traces in the chat result.
state This property is required. String
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
systemTags This property is required. Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated This property is required. String
The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
agentId This property is required. string
The OCID of the agent.
compartmentId This property is required. string
The OCID of the compartment in which to list resources.
contentModerationConfigs This property is required. GetAgentAgentEndpointsAgentEndpointCollectionItemContentModerationConfig[]
The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
definedTags This property is required. {[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 This property is required. string
An optional description of the endpoint.
displayName This property is required. string
A filter to return only resources that match the given display name exactly.
freeformTags This property is required. {[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 This property is required. string
The OCID of the endpoint.
lifecycleDetails This property is required. string
A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
sessionConfigs This property is required. GetAgentAgentEndpointsAgentEndpointCollectionItemSessionConfig[]
SessionConfig
shouldEnableCitation This property is required. boolean
Whether to show citations in the chat result.
shouldEnableSession This property is required. boolean
Whether or not to enable Session-based chat.
shouldEnableTrace This property is required. boolean
Whether to show traces in the chat result.
state This property is required. string
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
systemTags This property is required. {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated This property is required. string
The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
agent_id This property is required. str
The OCID of the agent.
compartment_id This property is required. str
The OCID of the compartment in which to list resources.
content_moderation_configs This property is required. Sequence[generativeai.GetAgentAgentEndpointsAgentEndpointCollectionItemContentModerationConfig]
The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
defined_tags This property is required. 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 This property is required. str
An optional description of the endpoint.
display_name This property is required. str
A filter to return only resources that match the given display name exactly.
freeform_tags This property is required. 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 This property is required. str
The OCID of the endpoint.
lifecycle_details This property is required. str
A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
session_configs This property is required. Sequence[generativeai.GetAgentAgentEndpointsAgentEndpointCollectionItemSessionConfig]
SessionConfig
should_enable_citation This property is required. bool
Whether to show citations in the chat result.
should_enable_session This property is required. bool
Whether or not to enable Session-based chat.
should_enable_trace This property is required. bool
Whether to show traces in the chat result.
state This property is required. str
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
system_tags This property is required. Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
time_updated This property is required. str
The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
agentId This property is required. String
The OCID of the agent.
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
contentModerationConfigs This property is required. List<Property Map>
The configuration details about whether to apply the content moderation feature to input and output. Content moderation removes toxic and biased content from responses. It is recommended to use content moderation.
definedTags This property is required. 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 This property is required. String
An optional description of the endpoint.
displayName This property is required. String
A filter to return only resources that match the given display name exactly.
freeformTags This property is required. 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 This property is required. String
The OCID of the endpoint.
lifecycleDetails This property is required. String
A message that describes the current state of the endpoint in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
sessionConfigs This property is required. List<Property Map>
SessionConfig
shouldEnableCitation This property is required. Boolean
Whether to show citations in the chat result.
shouldEnableSession This property is required. Boolean
Whether or not to enable Session-based chat.
shouldEnableTrace This property is required. Boolean
Whether to show traces in the chat result.
state This property is required. String
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
systemTags This property is required. Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The date and time the AgentEndpoint was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated This property is required. String
The date and time the endpoint was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

GetAgentAgentEndpointsAgentEndpointCollectionItemContentModerationConfig

ShouldEnableOnInput This property is required. bool
A flag to enable or disable content moderation on input.
ShouldEnableOnOutput This property is required. bool
A flag to enable or disable content moderation on output.
ShouldEnableOnInput This property is required. bool
A flag to enable or disable content moderation on input.
ShouldEnableOnOutput This property is required. bool
A flag to enable or disable content moderation on output.
shouldEnableOnInput This property is required. Boolean
A flag to enable or disable content moderation on input.
shouldEnableOnOutput This property is required. Boolean
A flag to enable or disable content moderation on output.
shouldEnableOnInput This property is required. boolean
A flag to enable or disable content moderation on input.
shouldEnableOnOutput This property is required. boolean
A flag to enable or disable content moderation on output.
should_enable_on_input This property is required. bool
A flag to enable or disable content moderation on input.
should_enable_on_output This property is required. bool
A flag to enable or disable content moderation on output.
shouldEnableOnInput This property is required. Boolean
A flag to enable or disable content moderation on input.
shouldEnableOnOutput This property is required. Boolean
A flag to enable or disable content moderation on output.

GetAgentAgentEndpointsAgentEndpointCollectionItemSessionConfig

IdleTimeoutInSeconds This property is required. int
The session will become inactive after this timeout.
IdleTimeoutInSeconds This property is required. int
The session will become inactive after this timeout.
idleTimeoutInSeconds This property is required. Integer
The session will become inactive after this timeout.
idleTimeoutInSeconds This property is required. number
The session will become inactive after this timeout.
idle_timeout_in_seconds This property is required. int
The session will become inactive after this timeout.
idleTimeoutInSeconds This property is required. Number
The session will become inactive after this timeout.

GetAgentAgentEndpointsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. 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.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi