1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DevOps
  5. getConnections
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.DevOps.getConnections

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

This data source provides the list of Connections in Oracle Cloud Infrastructure Devops service.

Returns a list of connections.

Example Usage

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

const testConnections = oci.DevOps.getConnections({
    compartmentId: compartmentId,
    connectionType: connectionConnectionType,
    displayName: connectionDisplayName,
    id: connectionId,
    projectId: testProject.id,
    state: connectionState,
});
Copy
import pulumi
import pulumi_oci as oci

test_connections = oci.DevOps.get_connections(compartment_id=compartment_id,
    connection_type=connection_connection_type,
    display_name=connection_display_name,
    id=connection_id,
    project_id=test_project["id"],
    state=connection_state)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := devops.GetConnections(ctx, &devops.GetConnectionsArgs{
			CompartmentId:  pulumi.StringRef(compartmentId),
			ConnectionType: pulumi.StringRef(connectionConnectionType),
			DisplayName:    pulumi.StringRef(connectionDisplayName),
			Id:             pulumi.StringRef(connectionId),
			ProjectId:      pulumi.StringRef(testProject.Id),
			State:          pulumi.StringRef(connectionState),
		}, 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 testConnections = Oci.DevOps.GetConnections.Invoke(new()
    {
        CompartmentId = compartmentId,
        ConnectionType = connectionConnectionType,
        DisplayName = connectionDisplayName,
        Id = connectionId,
        ProjectId = testProject.Id,
        State = connectionState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DevOps.DevOpsFunctions;
import com.pulumi.oci.DevOps.inputs.GetConnectionsArgs;
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 testConnections = DevOpsFunctions.getConnections(GetConnectionsArgs.builder()
            .compartmentId(compartmentId)
            .connectionType(connectionConnectionType)
            .displayName(connectionDisplayName)
            .id(connectionId)
            .projectId(testProject.id())
            .state(connectionState)
            .build());

    }
}
Copy
variables:
  testConnections:
    fn::invoke:
      function: oci:DevOps:getConnections
      arguments:
        compartmentId: ${compartmentId}
        connectionType: ${connectionConnectionType}
        displayName: ${connectionDisplayName}
        id: ${connectionId}
        projectId: ${testProject.id}
        state: ${connectionState}
Copy

Using getConnections

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 getConnections(args: GetConnectionsArgs, opts?: InvokeOptions): Promise<GetConnectionsResult>
function getConnectionsOutput(args: GetConnectionsOutputArgs, opts?: InvokeOptions): Output<GetConnectionsResult>
Copy
def get_connections(compartment_id: Optional[str] = None,
                    connection_type: Optional[str] = None,
                    display_name: Optional[str] = None,
                    filters: Optional[Sequence[_devops.GetConnectionsFilter]] = None,
                    id: Optional[str] = None,
                    project_id: Optional[str] = None,
                    state: Optional[str] = None,
                    opts: Optional[InvokeOptions] = None) -> GetConnectionsResult
def get_connections_output(compartment_id: Optional[pulumi.Input[str]] = None,
                    connection_type: Optional[pulumi.Input[str]] = None,
                    display_name: Optional[pulumi.Input[str]] = None,
                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[_devops.GetConnectionsFilterArgs]]]] = None,
                    id: Optional[pulumi.Input[str]] = None,
                    project_id: Optional[pulumi.Input[str]] = None,
                    state: Optional[pulumi.Input[str]] = None,
                    opts: Optional[InvokeOptions] = None) -> Output[GetConnectionsResult]
Copy
func GetConnections(ctx *Context, args *GetConnectionsArgs, opts ...InvokeOption) (*GetConnectionsResult, error)
func GetConnectionsOutput(ctx *Context, args *GetConnectionsOutputArgs, opts ...InvokeOption) GetConnectionsResultOutput
Copy

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

public static class GetConnections 
{
    public static Task<GetConnectionsResult> InvokeAsync(GetConnectionsArgs args, InvokeOptions? opts = null)
    public static Output<GetConnectionsResult> Invoke(GetConnectionsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetConnectionsResult> getConnections(GetConnectionsArgs args, InvokeOptions options)
public static Output<GetConnectionsResult> getConnections(GetConnectionsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DevOps/getConnections:getConnections
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId string
The OCID of the compartment in which to list resources.
ConnectionType string
A filter to return only resources that match the given connection type.
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. List<GetConnectionsFilter>
Id string
Unique identifier or OCID for listing a single resource by ID.
ProjectId string
unique project identifier
State string
A filter to return only connections that matches the given lifecycle state.
CompartmentId string
The OCID of the compartment in which to list resources.
ConnectionType string
A filter to return only resources that match the given connection type.
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. []GetConnectionsFilter
Id string
Unique identifier or OCID for listing a single resource by ID.
ProjectId string
unique project identifier
State string
A filter to return only connections that matches the given lifecycle state.
compartmentId String
The OCID of the compartment in which to list resources.
connectionType String
A filter to return only resources that match the given connection type.
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<GetConnectionsFilter>
id String
Unique identifier or OCID for listing a single resource by ID.
projectId String
unique project identifier
state String
A filter to return only connections that matches the given lifecycle state.
compartmentId string
The OCID of the compartment in which to list resources.
connectionType string
A filter to return only resources that match the given connection type.
displayName string
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. GetConnectionsFilter[]
id string
Unique identifier or OCID for listing a single resource by ID.
projectId string
unique project identifier
state string
A filter to return only connections that matches the given lifecycle state.
compartment_id str
The OCID of the compartment in which to list resources.
connection_type str
A filter to return only resources that match the given connection type.
display_name str
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. Sequence[devops.GetConnectionsFilter]
id str
Unique identifier or OCID for listing a single resource by ID.
project_id str
unique project identifier
state str
A filter to return only connections that matches the given lifecycle state.
compartmentId String
The OCID of the compartment in which to list resources.
connectionType String
A filter to return only resources that match the given connection type.
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<Property Map>
id String
Unique identifier or OCID for listing a single resource by ID.
projectId String
unique project identifier
state String
A filter to return only connections that matches the given lifecycle state.

getConnections Result

The following output properties are available:

ConnectionCollections List<GetConnectionsConnectionCollection>
The list of connection_collection.
CompartmentId string
The OCID of the compartment containing the connection.
ConnectionType string
The type of connection.
DisplayName string
Connection display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
Filters List<GetConnectionsFilter>
Id string
Unique identifier that is immutable on creation.
ProjectId string
The OCID of the DevOps project.
State string
The current state of the connection.
ConnectionCollections []GetConnectionsConnectionCollection
The list of connection_collection.
CompartmentId string
The OCID of the compartment containing the connection.
ConnectionType string
The type of connection.
DisplayName string
Connection display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
Filters []GetConnectionsFilter
Id string
Unique identifier that is immutable on creation.
ProjectId string
The OCID of the DevOps project.
State string
The current state of the connection.
connectionCollections List<GetConnectionsConnectionCollection>
The list of connection_collection.
compartmentId String
The OCID of the compartment containing the connection.
connectionType String
The type of connection.
displayName String
Connection display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
filters List<GetConnectionsFilter>
id String
Unique identifier that is immutable on creation.
projectId String
The OCID of the DevOps project.
state String
The current state of the connection.
connectionCollections GetConnectionsConnectionCollection[]
The list of connection_collection.
compartmentId string
The OCID of the compartment containing the connection.
connectionType string
The type of connection.
displayName string
Connection display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
filters GetConnectionsFilter[]
id string
Unique identifier that is immutable on creation.
projectId string
The OCID of the DevOps project.
state string
The current state of the connection.
connection_collections Sequence[devops.GetConnectionsConnectionCollection]
The list of connection_collection.
compartment_id str
The OCID of the compartment containing the connection.
connection_type str
The type of connection.
display_name str
Connection display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
filters Sequence[devops.GetConnectionsFilter]
id str
Unique identifier that is immutable on creation.
project_id str
The OCID of the DevOps project.
state str
The current state of the connection.
connectionCollections List<Property Map>
The list of connection_collection.
compartmentId String
The OCID of the compartment containing the connection.
connectionType String
The type of connection.
displayName String
Connection display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
filters List<Property Map>
id String
Unique identifier that is immutable on creation.
projectId String
The OCID of the DevOps project.
state String
The current state of the connection.

Supporting Types

GetConnectionsConnectionCollection

items This property is required. List<Property Map>

GetConnectionsConnectionCollectionItem

AccessToken This property is required. string
The OCID of personal access token saved in secret store.
AppPassword This property is required. string
OCID of personal Bitbucket Cloud AppPassword saved in secret store
BaseUrl This property is required. string
The Base URL of the hosted BitbucketServer/Visual Builder Studio server.
CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
ConnectionType This property is required. string
A filter to return only resources that match the given connection type.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
Optional description about the connection.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
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. See Resource Tags. Example: {"bar-key": "value"}
Id This property is required. string
Unique identifier or OCID for listing a single resource by ID.
LastConnectionValidationResults This property is required. List<GetConnectionsConnectionCollectionItemLastConnectionValidationResult>
The result of validating the credentials of a connection.
ProjectId This property is required. string
unique project identifier
State This property is required. string
A filter to return only connections that matches the given lifecycle state.
SystemTags This property is required. Dictionary<string, string>
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time the connection was created. Format defined by RFC3339.
TimeUpdated This property is required. string
The time the connection was updated. Format defined by RFC3339.
TlsVerifyConfigs This property is required. List<GetConnectionsConnectionCollectionItemTlsVerifyConfig>
TLS configuration used by build service to verify TLS connection.
Username This property is required. string
Public Bitbucket Cloud Username in plain text
AccessToken This property is required. string
The OCID of personal access token saved in secret store.
AppPassword This property is required. string
OCID of personal Bitbucket Cloud AppPassword saved in secret store
BaseUrl This property is required. string
The Base URL of the hosted BitbucketServer/Visual Builder Studio server.
CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
ConnectionType This property is required. string
A filter to return only resources that match the given connection type.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
Optional description about the connection.
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
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. See Resource Tags. Example: {"bar-key": "value"}
Id This property is required. string
Unique identifier or OCID for listing a single resource by ID.
LastConnectionValidationResults This property is required. []GetConnectionsConnectionCollectionItemLastConnectionValidationResult
The result of validating the credentials of a connection.
ProjectId This property is required. string
unique project identifier
State This property is required. string
A filter to return only connections that matches the given lifecycle state.
SystemTags This property is required. map[string]string
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The time the connection was created. Format defined by RFC3339.
TimeUpdated This property is required. string
The time the connection was updated. Format defined by RFC3339.
TlsVerifyConfigs This property is required. []GetConnectionsConnectionCollectionItemTlsVerifyConfig
TLS configuration used by build service to verify TLS connection.
Username This property is required. string
Public Bitbucket Cloud Username in plain text
accessToken This property is required. String
The OCID of personal access token saved in secret store.
appPassword This property is required. String
OCID of personal Bitbucket Cloud AppPassword saved in secret store
baseUrl This property is required. String
The Base URL of the hosted BitbucketServer/Visual Builder Studio server.
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
connectionType This property is required. String
A filter to return only resources that match the given connection type.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
Optional description about the connection.
displayName This property is required. String
A filter to return only resources that match the entire display name given.
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. See Resource Tags. Example: {"bar-key": "value"}
id This property is required. String
Unique identifier or OCID for listing a single resource by ID.
lastConnectionValidationResults This property is required. List<GetConnectionsConnectionCollectionItemLastConnectionValidationResult>
The result of validating the credentials of a connection.
projectId This property is required. String
unique project identifier
state This property is required. String
A filter to return only connections that matches the given lifecycle state.
systemTags This property is required. Map<String,String>
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time the connection was created. Format defined by RFC3339.
timeUpdated This property is required. String
The time the connection was updated. Format defined by RFC3339.
tlsVerifyConfigs This property is required. List<GetConnectionsConnectionCollectionItemTlsVerifyConfig>
TLS configuration used by build service to verify TLS connection.
username This property is required. String
Public Bitbucket Cloud Username in plain text
accessToken This property is required. string
The OCID of personal access token saved in secret store.
appPassword This property is required. string
OCID of personal Bitbucket Cloud AppPassword saved in secret store
baseUrl This property is required. string
The Base URL of the hosted BitbucketServer/Visual Builder Studio server.
compartmentId This property is required. string
The OCID of the compartment in which to list resources.
connectionType This property is required. string
A filter to return only resources that match the given connection type.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
description This property is required. string
Optional description about the connection.
displayName This property is required. string
A filter to return only resources that match the entire display name given.
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. See Resource Tags. Example: {"bar-key": "value"}
id This property is required. string
Unique identifier or OCID for listing a single resource by ID.
lastConnectionValidationResults This property is required. GetConnectionsConnectionCollectionItemLastConnectionValidationResult[]
The result of validating the credentials of a connection.
projectId This property is required. string
unique project identifier
state This property is required. string
A filter to return only connections that matches the given lifecycle state.
systemTags This property is required. {[key: string]: string}
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The time the connection was created. Format defined by RFC3339.
timeUpdated This property is required. string
The time the connection was updated. Format defined by RFC3339.
tlsVerifyConfigs This property is required. GetConnectionsConnectionCollectionItemTlsVerifyConfig[]
TLS configuration used by build service to verify TLS connection.
username This property is required. string
Public Bitbucket Cloud Username in plain text
access_token This property is required. str
The OCID of personal access token saved in secret store.
app_password This property is required. str
OCID of personal Bitbucket Cloud AppPassword saved in secret store
base_url This property is required. str
The Base URL of the hosted BitbucketServer/Visual Builder Studio server.
compartment_id This property is required. str
The OCID of the compartment in which to list resources.
connection_type This property is required. str
A filter to return only resources that match the given connection type.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
description This property is required. str
Optional description about the connection.
display_name This property is required. str
A filter to return only resources that match the entire display name given.
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. See Resource Tags. Example: {"bar-key": "value"}
id This property is required. str
Unique identifier or OCID for listing a single resource by ID.
last_connection_validation_results This property is required. Sequence[devops.GetConnectionsConnectionCollectionItemLastConnectionValidationResult]
The result of validating the credentials of a connection.
project_id This property is required. str
unique project identifier
state This property is required. str
A filter to return only connections that matches the given lifecycle state.
system_tags This property is required. Mapping[str, str]
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
The time the connection was created. Format defined by RFC3339.
time_updated This property is required. str
The time the connection was updated. Format defined by RFC3339.
tls_verify_configs This property is required. Sequence[devops.GetConnectionsConnectionCollectionItemTlsVerifyConfig]
TLS configuration used by build service to verify TLS connection.
username This property is required. str
Public Bitbucket Cloud Username in plain text
accessToken This property is required. String
The OCID of personal access token saved in secret store.
appPassword This property is required. String
OCID of personal Bitbucket Cloud AppPassword saved in secret store
baseUrl This property is required. String
The Base URL of the hosted BitbucketServer/Visual Builder Studio server.
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
connectionType This property is required. String
A filter to return only resources that match the given connection type.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
Optional description about the connection.
displayName This property is required. String
A filter to return only resources that match the entire display name given.
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. See Resource Tags. Example: {"bar-key": "value"}
id This property is required. String
Unique identifier or OCID for listing a single resource by ID.
lastConnectionValidationResults This property is required. List<Property Map>
The result of validating the credentials of a connection.
projectId This property is required. String
unique project identifier
state This property is required. String
A filter to return only connections that matches the given lifecycle state.
systemTags This property is required. Map<String>
Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The time the connection was created. Format defined by RFC3339.
timeUpdated This property is required. String
The time the connection was updated. Format defined by RFC3339.
tlsVerifyConfigs This property is required. List<Property Map>
TLS configuration used by build service to verify TLS connection.
username This property is required. String
Public Bitbucket Cloud Username in plain text

GetConnectionsConnectionCollectionItemLastConnectionValidationResult

Message This property is required. string
A message describing the result of connection validation in more detail.
Result This property is required. string
The latest result of whether the credentials pass the validation.
TimeValidated This property is required. string
The latest timestamp when the connection was validated. Format defined by RFC3339.
Message This property is required. string
A message describing the result of connection validation in more detail.
Result This property is required. string
The latest result of whether the credentials pass the validation.
TimeValidated This property is required. string
The latest timestamp when the connection was validated. Format defined by RFC3339.
message This property is required. String
A message describing the result of connection validation in more detail.
result This property is required. String
The latest result of whether the credentials pass the validation.
timeValidated This property is required. String
The latest timestamp when the connection was validated. Format defined by RFC3339.
message This property is required. string
A message describing the result of connection validation in more detail.
result This property is required. string
The latest result of whether the credentials pass the validation.
timeValidated This property is required. string
The latest timestamp when the connection was validated. Format defined by RFC3339.
message This property is required. str
A message describing the result of connection validation in more detail.
result This property is required. str
The latest result of whether the credentials pass the validation.
time_validated This property is required. str
The latest timestamp when the connection was validated. Format defined by RFC3339.
message This property is required. String
A message describing the result of connection validation in more detail.
result This property is required. String
The latest result of whether the credentials pass the validation.
timeValidated This property is required. String
The latest timestamp when the connection was validated. Format defined by RFC3339.

GetConnectionsConnectionCollectionItemTlsVerifyConfig

CaCertificateBundleId This property is required. string
The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
TlsVerifyMode This property is required. string
The type of TLS verification.
CaCertificateBundleId This property is required. string
The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
TlsVerifyMode This property is required. string
The type of TLS verification.
caCertificateBundleId This property is required. String
The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
tlsVerifyMode This property is required. String
The type of TLS verification.
caCertificateBundleId This property is required. string
The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
tlsVerifyMode This property is required. string
The type of TLS verification.
ca_certificate_bundle_id This property is required. str
The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
tls_verify_mode This property is required. str
The type of TLS verification.
caCertificateBundleId This property is required. String
The OCID of Oracle Cloud Infrastructure certificate service CA bundle.
tlsVerifyMode This property is required. String
The type of TLS verification.

GetConnectionsFilter

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.28.0 published on Thursday, Mar 27, 2025 by Pulumi