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

oci.ApmSynthetics.getOnPremiseVantagePointWorker

Explore with Pulumi AI

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

This data source provides details about a specific On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).

Gets the details of the worker identified by the OCID.

Example Usage

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

const testOnPremiseVantagePointWorker = oci.ApmSynthetics.getOnPremiseVantagePointWorker({
    apmDomainId: testApmDomain.id,
    onPremiseVantagePointId: testOnPremiseVantagePoint.id,
    workerId: testWorker.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_on_premise_vantage_point_worker = oci.ApmSynthetics.get_on_premise_vantage_point_worker(apm_domain_id=test_apm_domain["id"],
    on_premise_vantage_point_id=test_on_premise_vantage_point["id"],
    worker_id=test_worker["id"])
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.GetOnPremiseVantagePointWorker(ctx, &apmsynthetics.GetOnPremiseVantagePointWorkerArgs{
			ApmDomainId:             testApmDomain.Id,
			OnPremiseVantagePointId: testOnPremiseVantagePoint.Id,
			WorkerId:                testWorker.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 testOnPremiseVantagePointWorker = Oci.ApmSynthetics.GetOnPremiseVantagePointWorker.Invoke(new()
    {
        ApmDomainId = testApmDomain.Id,
        OnPremiseVantagePointId = testOnPremiseVantagePoint.Id,
        WorkerId = testWorker.Id,
    });

});
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.GetOnPremiseVantagePointWorkerArgs;
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 testOnPremiseVantagePointWorker = ApmSyntheticsFunctions.getOnPremiseVantagePointWorker(GetOnPremiseVantagePointWorkerArgs.builder()
            .apmDomainId(testApmDomain.id())
            .onPremiseVantagePointId(testOnPremiseVantagePoint.id())
            .workerId(testWorker.id())
            .build());

    }
}
Copy
variables:
  testOnPremiseVantagePointWorker:
    fn::invoke:
      function: oci:ApmSynthetics:getOnPremiseVantagePointWorker
      arguments:
        apmDomainId: ${testApmDomain.id}
        onPremiseVantagePointId: ${testOnPremiseVantagePoint.id}
        workerId: ${testWorker.id}
Copy

Using getOnPremiseVantagePointWorker

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 getOnPremiseVantagePointWorker(args: GetOnPremiseVantagePointWorkerArgs, opts?: InvokeOptions): Promise<GetOnPremiseVantagePointWorkerResult>
function getOnPremiseVantagePointWorkerOutput(args: GetOnPremiseVantagePointWorkerOutputArgs, opts?: InvokeOptions): Output<GetOnPremiseVantagePointWorkerResult>
Copy
def get_on_premise_vantage_point_worker(apm_domain_id: Optional[str] = None,
                                        on_premise_vantage_point_id: Optional[str] = None,
                                        worker_id: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetOnPremiseVantagePointWorkerResult
def get_on_premise_vantage_point_worker_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
                                        on_premise_vantage_point_id: Optional[pulumi.Input[str]] = None,
                                        worker_id: Optional[pulumi.Input[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetOnPremiseVantagePointWorkerResult]
Copy
func GetOnPremiseVantagePointWorker(ctx *Context, args *GetOnPremiseVantagePointWorkerArgs, opts ...InvokeOption) (*GetOnPremiseVantagePointWorkerResult, error)
func GetOnPremiseVantagePointWorkerOutput(ctx *Context, args *GetOnPremiseVantagePointWorkerOutputArgs, opts ...InvokeOption) GetOnPremiseVantagePointWorkerResultOutput
Copy

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

public static class GetOnPremiseVantagePointWorker 
{
    public static Task<GetOnPremiseVantagePointWorkerResult> InvokeAsync(GetOnPremiseVantagePointWorkerArgs args, InvokeOptions? opts = null)
    public static Output<GetOnPremiseVantagePointWorkerResult> Invoke(GetOnPremiseVantagePointWorkerInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetOnPremiseVantagePointWorkerResult> getOnPremiseVantagePointWorker(GetOnPremiseVantagePointWorkerArgs args, InvokeOptions options)
public static Output<GetOnPremiseVantagePointWorkerResult> getOnPremiseVantagePointWorker(GetOnPremiseVantagePointWorkerArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:ApmSynthetics/getOnPremiseVantagePointWorker:getOnPremiseVantagePointWorker
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ApmDomainId This property is required. string
The APM domain ID the request is intended for.
OnPremiseVantagePointId This property is required. string
The OCID of the On-premise vantage point.
WorkerId This property is required. string
The OCID of the On-premise vantage point worker.
ApmDomainId This property is required. string
The APM domain ID the request is intended for.
OnPremiseVantagePointId This property is required. string
The OCID of the On-premise vantage point.
WorkerId This property is required. string
The OCID of the On-premise vantage point worker.
apmDomainId This property is required. String
The APM domain ID the request is intended for.
onPremiseVantagePointId This property is required. String
The OCID of the On-premise vantage point.
workerId This property is required. String
The OCID of the On-premise vantage point worker.
apmDomainId This property is required. string
The APM domain ID the request is intended for.
onPremiseVantagePointId This property is required. string
The OCID of the On-premise vantage point.
workerId This property is required. string
The OCID of the On-premise vantage point worker.
apm_domain_id This property is required. str
The APM domain ID the request is intended for.
on_premise_vantage_point_id This property is required. str
The OCID of the On-premise vantage point.
worker_id This property is required. str
The OCID of the On-premise vantage point worker.
apmDomainId This property is required. String
The APM domain ID the request is intended for.
onPremiseVantagePointId This property is required. String
The OCID of the On-premise vantage point.
workerId This property is required. String
The OCID of the On-premise vantage point worker.

getOnPremiseVantagePointWorker Result

The following output properties are available:

ApmDomainId string
ConfigurationDetails string
Configuration details of the On-premise VP worker.
DefinedTags Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
Unique name that can be edited. The name should not contain any confidential information.
FreeformTags 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"}
GeoInfo string
Geographical information of the On-premise VP worker.
Id string
The OCID of the monitor.
IdentityInfos List<GetOnPremiseVantagePointWorkerIdentityInfo>
Domain details of the On-premise VP worker.
MonitorLists List<GetOnPremiseVantagePointWorkerMonitorList>
Monitors list assigned to the On-premise VP worker.
Name string
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
OnPremiseVantagePointId string
OpvpId string
The OCID of the On-premise vantage point.
OpvpName string
On-premise vantage point name.
Priority int
Priority of the On-premise VP worker to schedule monitors.
ResourcePrincipalTokenPublicKey string
RuntimeId string
The runtime assigned id of the On-premise VP worker.
Status string
Enables or disables the On-premise VP worker.
TimeCreated string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeLastSyncUp string
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeUpdated string
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
Version string
Current image version of the On-premise VP worker.
VersionDetails List<GetOnPremiseVantagePointWorkerVersionDetail>
Image version details of the On-premise VP worker.
WorkerId string
WorkerType string
Type of the On-premise VP worker.
ApmDomainId string
ConfigurationDetails string
Configuration details of the On-premise VP worker.
DefinedTags map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
Unique name that can be edited. The name should not contain any confidential information.
FreeformTags 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"}
GeoInfo string
Geographical information of the On-premise VP worker.
Id string
The OCID of the monitor.
IdentityInfos []GetOnPremiseVantagePointWorkerIdentityInfo
Domain details of the On-premise VP worker.
MonitorLists []GetOnPremiseVantagePointWorkerMonitorList
Monitors list assigned to the On-premise VP worker.
Name string
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
OnPremiseVantagePointId string
OpvpId string
The OCID of the On-premise vantage point.
OpvpName string
On-premise vantage point name.
Priority int
Priority of the On-premise VP worker to schedule monitors.
ResourcePrincipalTokenPublicKey string
RuntimeId string
The runtime assigned id of the On-premise VP worker.
Status string
Enables or disables the On-premise VP worker.
TimeCreated string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeLastSyncUp string
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeUpdated string
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
Version string
Current image version of the On-premise VP worker.
VersionDetails []GetOnPremiseVantagePointWorkerVersionDetail
Image version details of the On-premise VP worker.
WorkerId string
WorkerType string
Type of the On-premise VP worker.
apmDomainId String
configurationDetails String
Configuration details of the On-premise VP worker.
definedTags Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
Unique name that can be edited. The name should not contain any confidential information.
freeformTags 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"}
geoInfo String
Geographical information of the On-premise VP worker.
id String
The OCID of the monitor.
identityInfos List<GetOnPremiseVantagePointWorkerIdentityInfo>
Domain details of the On-premise VP worker.
monitorLists List<GetOnPremiseVantagePointWorkerMonitorList>
Monitors list assigned to the On-premise VP worker.
name String
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
onPremiseVantagePointId String
opvpId String
The OCID of the On-premise vantage point.
opvpName String
On-premise vantage point name.
priority Integer
Priority of the On-premise VP worker to schedule monitors.
resourcePrincipalTokenPublicKey String
runtimeId String
The runtime assigned id of the On-premise VP worker.
status String
Enables or disables the On-premise VP worker.
timeCreated String
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp String
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeUpdated String
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
version String
Current image version of the On-premise VP worker.
versionDetails List<GetOnPremiseVantagePointWorkerVersionDetail>
Image version details of the On-premise VP worker.
workerId String
workerType String
Type of the On-premise VP worker.
apmDomainId string
configurationDetails string
Configuration details of the On-premise VP worker.
definedTags {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName string
Unique name that can be edited. The name should not contain any confidential information.
freeformTags {[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"}
geoInfo string
Geographical information of the On-premise VP worker.
id string
The OCID of the monitor.
identityInfos GetOnPremiseVantagePointWorkerIdentityInfo[]
Domain details of the On-premise VP worker.
monitorLists GetOnPremiseVantagePointWorkerMonitorList[]
Monitors list assigned to the On-premise VP worker.
name string
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
onPremiseVantagePointId string
opvpId string
The OCID of the On-premise vantage point.
opvpName string
On-premise vantage point name.
priority number
Priority of the On-premise VP worker to schedule monitors.
resourcePrincipalTokenPublicKey string
runtimeId string
The runtime assigned id of the On-premise VP worker.
status string
Enables or disables the On-premise VP worker.
timeCreated string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp string
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeUpdated string
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
version string
Current image version of the On-premise VP worker.
versionDetails GetOnPremiseVantagePointWorkerVersionDetail[]
Image version details of the On-premise VP worker.
workerId string
workerType string
Type of the On-premise VP worker.
apm_domain_id str
configuration_details str
Configuration details of the On-premise VP worker.
defined_tags 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 str
Unique name that can be edited. The name should not contain any confidential information.
freeform_tags 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"}
geo_info str
Geographical information of the On-premise VP worker.
id str
The OCID of the monitor.
identity_infos Sequence[apmsynthetics.GetOnPremiseVantagePointWorkerIdentityInfo]
Domain details of the On-premise VP worker.
monitor_lists Sequence[apmsynthetics.GetOnPremiseVantagePointWorkerMonitorList]
Monitors list assigned to the On-premise VP worker.
name str
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
on_premise_vantage_point_id str
opvp_id str
The OCID of the On-premise vantage point.
opvp_name str
On-premise vantage point name.
priority int
Priority of the On-premise VP worker to schedule monitors.
resource_principal_token_public_key str
runtime_id str
The runtime assigned id of the On-premise VP worker.
status str
Enables or disables the On-premise VP worker.
time_created str
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
time_last_sync_up str
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
time_updated str
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
version str
Current image version of the On-premise VP worker.
version_details Sequence[apmsynthetics.GetOnPremiseVantagePointWorkerVersionDetail]
Image version details of the On-premise VP worker.
worker_id str
worker_type str
Type of the On-premise VP worker.
apmDomainId String
configurationDetails String
Configuration details of the On-premise VP worker.
definedTags Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
Unique name that can be edited. The name should not contain any confidential information.
freeformTags 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"}
geoInfo String
Geographical information of the On-premise VP worker.
id String
The OCID of the monitor.
identityInfos List<Property Map>
Domain details of the On-premise VP worker.
monitorLists List<Property Map>
Monitors list assigned to the On-premise VP worker.
name String
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
onPremiseVantagePointId String
opvpId String
The OCID of the On-premise vantage point.
opvpName String
On-premise vantage point name.
priority Number
Priority of the On-premise VP worker to schedule monitors.
resourcePrincipalTokenPublicKey String
runtimeId String
The runtime assigned id of the On-premise VP worker.
status String
Enables or disables the On-premise VP worker.
timeCreated String
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp String
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeUpdated String
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
version String
Current image version of the On-premise VP worker.
versionDetails List<Property Map>
Image version details of the On-premise VP worker.
workerId String
workerType String
Type of the On-premise VP worker.

Supporting Types

GetOnPremiseVantagePointWorkerIdentityInfo

ApmShortId This property is required. string
Domain short id of the On-premise VP worker.
CollectorEndPoint This property is required. string
Collector endpoint of the On-premise VP worker.
RegionName This property is required. string
Domain region of the On-premise VP worker.
ApmShortId This property is required. string
Domain short id of the On-premise VP worker.
CollectorEndPoint This property is required. string
Collector endpoint of the On-premise VP worker.
RegionName This property is required. string
Domain region of the On-premise VP worker.
apmShortId This property is required. String
Domain short id of the On-premise VP worker.
collectorEndPoint This property is required. String
Collector endpoint of the On-premise VP worker.
regionName This property is required. String
Domain region of the On-premise VP worker.
apmShortId This property is required. string
Domain short id of the On-premise VP worker.
collectorEndPoint This property is required. string
Collector endpoint of the On-premise VP worker.
regionName This property is required. string
Domain region of the On-premise VP worker.
apm_short_id This property is required. str
Domain short id of the On-premise VP worker.
collector_end_point This property is required. str
Collector endpoint of the On-premise VP worker.
region_name This property is required. str
Domain region of the On-premise VP worker.
apmShortId This property is required. String
Domain short id of the On-premise VP worker.
collectorEndPoint This property is required. String
Collector endpoint of the On-premise VP worker.
regionName This property is required. String
Domain region of the On-premise VP worker.

GetOnPremiseVantagePointWorkerMonitorList

DisplayName This property is required. string
Unique name that can be edited. The name should not contain any confidential information.
Id This property is required. string
The OCID of the monitor.
IsRunNow This property is required. bool
If isRunNow is enabled, then the monitor will run immediately.
MonitorType This property is required. string
Type of monitor.
TimeAssigned This property is required. string
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
DisplayName This property is required. string
Unique name that can be edited. The name should not contain any confidential information.
Id This property is required. string
The OCID of the monitor.
IsRunNow This property is required. bool
If isRunNow is enabled, then the monitor will run immediately.
MonitorType This property is required. string
Type of monitor.
TimeAssigned This property is required. string
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
displayName This property is required. String
Unique name that can be edited. The name should not contain any confidential information.
id This property is required. String
The OCID of the monitor.
isRunNow This property is required. Boolean
If isRunNow is enabled, then the monitor will run immediately.
monitorType This property is required. String
Type of monitor.
timeAssigned This property is required. String
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
displayName This property is required. string
Unique name that can be edited. The name should not contain any confidential information.
id This property is required. string
The OCID of the monitor.
isRunNow This property is required. boolean
If isRunNow is enabled, then the monitor will run immediately.
monitorType This property is required. string
Type of monitor.
timeAssigned This property is required. string
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
display_name This property is required. str
Unique name that can be edited. The name should not contain any confidential information.
id This property is required. str
The OCID of the monitor.
is_run_now This property is required. bool
If isRunNow is enabled, then the monitor will run immediately.
monitor_type This property is required. str
Type of monitor.
time_assigned This property is required. str
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
displayName This property is required. String
Unique name that can be edited. The name should not contain any confidential information.
id This property is required. String
The OCID of the monitor.
isRunNow This property is required. Boolean
If isRunNow is enabled, then the monitor will run immediately.
monitorType This property is required. String
Type of monitor.
timeAssigned This property is required. String
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

GetOnPremiseVantagePointWorkerVersionDetail

LatestVersion This property is required. string
Latest image version of the On-premise VP worker.
MinSupportedVersion This property is required. string
Minimum supported image version of the On-premise VP worker.
Version This property is required. string
Current image version of the On-premise VP worker.
LatestVersion This property is required. string
Latest image version of the On-premise VP worker.
MinSupportedVersion This property is required. string
Minimum supported image version of the On-premise VP worker.
Version This property is required. string
Current image version of the On-premise VP worker.
latestVersion This property is required. String
Latest image version of the On-premise VP worker.
minSupportedVersion This property is required. String
Minimum supported image version of the On-premise VP worker.
version This property is required. String
Current image version of the On-premise VP worker.
latestVersion This property is required. string
Latest image version of the On-premise VP worker.
minSupportedVersion This property is required. string
Minimum supported image version of the On-premise VP worker.
version This property is required. string
Current image version of the On-premise VP worker.
latest_version This property is required. str
Latest image version of the On-premise VP worker.
min_supported_version This property is required. str
Minimum supported image version of the On-premise VP worker.
version This property is required. str
Current image version of the On-premise VP worker.
latestVersion This property is required. String
Latest image version of the On-premise VP worker.
minSupportedVersion This property is required. String
Minimum supported image version of the On-premise VP worker.
version This property is required. String
Current image version of the On-premise VP worker.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi