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

oci.ApmSynthetics.getDedicatedVantagePoints

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 Dedicated Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).

Returns a list of dedicated vantage points.

Example Usage

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

const testDedicatedVantagePoints = oci.ApmSynthetics.getDedicatedVantagePoints({
    apmDomainId: testApmDomain.id,
    displayName: dedicatedVantagePointDisplayName,
    name: dedicatedVantagePointName,
    status: dedicatedVantagePointStatus,
});
Copy
import pulumi
import pulumi_oci as oci

test_dedicated_vantage_points = oci.ApmSynthetics.get_dedicated_vantage_points(apm_domain_id=test_apm_domain["id"],
    display_name=dedicated_vantage_point_display_name,
    name=dedicated_vantage_point_name,
    status=dedicated_vantage_point_status)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := apmsynthetics.GetDedicatedVantagePoints(ctx, &apmsynthetics.GetDedicatedVantagePointsArgs{
			ApmDomainId: testApmDomain.Id,
			DisplayName: pulumi.StringRef(dedicatedVantagePointDisplayName),
			Name:        pulumi.StringRef(dedicatedVantagePointName),
			Status:      pulumi.StringRef(dedicatedVantagePointStatus),
		}, 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 testDedicatedVantagePoints = Oci.ApmSynthetics.GetDedicatedVantagePoints.Invoke(new()
    {
        ApmDomainId = testApmDomain.Id,
        DisplayName = dedicatedVantagePointDisplayName,
        Name = dedicatedVantagePointName,
        Status = dedicatedVantagePointStatus,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ApmSynthetics.ApmSyntheticsFunctions;
import com.pulumi.oci.ApmSynthetics.inputs.GetDedicatedVantagePointsArgs;
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 testDedicatedVantagePoints = ApmSyntheticsFunctions.getDedicatedVantagePoints(GetDedicatedVantagePointsArgs.builder()
            .apmDomainId(testApmDomain.id())
            .displayName(dedicatedVantagePointDisplayName)
            .name(dedicatedVantagePointName)
            .status(dedicatedVantagePointStatus)
            .build());

    }
}
Copy
variables:
  testDedicatedVantagePoints:
    fn::invoke:
      function: oci:ApmSynthetics:getDedicatedVantagePoints
      arguments:
        apmDomainId: ${testApmDomain.id}
        displayName: ${dedicatedVantagePointDisplayName}
        name: ${dedicatedVantagePointName}
        status: ${dedicatedVantagePointStatus}
Copy

Using getDedicatedVantagePoints

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 getDedicatedVantagePoints(args: GetDedicatedVantagePointsArgs, opts?: InvokeOptions): Promise<GetDedicatedVantagePointsResult>
function getDedicatedVantagePointsOutput(args: GetDedicatedVantagePointsOutputArgs, opts?: InvokeOptions): Output<GetDedicatedVantagePointsResult>
Copy
def get_dedicated_vantage_points(apm_domain_id: Optional[str] = None,
                                 display_name: Optional[str] = None,
                                 filters: Optional[Sequence[_apmsynthetics.GetDedicatedVantagePointsFilter]] = None,
                                 name: Optional[str] = None,
                                 status: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetDedicatedVantagePointsResult
def get_dedicated_vantage_points_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
                                 display_name: Optional[pulumi.Input[str]] = None,
                                 filters: Optional[pulumi.Input[Sequence[pulumi.Input[_apmsynthetics.GetDedicatedVantagePointsFilterArgs]]]] = None,
                                 name: Optional[pulumi.Input[str]] = None,
                                 status: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetDedicatedVantagePointsResult]
Copy
func GetDedicatedVantagePoints(ctx *Context, args *GetDedicatedVantagePointsArgs, opts ...InvokeOption) (*GetDedicatedVantagePointsResult, error)
func GetDedicatedVantagePointsOutput(ctx *Context, args *GetDedicatedVantagePointsOutputArgs, opts ...InvokeOption) GetDedicatedVantagePointsResultOutput
Copy

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

public static class GetDedicatedVantagePoints 
{
    public static Task<GetDedicatedVantagePointsResult> InvokeAsync(GetDedicatedVantagePointsArgs args, InvokeOptions? opts = null)
    public static Output<GetDedicatedVantagePointsResult> Invoke(GetDedicatedVantagePointsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetDedicatedVantagePointsResult> getDedicatedVantagePoints(GetDedicatedVantagePointsArgs args, InvokeOptions options)
public static Output<GetDedicatedVantagePointsResult> getDedicatedVantagePoints(GetDedicatedVantagePointsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:ApmSynthetics/getDedicatedVantagePoints:getDedicatedVantagePoints
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ApmDomainId This property is required. string
The APM domain ID the request is intended for.
DisplayName string
A filter to return only the resources that match the entire display name.
Filters Changes to this property will trigger replacement. List<GetDedicatedVantagePointsFilter>
Name string
A filter to return only the resources that match the entire name.
Status string
A filter to return only the dedicated vantage points that match a given status.
ApmDomainId This property is required. string
The APM domain ID the request is intended for.
DisplayName string
A filter to return only the resources that match the entire display name.
Filters Changes to this property will trigger replacement. []GetDedicatedVantagePointsFilter
Name string
A filter to return only the resources that match the entire name.
Status string
A filter to return only the dedicated vantage points that match a given status.
apmDomainId This property is required. String
The APM domain ID the request is intended for.
displayName String
A filter to return only the resources that match the entire display name.
filters Changes to this property will trigger replacement. List<GetDedicatedVantagePointsFilter>
name String
A filter to return only the resources that match the entire name.
status String
A filter to return only the dedicated vantage points that match a given status.
apmDomainId This property is required. string
The APM domain ID the request is intended for.
displayName string
A filter to return only the resources that match the entire display name.
filters Changes to this property will trigger replacement. GetDedicatedVantagePointsFilter[]
name string
A filter to return only the resources that match the entire name.
status string
A filter to return only the dedicated vantage points that match a given status.
apm_domain_id This property is required. str
The APM domain ID the request is intended for.
display_name str
A filter to return only the resources that match the entire display name.
filters Changes to this property will trigger replacement. Sequence[apmsynthetics.GetDedicatedVantagePointsFilter]
name str
A filter to return only the resources that match the entire name.
status str
A filter to return only the dedicated vantage points that match a given status.
apmDomainId This property is required. String
The APM domain ID the request is intended for.
displayName String
A filter to return only the resources that match the entire display name.
filters Changes to this property will trigger replacement. List<Property Map>
name String
A filter to return only the resources that match the entire name.
status String
A filter to return only the dedicated vantage points that match a given status.

getDedicatedVantagePoints Result

The following output properties are available:

ApmDomainId string
DedicatedVantagePointCollections List<GetDedicatedVantagePointsDedicatedVantagePointCollection>
The list of dedicated_vantage_point_collection.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
Filters List<GetDedicatedVantagePointsFilter>
Name string
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
Status string
Status of the dedicated vantage point.
ApmDomainId string
DedicatedVantagePointCollections []GetDedicatedVantagePointsDedicatedVantagePointCollection
The list of dedicated_vantage_point_collection.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
Filters []GetDedicatedVantagePointsFilter
Name string
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
Status string
Status of the dedicated vantage point.
apmDomainId String
dedicatedVantagePointCollections List<GetDedicatedVantagePointsDedicatedVantagePointCollection>
The list of dedicated_vantage_point_collection.
id String
The provider-assigned unique ID for this managed resource.
displayName String
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
filters List<GetDedicatedVantagePointsFilter>
name String
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
status String
Status of the dedicated vantage point.
apmDomainId string
dedicatedVantagePointCollections GetDedicatedVantagePointsDedicatedVantagePointCollection[]
The list of dedicated_vantage_point_collection.
id string
The provider-assigned unique ID for this managed resource.
displayName string
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
filters GetDedicatedVantagePointsFilter[]
name string
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
status string
Status of the dedicated vantage point.
apm_domain_id str
dedicated_vantage_point_collections Sequence[apmsynthetics.GetDedicatedVantagePointsDedicatedVantagePointCollection]
The list of dedicated_vantage_point_collection.
id str
The provider-assigned unique ID for this managed resource.
display_name str
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
filters Sequence[apmsynthetics.GetDedicatedVantagePointsFilter]
name str
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
status str
Status of the dedicated vantage point.
apmDomainId String
dedicatedVantagePointCollections List<Property Map>
The list of dedicated_vantage_point_collection.
id String
The provider-assigned unique ID for this managed resource.
displayName String
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
filters List<Property Map>
name String
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
status String
Status of the dedicated vantage point.

Supporting Types

GetDedicatedVantagePointsDedicatedVantagePointCollection

items This property is required. List<Property Map>

GetDedicatedVantagePointsDedicatedVantagePointCollectionItem

ApmDomainId This property is required. string
The APM domain ID the request is intended for.
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"}
DisplayName This property is required. string
A filter to return only the resources that match the entire display name.
DvpStackDetails This property is required. List<GetDedicatedVantagePointsDedicatedVantagePointCollectionItemDvpStackDetail>
Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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
The OCID of the dedicated vantage point.
MonitorStatusCountMaps This property is required. List<GetDedicatedVantagePointsDedicatedVantagePointCollectionItemMonitorStatusCountMap>
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
Name This property is required. string
A filter to return only the resources that match the entire name.
Region This property is required. string
Name of the region.
Status This property is required. string
A filter to return only the dedicated vantage points that match a given status.
TimeCreated This property is required. string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeUpdated This property is required. string
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
ApmDomainId This property is required. string
The APM domain ID the request is intended for.
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"}
DisplayName This property is required. string
A filter to return only the resources that match the entire display name.
DvpStackDetails This property is required. []GetDedicatedVantagePointsDedicatedVantagePointCollectionItemDvpStackDetail
Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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
The OCID of the dedicated vantage point.
MonitorStatusCountMaps This property is required. []GetDedicatedVantagePointsDedicatedVantagePointCollectionItemMonitorStatusCountMap
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
Name This property is required. string
A filter to return only the resources that match the entire name.
Region This property is required. string
Name of the region.
Status This property is required. string
A filter to return only the dedicated vantage points that match a given status.
TimeCreated This property is required. string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeUpdated This property is required. string
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
apmDomainId This property is required. String
The APM domain ID the request is intended for.
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"}
displayName This property is required. String
A filter to return only the resources that match the entire display name.
dvpStackDetails This property is required. List<GetDedicatedVantagePointsDedicatedVantagePointCollectionItemDvpStackDetail>
Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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
The OCID of the dedicated vantage point.
monitorStatusCountMaps This property is required. List<GetDedicatedVantagePointsDedicatedVantagePointCollectionItemMonitorStatusCountMap>
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name This property is required. String
A filter to return only the resources that match the entire name.
region This property is required. String
Name of the region.
status This property is required. String
A filter to return only the dedicated vantage points that match a given status.
timeCreated This property is required. String
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeUpdated This property is required. String
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
apmDomainId This property is required. string
The APM domain ID the request is intended for.
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"}
displayName This property is required. string
A filter to return only the resources that match the entire display name.
dvpStackDetails This property is required. GetDedicatedVantagePointsDedicatedVantagePointCollectionItemDvpStackDetail[]
Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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
The OCID of the dedicated vantage point.
monitorStatusCountMaps This property is required. GetDedicatedVantagePointsDedicatedVantagePointCollectionItemMonitorStatusCountMap[]
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name This property is required. string
A filter to return only the resources that match the entire name.
region This property is required. string
Name of the region.
status This property is required. string
A filter to return only the dedicated vantage points that match a given status.
timeCreated This property is required. string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeUpdated This property is required. string
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
apm_domain_id This property is required. str
The APM domain ID the request is intended for.
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"}
display_name This property is required. str
A filter to return only the resources that match the entire display name.
dvp_stack_details This property is required. Sequence[apmsynthetics.GetDedicatedVantagePointsDedicatedVantagePointCollectionItemDvpStackDetail]
Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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
The OCID of the dedicated vantage point.
monitor_status_count_maps This property is required. Sequence[apmsynthetics.GetDedicatedVantagePointsDedicatedVantagePointCollectionItemMonitorStatusCountMap]
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name This property is required. str
A filter to return only the resources that match the entire name.
region This property is required. str
Name of the region.
status This property is required. str
A filter to return only the dedicated vantage points that match a given status.
time_created This property is required. str
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
time_updated This property is required. str
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
apmDomainId This property is required. String
The APM domain ID the request is intended for.
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"}
displayName This property is required. String
A filter to return only the resources that match the entire display name.
dvpStackDetails This property is required. List<Property Map>
Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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
The OCID of the dedicated vantage point.
monitorStatusCountMaps This property is required. List<Property Map>
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name This property is required. String
A filter to return only the resources that match the entire name.
region This property is required. String
Name of the region.
status This property is required. String
A filter to return only the dedicated vantage points that match a given status.
timeCreated This property is required. String
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeUpdated This property is required. String
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

GetDedicatedVantagePointsDedicatedVantagePointCollectionItemDvpStackDetail

DvpStackId This property is required. string
Stack OCID of the Resource Manager stack for dedicated vantage point.
DvpStackType This property is required. string
Type of stack.
DvpStreamId This property is required. string
Stream OCID of the Resource Manager stack for dedicated vantage point.
DvpVersion This property is required. string
Version of the dedicated vantage point.
DvpStackId This property is required. string
Stack OCID of the Resource Manager stack for dedicated vantage point.
DvpStackType This property is required. string
Type of stack.
DvpStreamId This property is required. string
Stream OCID of the Resource Manager stack for dedicated vantage point.
DvpVersion This property is required. string
Version of the dedicated vantage point.
dvpStackId This property is required. String
Stack OCID of the Resource Manager stack for dedicated vantage point.
dvpStackType This property is required. String
Type of stack.
dvpStreamId This property is required. String
Stream OCID of the Resource Manager stack for dedicated vantage point.
dvpVersion This property is required. String
Version of the dedicated vantage point.
dvpStackId This property is required. string
Stack OCID of the Resource Manager stack for dedicated vantage point.
dvpStackType This property is required. string
Type of stack.
dvpStreamId This property is required. string
Stream OCID of the Resource Manager stack for dedicated vantage point.
dvpVersion This property is required. string
Version of the dedicated vantage point.
dvp_stack_id This property is required. str
Stack OCID of the Resource Manager stack for dedicated vantage point.
dvp_stack_type This property is required. str
Type of stack.
dvp_stream_id This property is required. str
Stream OCID of the Resource Manager stack for dedicated vantage point.
dvp_version This property is required. str
Version of the dedicated vantage point.
dvpStackId This property is required. String
Stack OCID of the Resource Manager stack for dedicated vantage point.
dvpStackType This property is required. String
Type of stack.
dvpStreamId This property is required. String
Stream OCID of the Resource Manager stack for dedicated vantage point.
dvpVersion This property is required. String
Version of the dedicated vantage point.

GetDedicatedVantagePointsDedicatedVantagePointCollectionItemMonitorStatusCountMap

Disabled This property is required. int
Number of disabled monitors using the script.
Enabled This property is required. int
Number of enabled monitors using the script.
Invalid This property is required. int
Number of invalid monitors using the script.
Total This property is required. int
Total number of monitors using the script.
Disabled This property is required. int
Number of disabled monitors using the script.
Enabled This property is required. int
Number of enabled monitors using the script.
Invalid This property is required. int
Number of invalid monitors using the script.
Total This property is required. int
Total number of monitors using the script.
disabled This property is required. Integer
Number of disabled monitors using the script.
enabled This property is required. Integer
Number of enabled monitors using the script.
invalid This property is required. Integer
Number of invalid monitors using the script.
total This property is required. Integer
Total number of monitors using the script.
disabled This property is required. number
Number of disabled monitors using the script.
enabled This property is required. number
Number of enabled monitors using the script.
invalid This property is required. number
Number of invalid monitors using the script.
total This property is required. number
Total number of monitors using the script.
disabled This property is required. int
Number of disabled monitors using the script.
enabled This property is required. int
Number of enabled monitors using the script.
invalid This property is required. int
Number of invalid monitors using the script.
total This property is required. int
Total number of monitors using the script.
disabled This property is required. Number
Number of disabled monitors using the script.
enabled This property is required. Number
Number of enabled monitors using the script.
invalid This property is required. Number
Number of invalid monitors using the script.
total This property is required. Number
Total number of monitors using the script.

GetDedicatedVantagePointsFilter

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