1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ServiceMesh
  5. getVirtualDeployments
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

oci.ServiceMesh.getVirtualDeployments

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

This data source provides the list of Virtual Deployments in Oracle Cloud Infrastructure Service Mesh service.

Returns a list of VirtualDeployments.

Example Usage

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

const testVirtualDeployments = oci.ServiceMesh.getVirtualDeployments({
    compartmentId: compartmentId,
    id: virtualDeploymentId,
    name: virtualDeploymentName,
    state: virtualDeploymentState,
    virtualServiceId: testVirtualService.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_virtual_deployments = oci.ServiceMesh.get_virtual_deployments(compartment_id=compartment_id,
    id=virtual_deployment_id,
    name=virtual_deployment_name,
    state=virtual_deployment_state,
    virtual_service_id=test_virtual_service["id"])
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := servicemesh.GetVirtualDeployments(ctx, &servicemesh.GetVirtualDeploymentsArgs{
			CompartmentId:    compartmentId,
			Id:               pulumi.StringRef(virtualDeploymentId),
			Name:             pulumi.StringRef(virtualDeploymentName),
			State:            pulumi.StringRef(virtualDeploymentState),
			VirtualServiceId: pulumi.StringRef(testVirtualService.Id),
		}, 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 testVirtualDeployments = Oci.ServiceMesh.GetVirtualDeployments.Invoke(new()
    {
        CompartmentId = compartmentId,
        Id = virtualDeploymentId,
        Name = virtualDeploymentName,
        State = virtualDeploymentState,
        VirtualServiceId = testVirtualService.Id,
    });

});
Copy
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.GetVirtualDeploymentsArgs;
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 testVirtualDeployments = ServiceMeshFunctions.getVirtualDeployments(GetVirtualDeploymentsArgs.builder()
            .compartmentId(compartmentId)
            .id(virtualDeploymentId)
            .name(virtualDeploymentName)
            .state(virtualDeploymentState)
            .virtualServiceId(testVirtualService.id())
            .build());

    }
}
Copy
variables:
  testVirtualDeployments:
    fn::invoke:
      function: oci:ServiceMesh:getVirtualDeployments
      arguments:
        compartmentId: ${compartmentId}
        id: ${virtualDeploymentId}
        name: ${virtualDeploymentName}
        state: ${virtualDeploymentState}
        virtualServiceId: ${testVirtualService.id}
Copy

Using getVirtualDeployments

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 getVirtualDeployments(args: GetVirtualDeploymentsArgs, opts?: InvokeOptions): Promise<GetVirtualDeploymentsResult>
function getVirtualDeploymentsOutput(args: GetVirtualDeploymentsOutputArgs, opts?: InvokeOptions): Output<GetVirtualDeploymentsResult>
Copy
def get_virtual_deployments(compartment_id: Optional[str] = None,
                            filters: Optional[Sequence[_servicemesh.GetVirtualDeploymentsFilter]] = None,
                            id: Optional[str] = None,
                            name: Optional[str] = None,
                            state: Optional[str] = None,
                            virtual_service_id: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetVirtualDeploymentsResult
def get_virtual_deployments_output(compartment_id: Optional[pulumi.Input[str]] = None,
                            filters: Optional[pulumi.Input[Sequence[pulumi.Input[_servicemesh.GetVirtualDeploymentsFilterArgs]]]] = None,
                            id: Optional[pulumi.Input[str]] = None,
                            name: Optional[pulumi.Input[str]] = None,
                            state: Optional[pulumi.Input[str]] = None,
                            virtual_service_id: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetVirtualDeploymentsResult]
Copy
func GetVirtualDeployments(ctx *Context, args *GetVirtualDeploymentsArgs, opts ...InvokeOption) (*GetVirtualDeploymentsResult, error)
func GetVirtualDeploymentsOutput(ctx *Context, args *GetVirtualDeploymentsOutputArgs, opts ...InvokeOption) GetVirtualDeploymentsResultOutput
Copy

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

public static class GetVirtualDeployments 
{
    public static Task<GetVirtualDeploymentsResult> InvokeAsync(GetVirtualDeploymentsArgs args, InvokeOptions? opts = null)
    public static Output<GetVirtualDeploymentsResult> Invoke(GetVirtualDeploymentsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetVirtualDeploymentsResult> getVirtualDeployments(GetVirtualDeploymentsArgs args, InvokeOptions options)
public static Output<GetVirtualDeploymentsResult> getVirtualDeployments(GetVirtualDeploymentsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:ServiceMesh/getVirtualDeployments:getVirtualDeployments
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Filters Changes to this property will trigger replacement. List<GetVirtualDeploymentsFilter>
Id string
Unique VirtualDeployment 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.
VirtualServiceId string
Unique VirtualService identifier.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Filters Changes to this property will trigger replacement. []GetVirtualDeploymentsFilter
Id string
Unique VirtualDeployment 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.
VirtualServiceId string
Unique VirtualService identifier.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
filters Changes to this property will trigger replacement. List<GetVirtualDeploymentsFilter>
id String
Unique VirtualDeployment 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.
virtualServiceId String
Unique VirtualService identifier.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
filters Changes to this property will trigger replacement. GetVirtualDeploymentsFilter[]
id string
Unique VirtualDeployment 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.
virtualServiceId string
Unique VirtualService identifier.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
filters Changes to this property will trigger replacement. Sequence[servicemesh.GetVirtualDeploymentsFilter]
id str
Unique VirtualDeployment 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.
virtual_service_id str
Unique VirtualService identifier.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
filters Changes to this property will trigger replacement. List<Property Map>
id String
Unique VirtualDeployment 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.
virtualServiceId String
Unique VirtualService identifier.

getVirtualDeployments Result

The following output properties are available:

CompartmentId string
The OCID of the compartment.
VirtualDeploymentCollections List<GetVirtualDeploymentsVirtualDeploymentCollection>
The list of virtual_deployment_collection.
Filters List<GetVirtualDeploymentsFilter>
Id string
Unique identifier that is immutable on creation.
Name string
A user-friendly name. The name must be unique within the same virtual service and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
State string
The current state of the Resource.
VirtualServiceId string
The OCID of the virtual service in which this virtual deployment is created.
CompartmentId string
The OCID of the compartment.
VirtualDeploymentCollections []GetVirtualDeploymentsVirtualDeploymentCollection
The list of virtual_deployment_collection.
Filters []GetVirtualDeploymentsFilter
Id string
Unique identifier that is immutable on creation.
Name string
A user-friendly name. The name must be unique within the same virtual service and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
State string
The current state of the Resource.
VirtualServiceId string
The OCID of the virtual service in which this virtual deployment is created.
compartmentId String
The OCID of the compartment.
virtualDeploymentCollections List<GetVirtualDeploymentsVirtualDeploymentCollection>
The list of virtual_deployment_collection.
filters List<GetVirtualDeploymentsFilter>
id String
Unique identifier that is immutable on creation.
name String
A user-friendly name. The name must be unique within the same virtual service and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
state String
The current state of the Resource.
virtualServiceId String
The OCID of the virtual service in which this virtual deployment is created.
compartmentId string
The OCID of the compartment.
virtualDeploymentCollections GetVirtualDeploymentsVirtualDeploymentCollection[]
The list of virtual_deployment_collection.
filters GetVirtualDeploymentsFilter[]
id string
Unique identifier that is immutable on creation.
name string
A user-friendly name. The name must be unique within the same virtual service and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
state string
The current state of the Resource.
virtualServiceId string
The OCID of the virtual service in which this virtual deployment is created.
compartment_id str
The OCID of the compartment.
virtual_deployment_collections Sequence[servicemesh.GetVirtualDeploymentsVirtualDeploymentCollection]
The list of virtual_deployment_collection.
filters Sequence[servicemesh.GetVirtualDeploymentsFilter]
id str
Unique identifier that is immutable on creation.
name str
A user-friendly name. The name must be unique within the same virtual service and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
state str
The current state of the Resource.
virtual_service_id str
The OCID of the virtual service in which this virtual deployment is created.
compartmentId String
The OCID of the compartment.
virtualDeploymentCollections List<Property Map>
The list of virtual_deployment_collection.
filters List<Property Map>
id String
Unique identifier that is immutable on creation.
name String
A user-friendly name. The name must be unique within the same virtual service and cannot be changed after creation. Avoid entering confidential information. Example: My unique resource name
state String
The current state of the Resource.
virtualServiceId String
The OCID of the virtual service in which this virtual deployment is created.

Supporting Types

GetVirtualDeploymentsFilter

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

GetVirtualDeploymentsVirtualDeploymentCollection

items This property is required. List<Property Map>

GetVirtualDeploymentsVirtualDeploymentCollectionItem

AccessLoggings This property is required. List<GetVirtualDeploymentsVirtualDeploymentCollectionItemAccessLogging>
This configuration determines if logging is enabled and where the logs will be output.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
FreeformTags This property is required. Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
Unique VirtualDeployment identifier.
LifecycleDetails This property is required. 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.
Listeners This property is required. List<GetVirtualDeploymentsVirtualDeploymentCollectionItemListener>
The listeners for the virtual deployment
Name This property is required. string
A filter to return only resources that match the entire name given.
ServiceDiscoveries This property is required. List<GetVirtualDeploymentsVirtualDeploymentCollectionItemServiceDiscovery>
Service Discovery configuration for virtual deployments.
State This property is required. string
A filter to return only resources that match the life cycle state given.
SystemTags This property is required. Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time when this resource was created in an RFC3339 formatted datetime string.
TimeUpdated This property is required. string
The time when this resource was updated in an RFC3339 formatted datetime string.
VirtualServiceId This property is required. string
Unique VirtualService identifier.
AccessLoggings This property is required. []GetVirtualDeploymentsVirtualDeploymentCollectionItemAccessLogging
This configuration determines if logging is enabled and where the logs will be output.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
FreeformTags This property is required. map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
Unique VirtualDeployment identifier.
LifecycleDetails This property is required. 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.
Listeners This property is required. []GetVirtualDeploymentsVirtualDeploymentCollectionItemListener
The listeners for the virtual deployment
Name This property is required. string
A filter to return only resources that match the entire name given.
ServiceDiscoveries This property is required. []GetVirtualDeploymentsVirtualDeploymentCollectionItemServiceDiscovery
Service Discovery configuration for virtual deployments.
State This property is required. string
A filter to return only resources that match the life cycle state given.
SystemTags This property is required. map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time when this resource was created in an RFC3339 formatted datetime string.
TimeUpdated This property is required. string
The time when this resource was updated in an RFC3339 formatted datetime string.
VirtualServiceId This property is required. string
Unique VirtualService identifier.
accessLoggings This property is required. List<GetVirtualDeploymentsVirtualDeploymentCollectionItemAccessLogging>
This configuration determines if logging is enabled and where the logs will be output.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
freeformTags This property is required. Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
Unique VirtualDeployment identifier.
lifecycleDetails This property is required. 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.
listeners This property is required. List<GetVirtualDeploymentsVirtualDeploymentCollectionItemListener>
The listeners for the virtual deployment
name This property is required. String
A filter to return only resources that match the entire name given.
serviceDiscoveries This property is required. List<GetVirtualDeploymentsVirtualDeploymentCollectionItemServiceDiscovery>
Service Discovery configuration for virtual deployments.
state This property is required. String
A filter to return only resources that match the life cycle state given.
systemTags This property is required. Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time when this resource was created in an RFC3339 formatted datetime string.
timeUpdated This property is required. String
The time when this resource was updated in an RFC3339 formatted datetime string.
virtualServiceId This property is required. String
Unique VirtualService identifier.
accessLoggings This property is required. GetVirtualDeploymentsVirtualDeploymentCollectionItemAccessLogging[]
This configuration determines if logging is enabled and where the logs will be output.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. string
Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
freeformTags This property is required. {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. string
Unique VirtualDeployment identifier.
lifecycleDetails This property is required. 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.
listeners This property is required. GetVirtualDeploymentsVirtualDeploymentCollectionItemListener[]
The listeners for the virtual deployment
name This property is required. string
A filter to return only resources that match the entire name given.
serviceDiscoveries This property is required. GetVirtualDeploymentsVirtualDeploymentCollectionItemServiceDiscovery[]
Service Discovery configuration for virtual deployments.
state This property is required. string
A filter to return only resources that match the life cycle state given.
systemTags This property is required. {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The time when this resource was created in an RFC3339 formatted datetime string.
timeUpdated This property is required. string
The time when this resource was updated in an RFC3339 formatted datetime string.
virtualServiceId This property is required. string
Unique VirtualService identifier.
access_loggings This property is required. Sequence[servicemesh.GetVirtualDeploymentsVirtualDeploymentCollectionItemAccessLogging]
This configuration determines if logging is enabled and where the logs will be output.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. str
Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
freeform_tags This property is required. Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. str
Unique VirtualDeployment identifier.
lifecycle_details This property is required. 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.
listeners This property is required. Sequence[servicemesh.GetVirtualDeploymentsVirtualDeploymentCollectionItemListener]
The listeners for the virtual deployment
name This property is required. str
A filter to return only resources that match the entire name given.
service_discoveries This property is required. Sequence[servicemesh.GetVirtualDeploymentsVirtualDeploymentCollectionItemServiceDiscovery]
Service Discovery configuration for virtual deployments.
state This property is required. str
A filter to return only resources that match the life cycle state given.
system_tags This property is required. Mapping[str, str]
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
The time when this resource was created in an RFC3339 formatted datetime string.
time_updated This property is required. str
The time when this resource was updated in an RFC3339 formatted datetime string.
virtual_service_id This property is required. str
Unique VirtualService identifier.
accessLoggings This property is required. List<Property Map>
This configuration determines if logging is enabled and where the logs will be output.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
Description of the resource. It can be changed after creation. Avoid entering confidential information. Example: This is my new resource
freeformTags This property is required. Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
Unique VirtualDeployment identifier.
lifecycleDetails This property is required. 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.
listeners This property is required. List<Property Map>
The listeners for the virtual deployment
name This property is required. String
A filter to return only resources that match the entire name given.
serviceDiscoveries This property is required. List<Property Map>
Service Discovery configuration for virtual deployments.
state This property is required. String
A filter to return only resources that match the life cycle state given.
systemTags This property is required. Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time when this resource was created in an RFC3339 formatted datetime string.
timeUpdated This property is required. String
The time when this resource was updated in an RFC3339 formatted datetime string.
virtualServiceId This property is required. String
Unique VirtualService identifier.

GetVirtualDeploymentsVirtualDeploymentCollectionItemAccessLogging

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

GetVirtualDeploymentsVirtualDeploymentCollectionItemListener

IdleTimeoutInMs This property is required. string
The maximum duration in milliseconds for which the request's stream may be idle. The value 0 (zero) indicates that the timeout is disabled.
Port This property is required. int
Port in which virtual deployment is running.
Protocol This property is required. string
Type of protocol used in virtual deployment.
RequestTimeoutInMs This property is required. string
The maximum duration in milliseconds for the deployed service to respond to an incoming request through the listener. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP/HTTP2 listeners, and disabled (no timeout) for the GRPC listeners. The value 0 (zero) indicates that the timeout is disabled. The timeout cannot be configured for the TCP and TLS_PASSTHROUGH listeners. For streaming responses from the deployed service, consider either keeping the timeout disabled or set a sufficiently high value.
IdleTimeoutInMs This property is required. string
The maximum duration in milliseconds for which the request's stream may be idle. The value 0 (zero) indicates that the timeout is disabled.
Port This property is required. int
Port in which virtual deployment is running.
Protocol This property is required. string
Type of protocol used in virtual deployment.
RequestTimeoutInMs This property is required. string
The maximum duration in milliseconds for the deployed service to respond to an incoming request through the listener. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP/HTTP2 listeners, and disabled (no timeout) for the GRPC listeners. The value 0 (zero) indicates that the timeout is disabled. The timeout cannot be configured for the TCP and TLS_PASSTHROUGH listeners. For streaming responses from the deployed service, consider either keeping the timeout disabled or set a sufficiently high value.
idleTimeoutInMs This property is required. String
The maximum duration in milliseconds for which the request's stream may be idle. The value 0 (zero) indicates that the timeout is disabled.
port This property is required. Integer
Port in which virtual deployment is running.
protocol This property is required. String
Type of protocol used in virtual deployment.
requestTimeoutInMs This property is required. String
The maximum duration in milliseconds for the deployed service to respond to an incoming request through the listener. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP/HTTP2 listeners, and disabled (no timeout) for the GRPC listeners. The value 0 (zero) indicates that the timeout is disabled. The timeout cannot be configured for the TCP and TLS_PASSTHROUGH listeners. For streaming responses from the deployed service, consider either keeping the timeout disabled or set a sufficiently high value.
idleTimeoutInMs This property is required. string
The maximum duration in milliseconds for which the request's stream may be idle. The value 0 (zero) indicates that the timeout is disabled.
port This property is required. number
Port in which virtual deployment is running.
protocol This property is required. string
Type of protocol used in virtual deployment.
requestTimeoutInMs This property is required. string
The maximum duration in milliseconds for the deployed service to respond to an incoming request through the listener. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP/HTTP2 listeners, and disabled (no timeout) for the GRPC listeners. The value 0 (zero) indicates that the timeout is disabled. The timeout cannot be configured for the TCP and TLS_PASSTHROUGH listeners. For streaming responses from the deployed service, consider either keeping the timeout disabled or set a sufficiently high value.
idle_timeout_in_ms This property is required. str
The maximum duration in milliseconds for which the request's stream may be idle. The value 0 (zero) indicates that the timeout is disabled.
port This property is required. int
Port in which virtual deployment is running.
protocol This property is required. str
Type of protocol used in virtual deployment.
request_timeout_in_ms This property is required. str
The maximum duration in milliseconds for the deployed service to respond to an incoming request through the listener. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP/HTTP2 listeners, and disabled (no timeout) for the GRPC listeners. The value 0 (zero) indicates that the timeout is disabled. The timeout cannot be configured for the TCP and TLS_PASSTHROUGH listeners. For streaming responses from the deployed service, consider either keeping the timeout disabled or set a sufficiently high value.
idleTimeoutInMs This property is required. String
The maximum duration in milliseconds for which the request's stream may be idle. The value 0 (zero) indicates that the timeout is disabled.
port This property is required. Number
Port in which virtual deployment is running.
protocol This property is required. String
Type of protocol used in virtual deployment.
requestTimeoutInMs This property is required. String
The maximum duration in milliseconds for the deployed service to respond to an incoming request through the listener. If provided, the timeout value overrides the default timeout of 15 seconds for the HTTP/HTTP2 listeners, and disabled (no timeout) for the GRPC listeners. The value 0 (zero) indicates that the timeout is disabled. The timeout cannot be configured for the TCP and TLS_PASSTHROUGH listeners. For streaming responses from the deployed service, consider either keeping the timeout disabled or set a sufficiently high value.

GetVirtualDeploymentsVirtualDeploymentCollectionItemServiceDiscovery

Hostname This property is required. string
The hostname of the virtual deployments.
Type This property is required. string
Type of service discovery.
Hostname This property is required. string
The hostname of the virtual deployments.
Type This property is required. string
Type of service discovery.
hostname This property is required. String
The hostname of the virtual deployments.
type This property is required. String
Type of service discovery.
hostname This property is required. string
The hostname of the virtual deployments.
type This property is required. string
Type of service discovery.
hostname This property is required. str
The hostname of the virtual deployments.
type This property is required. str
Type of service discovery.
hostname This property is required. String
The hostname of the virtual deployments.
type This property is required. String
Type of service discovery.

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.32.0 published on Thursday, Apr 24, 2025 by Pulumi