oci.ApmSynthetics.OnPremiseVantagePointWorker
Explore with Pulumi AI
This resource provides the On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure Apm Synthetics service.
Registers a new worker.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOnPremiseVantagePointWorker = new oci.apmsynthetics.OnPremiseVantagePointWorker("test_on_premise_vantage_point_worker", {
apmDomainId: testApmDomain.id,
name: onPremiseVantagePointWorkerName,
onPremiseVantagePointId: testOnPremiseVantagePoint.id,
resourcePrincipalTokenPublicKey: onPremiseVantagePointWorkerResourcePrincipalTokenPublicKey,
version: onPremiseVantagePointWorkerVersion,
configurationDetails: onPremiseVantagePointWorkerConfigurationDetails,
definedTags: {
"foo-namespace.bar-key": "value",
},
freeformTags: {
"bar-key": "value",
},
priority: onPremiseVantagePointWorkerPriority,
status: onPremiseVantagePointWorkerStatus,
workerType: onPremiseVantagePointWorkerWorkerType,
});
import pulumi
import pulumi_oci as oci
test_on_premise_vantage_point_worker = oci.apm_synthetics.OnPremiseVantagePointWorker("test_on_premise_vantage_point_worker",
apm_domain_id=test_apm_domain["id"],
name=on_premise_vantage_point_worker_name,
on_premise_vantage_point_id=test_on_premise_vantage_point["id"],
resource_principal_token_public_key=on_premise_vantage_point_worker_resource_principal_token_public_key,
version=on_premise_vantage_point_worker_version,
configuration_details=on_premise_vantage_point_worker_configuration_details,
defined_tags={
"foo-namespace.bar-key": "value",
},
freeform_tags={
"bar-key": "value",
},
priority=on_premise_vantage_point_worker_priority,
status=on_premise_vantage_point_worker_status,
worker_type=on_premise_vantage_point_worker_worker_type)
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.NewOnPremiseVantagePointWorker(ctx, "test_on_premise_vantage_point_worker", &ApmSynthetics.OnPremiseVantagePointWorkerArgs{
ApmDomainId: pulumi.Any(testApmDomain.Id),
Name: pulumi.Any(onPremiseVantagePointWorkerName),
OnPremiseVantagePointId: pulumi.Any(testOnPremiseVantagePoint.Id),
ResourcePrincipalTokenPublicKey: pulumi.Any(onPremiseVantagePointWorkerResourcePrincipalTokenPublicKey),
Version: pulumi.Any(onPremiseVantagePointWorkerVersion),
ConfigurationDetails: pulumi.Any(onPremiseVantagePointWorkerConfigurationDetails),
DefinedTags: pulumi.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("value"),
},
Priority: pulumi.Any(onPremiseVantagePointWorkerPriority),
Status: pulumi.Any(onPremiseVantagePointWorkerStatus),
WorkerType: pulumi.Any(onPremiseVantagePointWorkerWorkerType),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testOnPremiseVantagePointWorker = new Oci.ApmSynthetics.OnPremiseVantagePointWorker("test_on_premise_vantage_point_worker", new()
{
ApmDomainId = testApmDomain.Id,
Name = onPremiseVantagePointWorkerName,
OnPremiseVantagePointId = testOnPremiseVantagePoint.Id,
ResourcePrincipalTokenPublicKey = onPremiseVantagePointWorkerResourcePrincipalTokenPublicKey,
Version = onPremiseVantagePointWorkerVersion,
ConfigurationDetails = onPremiseVantagePointWorkerConfigurationDetails,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
FreeformTags =
{
{ "bar-key", "value" },
},
Priority = onPremiseVantagePointWorkerPriority,
Status = onPremiseVantagePointWorkerStatus,
WorkerType = onPremiseVantagePointWorkerWorkerType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ApmSynthetics.OnPremiseVantagePointWorker;
import com.pulumi.oci.ApmSynthetics.OnPremiseVantagePointWorkerArgs;
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) {
var testOnPremiseVantagePointWorker = new OnPremiseVantagePointWorker("testOnPremiseVantagePointWorker", OnPremiseVantagePointWorkerArgs.builder()
.apmDomainId(testApmDomain.id())
.name(onPremiseVantagePointWorkerName)
.onPremiseVantagePointId(testOnPremiseVantagePoint.id())
.resourcePrincipalTokenPublicKey(onPremiseVantagePointWorkerResourcePrincipalTokenPublicKey)
.version(onPremiseVantagePointWorkerVersion)
.configurationDetails(onPremiseVantagePointWorkerConfigurationDetails)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.freeformTags(Map.of("bar-key", "value"))
.priority(onPremiseVantagePointWorkerPriority)
.status(onPremiseVantagePointWorkerStatus)
.workerType(onPremiseVantagePointWorkerWorkerType)
.build());
}
}
resources:
testOnPremiseVantagePointWorker:
type: oci:ApmSynthetics:OnPremiseVantagePointWorker
name: test_on_premise_vantage_point_worker
properties:
apmDomainId: ${testApmDomain.id}
name: ${onPremiseVantagePointWorkerName}
onPremiseVantagePointId: ${testOnPremiseVantagePoint.id}
resourcePrincipalTokenPublicKey: ${onPremiseVantagePointWorkerResourcePrincipalTokenPublicKey}
version: ${onPremiseVantagePointWorkerVersion}
configurationDetails: ${onPremiseVantagePointWorkerConfigurationDetails}
definedTags:
foo-namespace.bar-key: value
freeformTags:
bar-key: value
priority: ${onPremiseVantagePointWorkerPriority}
status: ${onPremiseVantagePointWorkerStatus}
workerType: ${onPremiseVantagePointWorkerWorkerType}
Create OnPremiseVantagePointWorker Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OnPremiseVantagePointWorker(name: string, args: OnPremiseVantagePointWorkerArgs, opts?: CustomResourceOptions);
@overload
def OnPremiseVantagePointWorker(resource_name: str,
args: OnPremiseVantagePointWorkerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OnPremiseVantagePointWorker(resource_name: str,
opts: Optional[ResourceOptions] = None,
apm_domain_id: Optional[str] = None,
on_premise_vantage_point_id: Optional[str] = None,
resource_principal_token_public_key: Optional[str] = None,
version: Optional[str] = None,
configuration_details: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
priority: Optional[int] = None,
status: Optional[str] = None,
worker_type: Optional[str] = None)
func NewOnPremiseVantagePointWorker(ctx *Context, name string, args OnPremiseVantagePointWorkerArgs, opts ...ResourceOption) (*OnPremiseVantagePointWorker, error)
public OnPremiseVantagePointWorker(string name, OnPremiseVantagePointWorkerArgs args, CustomResourceOptions? opts = null)
public OnPremiseVantagePointWorker(String name, OnPremiseVantagePointWorkerArgs args)
public OnPremiseVantagePointWorker(String name, OnPremiseVantagePointWorkerArgs args, CustomResourceOptions options)
type: oci:ApmSynthetics:OnPremiseVantagePointWorker
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args OnPremiseVantagePointWorkerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OnPremiseVantagePointWorkerArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OnPremiseVantagePointWorkerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OnPremiseVantagePointWorkerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OnPremiseVantagePointWorkerArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var onPremiseVantagePointWorkerResource = new Oci.ApmSynthetics.OnPremiseVantagePointWorker("onPremiseVantagePointWorkerResource", new()
{
ApmDomainId = "string",
OnPremiseVantagePointId = "string",
ResourcePrincipalTokenPublicKey = "string",
Version = "string",
ConfigurationDetails = "string",
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
Name = "string",
Priority = 0,
Status = "string",
WorkerType = "string",
});
example, err := ApmSynthetics.NewOnPremiseVantagePointWorker(ctx, "onPremiseVantagePointWorkerResource", &ApmSynthetics.OnPremiseVantagePointWorkerArgs{
ApmDomainId: pulumi.String("string"),
OnPremiseVantagePointId: pulumi.String("string"),
ResourcePrincipalTokenPublicKey: pulumi.String("string"),
Version: pulumi.String("string"),
ConfigurationDetails: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
Priority: pulumi.Int(0),
Status: pulumi.String("string"),
WorkerType: pulumi.String("string"),
})
var onPremiseVantagePointWorkerResource = new OnPremiseVantagePointWorker("onPremiseVantagePointWorkerResource", OnPremiseVantagePointWorkerArgs.builder()
.apmDomainId("string")
.onPremiseVantagePointId("string")
.resourcePrincipalTokenPublicKey("string")
.version("string")
.configurationDetails("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.name("string")
.priority(0)
.status("string")
.workerType("string")
.build());
on_premise_vantage_point_worker_resource = oci.apm_synthetics.OnPremiseVantagePointWorker("onPremiseVantagePointWorkerResource",
apm_domain_id="string",
on_premise_vantage_point_id="string",
resource_principal_token_public_key="string",
version="string",
configuration_details="string",
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
},
name="string",
priority=0,
status="string",
worker_type="string")
const onPremiseVantagePointWorkerResource = new oci.apmsynthetics.OnPremiseVantagePointWorker("onPremiseVantagePointWorkerResource", {
apmDomainId: "string",
onPremiseVantagePointId: "string",
resourcePrincipalTokenPublicKey: "string",
version: "string",
configurationDetails: "string",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
name: "string",
priority: 0,
status: "string",
workerType: "string",
});
type: oci:ApmSynthetics:OnPremiseVantagePointWorker
properties:
apmDomainId: string
configurationDetails: string
definedTags:
string: string
freeformTags:
string: string
name: string
onPremiseVantagePointId: string
priority: 0
resourcePrincipalTokenPublicKey: string
status: string
version: string
workerType: string
OnPremiseVantagePointWorker Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The OnPremiseVantagePointWorker resource accepts the following input properties:
- Apm
Domain stringId - (Updatable) The APM domain ID the request is intended for.
- On
Premise stringVantage Point Id - The OCID of the On-premise vantage point.
- Resource
Principal stringToken Public Key - public key for resource Principal Token based validation to be used in further calls.
- Version string
- Image version of the On-premise VP worker.
- Configuration
Details string - (Updatable) Configuration details of the On-premise VP worker.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Name string
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- Priority int
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- Status string
- (Updatable) Enables or disables the On-premise VP worker.
- Worker
Type string Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Apm
Domain stringId - (Updatable) The APM domain ID the request is intended for.
- On
Premise stringVantage Point Id - The OCID of the On-premise vantage point.
- Resource
Principal stringToken Public Key - public key for resource Principal Token based validation to be used in further calls.
- Version string
- Image version of the On-premise VP worker.
- Configuration
Details string - (Updatable) Configuration details of the On-premise VP worker.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Name string
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- Priority int
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- Status string
- (Updatable) Enables or disables the On-premise VP worker.
- Worker
Type string Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- apm
Domain StringId - (Updatable) The APM domain ID the request is intended for.
- on
Premise StringVantage Point Id - The OCID of the On-premise vantage point.
- resource
Principal StringToken Public Key - public key for resource Principal Token based validation to be used in further calls.
- version String
- Image version of the On-premise VP worker.
- configuration
Details String - (Updatable) Configuration details of the On-premise VP worker.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name String
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- priority Integer
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- status String
- (Updatable) Enables or disables the On-premise VP worker.
- worker
Type String Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- apm
Domain stringId - (Updatable) The APM domain ID the request is intended for.
- on
Premise stringVantage Point Id - The OCID of the On-premise vantage point.
- resource
Principal stringToken Public Key - public key for resource Principal Token based validation to be used in further calls.
- version string
- Image version of the On-premise VP worker.
- configuration
Details string - (Updatable) Configuration details of the On-premise VP worker.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name string
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- priority number
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- status string
- (Updatable) Enables or disables the On-premise VP worker.
- worker
Type string Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- apm_
domain_ strid - (Updatable) The APM domain ID the request is intended for.
- on_
premise_ strvantage_ point_ id - The OCID of the On-premise vantage point.
- resource_
principal_ strtoken_ public_ key - public key for resource Principal Token based validation to be used in further calls.
- version str
- Image version of the On-premise VP worker.
- configuration_
details str - (Updatable) Configuration details of the On-premise VP worker.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name str
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- priority int
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- status str
- (Updatable) Enables or disables the On-premise VP worker.
- worker_
type str Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- apm
Domain StringId - (Updatable) The APM domain ID the request is intended for.
- on
Premise StringVantage Point Id - The OCID of the On-premise vantage point.
- resource
Principal StringToken Public Key - public key for resource Principal Token based validation to be used in further calls.
- version String
- Image version of the On-premise VP worker.
- configuration
Details String - (Updatable) Configuration details of the On-premise VP worker.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name String
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- priority Number
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- status String
- (Updatable) Enables or disables the On-premise VP worker.
- worker
Type String Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the OnPremiseVantagePointWorker resource produces the following output properties:
- Display
Name string - Unique name that can be edited. The name should not contain any confidential information.
- Geo
Info string - Geographical information of the On-premise VP worker.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identity
Infos List<OnPremise Vantage Point Worker Identity Info> - Domain details of the On-premise VP worker.
- Monitor
Lists List<OnPremise Vantage Point Worker Monitor List> - Monitors list assigned to the On-premise VP worker.
- Opvp
Id string - The OCID of the On-premise vantage point.
- Opvp
Name string - On-premise vantage point name.
- Runtime
Id string - The runtime assigned id of the On-premise VP worker.
- Time
Created string - The time the resource was created, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- Time
Last stringSync Up - The time the resource was last synced, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- Time
Updated string - The time the resource was updated, expressed in RFC 3339 timestamp format. Example:
2020-02-13T22:47:12.613Z
- Version
Details List<OnPremise Vantage Point Worker Version Detail> - Image version details of the On-premise VP worker.
- Display
Name string - Unique name that can be edited. The name should not contain any confidential information.
- Geo
Info string - Geographical information of the On-premise VP worker.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identity
Infos []OnPremise Vantage Point Worker Identity Info - Domain details of the On-premise VP worker.
- Monitor
Lists []OnPremise Vantage Point Worker Monitor List - Monitors list assigned to the On-premise VP worker.
- Opvp
Id string - The OCID of the On-premise vantage point.
- Opvp
Name string - On-premise vantage point name.
- Runtime
Id string - The runtime assigned id of the On-premise VP worker.
- Time
Created string - The time the resource was created, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- Time
Last stringSync Up - The time the resource was last synced, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- Time
Updated string - The time the resource was updated, expressed in RFC 3339 timestamp format. Example:
2020-02-13T22:47:12.613Z
- Version
Details []OnPremise Vantage Point Worker Version Detail - Image version details of the On-premise VP worker.
- display
Name String - Unique name that can be edited. The name should not contain any confidential information.
- geo
Info String - Geographical information of the On-premise VP worker.
- id String
- The provider-assigned unique ID for this managed resource.
- identity
Infos List<OnPremise Vantage Point Worker Identity Info> - Domain details of the On-premise VP worker.
- monitor
Lists List<OnPremise Vantage Point Worker Monitor List> - Monitors list assigned to the On-premise VP worker.
- opvp
Id String - The OCID of the On-premise vantage point.
- opvp
Name String - On-premise vantage point name.
- runtime
Id String - The runtime assigned id of the On-premise VP worker.
- time
Created String - The time the resource was created, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Last StringSync Up - The time the resource was last synced, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Updated String - The time the resource was updated, expressed in RFC 3339 timestamp format. Example:
2020-02-13T22:47:12.613Z
- version
Details List<OnPremise Vantage Point Worker Version Detail> - Image version details of the On-premise VP worker.
- display
Name string - Unique name that can be edited. The name should not contain any confidential information.
- geo
Info string - Geographical information of the On-premise VP worker.
- id string
- The provider-assigned unique ID for this managed resource.
- identity
Infos OnPremise Vantage Point Worker Identity Info[] - Domain details of the On-premise VP worker.
- monitor
Lists OnPremise Vantage Point Worker Monitor List[] - Monitors list assigned to the On-premise VP worker.
- opvp
Id string - The OCID of the On-premise vantage point.
- opvp
Name string - On-premise vantage point name.
- runtime
Id string - The runtime assigned id of the On-premise VP worker.
- time
Created string - The time the resource was created, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Last stringSync Up - The time the resource was last synced, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Updated string - The time the resource was updated, expressed in RFC 3339 timestamp format. Example:
2020-02-13T22:47:12.613Z
- version
Details OnPremise Vantage Point Worker Version Detail[] - Image version details of the On-premise VP worker.
- display_
name str - Unique name that can be edited. The name should not contain any confidential information.
- geo_
info str - Geographical information of the On-premise VP worker.
- id str
- The provider-assigned unique ID for this managed resource.
- identity_
infos Sequence[apmsynthetics.On Premise Vantage Point Worker Identity Info] - Domain details of the On-premise VP worker.
- monitor_
lists Sequence[apmsynthetics.On Premise Vantage Point Worker Monitor List] - Monitors list assigned to the On-premise VP worker.
- opvp_
id str - The OCID of the On-premise vantage point.
- opvp_
name str - On-premise vantage point name.
- runtime_
id str - The runtime assigned id of 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_ strsync_ up - 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_
details Sequence[apmsynthetics.On Premise Vantage Point Worker Version Detail] - Image version details of the On-premise VP worker.
- display
Name String - Unique name that can be edited. The name should not contain any confidential information.
- geo
Info String - Geographical information of the On-premise VP worker.
- id String
- The provider-assigned unique ID for this managed resource.
- identity
Infos List<Property Map> - Domain details of the On-premise VP worker.
- monitor
Lists List<Property Map> - Monitors list assigned to the On-premise VP worker.
- opvp
Id String - The OCID of the On-premise vantage point.
- opvp
Name String - On-premise vantage point name.
- runtime
Id String - The runtime assigned id of the On-premise VP worker.
- time
Created String - The time the resource was created, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Last StringSync Up - The time the resource was last synced, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Updated String - The time the resource was updated, expressed in RFC 3339 timestamp format. Example:
2020-02-13T22:47:12.613Z
- version
Details List<Property Map> - Image version details of the On-premise VP worker.
Look up Existing OnPremiseVantagePointWorker Resource
Get an existing OnPremiseVantagePointWorker resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OnPremiseVantagePointWorkerState, opts?: CustomResourceOptions): OnPremiseVantagePointWorker
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
apm_domain_id: Optional[str] = None,
configuration_details: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
geo_info: Optional[str] = None,
identity_infos: Optional[Sequence[_apmsynthetics.OnPremiseVantagePointWorkerIdentityInfoArgs]] = None,
monitor_lists: Optional[Sequence[_apmsynthetics.OnPremiseVantagePointWorkerMonitorListArgs]] = None,
name: Optional[str] = None,
on_premise_vantage_point_id: Optional[str] = None,
opvp_id: Optional[str] = None,
opvp_name: Optional[str] = None,
priority: Optional[int] = None,
resource_principal_token_public_key: Optional[str] = None,
runtime_id: Optional[str] = None,
status: Optional[str] = None,
time_created: Optional[str] = None,
time_last_sync_up: Optional[str] = None,
time_updated: Optional[str] = None,
version: Optional[str] = None,
version_details: Optional[Sequence[_apmsynthetics.OnPremiseVantagePointWorkerVersionDetailArgs]] = None,
worker_type: Optional[str] = None) -> OnPremiseVantagePointWorker
func GetOnPremiseVantagePointWorker(ctx *Context, name string, id IDInput, state *OnPremiseVantagePointWorkerState, opts ...ResourceOption) (*OnPremiseVantagePointWorker, error)
public static OnPremiseVantagePointWorker Get(string name, Input<string> id, OnPremiseVantagePointWorkerState? state, CustomResourceOptions? opts = null)
public static OnPremiseVantagePointWorker get(String name, Output<String> id, OnPremiseVantagePointWorkerState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Apm
Domain stringId - (Updatable) The APM domain ID the request is intended for.
- Configuration
Details string - (Updatable) Configuration details of the On-premise VP worker.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - Unique name that can be edited. The name should not contain any confidential information.
- Dictionary<string, string>
- (Updatable) 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 string - Geographical information of the On-premise VP worker.
- Identity
Infos List<OnPremise Vantage Point Worker Identity Info> - Domain details of the On-premise VP worker.
- Monitor
Lists List<OnPremise Vantage Point Worker Monitor List> - Monitors list assigned to the On-premise VP worker.
- Name string
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- On
Premise stringVantage Point Id - The OCID of the On-premise vantage point.
- Opvp
Id string - The OCID of the On-premise vantage point.
- Opvp
Name string - On-premise vantage point name.
- Priority int
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- Resource
Principal stringToken Public Key - public key for resource Principal Token based validation to be used in further calls.
- Runtime
Id string - The runtime assigned id of the On-premise VP worker.
- Status string
- (Updatable) Enables or disables the On-premise VP worker.
- Time
Created string - The time the resource was created, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- Time
Last stringSync Up - The time the resource was last synced, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- Time
Updated string - The time the resource was updated, expressed in RFC 3339 timestamp format. Example:
2020-02-13T22:47:12.613Z
- Version string
- Image version of the On-premise VP worker.
- Version
Details List<OnPremise Vantage Point Worker Version Detail> - Image version details of the On-premise VP worker.
- Worker
Type string Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Apm
Domain stringId - (Updatable) The APM domain ID the request is intended for.
- Configuration
Details string - (Updatable) Configuration details of the On-premise VP worker.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - Unique name that can be edited. The name should not contain any confidential information.
- map[string]string
- (Updatable) 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 string - Geographical information of the On-premise VP worker.
- Identity
Infos []OnPremise Vantage Point Worker Identity Info Args - Domain details of the On-premise VP worker.
- Monitor
Lists []OnPremise Vantage Point Worker Monitor List Args - Monitors list assigned to the On-premise VP worker.
- Name string
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- On
Premise stringVantage Point Id - The OCID of the On-premise vantage point.
- Opvp
Id string - The OCID of the On-premise vantage point.
- Opvp
Name string - On-premise vantage point name.
- Priority int
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- Resource
Principal stringToken Public Key - public key for resource Principal Token based validation to be used in further calls.
- Runtime
Id string - The runtime assigned id of the On-premise VP worker.
- Status string
- (Updatable) Enables or disables the On-premise VP worker.
- Time
Created string - The time the resource was created, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- Time
Last stringSync Up - The time the resource was last synced, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- Time
Updated string - The time the resource was updated, expressed in RFC 3339 timestamp format. Example:
2020-02-13T22:47:12.613Z
- Version string
- Image version of the On-premise VP worker.
- Version
Details []OnPremise Vantage Point Worker Version Detail Args - Image version details of the On-premise VP worker.
- Worker
Type string Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- apm
Domain StringId - (Updatable) The APM domain ID the request is intended for.
- configuration
Details String - (Updatable) Configuration details of the On-premise VP worker.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - Unique name that can be edited. The name should not contain any confidential information.
- Map<String,String>
- (Updatable) 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 String - Geographical information of the On-premise VP worker.
- identity
Infos List<OnPremise Vantage Point Worker Identity Info> - Domain details of the On-premise VP worker.
- monitor
Lists List<OnPremise Vantage Point Worker Monitor List> - Monitors list assigned to the On-premise VP worker.
- name String
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- on
Premise StringVantage Point Id - The OCID of the On-premise vantage point.
- opvp
Id String - The OCID of the On-premise vantage point.
- opvp
Name String - On-premise vantage point name.
- priority Integer
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- resource
Principal StringToken Public Key - public key for resource Principal Token based validation to be used in further calls.
- runtime
Id String - The runtime assigned id of the On-premise VP worker.
- status String
- (Updatable) Enables or disables the On-premise VP worker.
- time
Created String - The time the resource was created, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Last StringSync Up - The time the resource was last synced, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Updated String - The time the resource was updated, expressed in RFC 3339 timestamp format. Example:
2020-02-13T22:47:12.613Z
- version String
- Image version of the On-premise VP worker.
- version
Details List<OnPremise Vantage Point Worker Version Detail> - Image version details of the On-premise VP worker.
- worker
Type String Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- apm
Domain stringId - (Updatable) The APM domain ID the request is intended for.
- configuration
Details string - (Updatable) Configuration details of the On-premise VP worker.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - Unique name that can be edited. The name should not contain any confidential information.
- {[key: string]: string}
- (Updatable) 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 string - Geographical information of the On-premise VP worker.
- identity
Infos OnPremise Vantage Point Worker Identity Info[] - Domain details of the On-premise VP worker.
- monitor
Lists OnPremise Vantage Point Worker Monitor List[] - Monitors list assigned to the On-premise VP worker.
- name string
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- on
Premise stringVantage Point Id - The OCID of the On-premise vantage point.
- opvp
Id string - The OCID of the On-premise vantage point.
- opvp
Name string - On-premise vantage point name.
- priority number
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- resource
Principal stringToken Public Key - public key for resource Principal Token based validation to be used in further calls.
- runtime
Id string - The runtime assigned id of the On-premise VP worker.
- status string
- (Updatable) Enables or disables the On-premise VP worker.
- time
Created string - The time the resource was created, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Last stringSync Up - The time the resource was last synced, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Updated string - The time the resource was updated, expressed in RFC 3339 timestamp format. Example:
2020-02-13T22:47:12.613Z
- version string
- Image version of the On-premise VP worker.
- version
Details OnPremise Vantage Point Worker Version Detail[] - Image version details of the On-premise VP worker.
- worker
Type string Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- apm_
domain_ strid - (Updatable) The APM domain ID the request is intended for.
- configuration_
details str - (Updatable) Configuration details of the On-premise VP worker.
- Mapping[str, str]
- (Updatable) 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.
- Mapping[str, str]
- (Updatable) 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.
- identity_
infos Sequence[apmsynthetics.On Premise Vantage Point Worker Identity Info Args] - Domain details of the On-premise VP worker.
- monitor_
lists Sequence[apmsynthetics.On Premise Vantage Point Worker Monitor List Args] - Monitors list assigned to the On-premise VP worker.
- name str
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- on_
premise_ strvantage_ point_ id - The OCID of the On-premise vantage point.
- opvp_
id str - The OCID of the On-premise vantage point.
- opvp_
name str - On-premise vantage point name.
- priority int
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- resource_
principal_ strtoken_ public_ key - public key for resource Principal Token based validation to be used in further calls.
- runtime_
id str - The runtime assigned id of the On-premise VP worker.
- status str
- (Updatable) 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_ strsync_ up - 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
- Image version of the On-premise VP worker.
- version_
details Sequence[apmsynthetics.On Premise Vantage Point Worker Version Detail Args] - Image version details of the On-premise VP worker.
- worker_
type str Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- apm
Domain StringId - (Updatable) The APM domain ID the request is intended for.
- configuration
Details String - (Updatable) Configuration details of the On-premise VP worker.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - Unique name that can be edited. The name should not contain any confidential information.
- Map<String>
- (Updatable) 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 String - Geographical information of the On-premise VP worker.
- identity
Infos List<Property Map> - Domain details of the On-premise VP worker.
- monitor
Lists List<Property Map> - Monitors list assigned to the On-premise VP worker.
- name String
- Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
- on
Premise StringVantage Point Id - The OCID of the On-premise vantage point.
- opvp
Id String - The OCID of the On-premise vantage point.
- opvp
Name String - On-premise vantage point name.
- priority Number
- (Updatable) Priority of the On-premise VP worker to schedule monitors.
- resource
Principal StringToken Public Key - public key for resource Principal Token based validation to be used in further calls.
- runtime
Id String - The runtime assigned id of the On-premise VP worker.
- status String
- (Updatable) Enables or disables the On-premise VP worker.
- time
Created String - The time the resource was created, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Last StringSync Up - The time the resource was last synced, expressed in RFC 3339 timestamp format. Example:
2020-02-12T22:47:12.613Z
- time
Updated String - The time the resource was updated, expressed in RFC 3339 timestamp format. Example:
2020-02-13T22:47:12.613Z
- version String
- Image version of the On-premise VP worker.
- version
Details List<Property Map> - Image version details of the On-premise VP worker.
- worker
Type String Type of the On-premise VP worker.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Supporting Types
OnPremiseVantagePointWorkerIdentityInfo, OnPremiseVantagePointWorkerIdentityInfoArgs
- Apm
Short stringId - Domain short id of the On-premise VP worker.
- Collector
End stringPoint - Collector endpoint of the On-premise VP worker.
- Region
Name string - Domain region of the On-premise VP worker.
- Apm
Short stringId - Domain short id of the On-premise VP worker.
- Collector
End stringPoint - Collector endpoint of the On-premise VP worker.
- Region
Name string - Domain region of the On-premise VP worker.
- apm
Short StringId - Domain short id of the On-premise VP worker.
- collector
End StringPoint - Collector endpoint of the On-premise VP worker.
- region
Name String - Domain region of the On-premise VP worker.
- apm
Short stringId - Domain short id of the On-premise VP worker.
- collector
End stringPoint - Collector endpoint of the On-premise VP worker.
- region
Name string - Domain region of the On-premise VP worker.
- apm_
short_ strid - Domain short id of the On-premise VP worker.
- collector_
end_ strpoint - Collector endpoint of the On-premise VP worker.
- region_
name str - Domain region of the On-premise VP worker.
- apm
Short StringId - Domain short id of the On-premise VP worker.
- collector
End StringPoint - Collector endpoint of the On-premise VP worker.
- region
Name String - Domain region of the On-premise VP worker.
OnPremiseVantagePointWorkerMonitorList, OnPremiseVantagePointWorkerMonitorListArgs
- Display
Name string - Unique name that can be edited. The name should not contain any confidential information.
- Id string
- The OCID of the monitor.
- Is
Run boolNow - If isRunNow is enabled, then the monitor will run immediately.
- Monitor
Type string - Type of monitor.
- Time
Assigned 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 string - Unique name that can be edited. The name should not contain any confidential information.
- Id string
- The OCID of the monitor.
- Is
Run boolNow - If isRunNow is enabled, then the monitor will run immediately.
- Monitor
Type string - Type of monitor.
- Time
Assigned 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 String - Unique name that can be edited. The name should not contain any confidential information.
- id String
- The OCID of the monitor.
- is
Run BooleanNow - If isRunNow is enabled, then the monitor will run immediately.
- monitor
Type String - Type of monitor.
- time
Assigned 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 string - Unique name that can be edited. The name should not contain any confidential information.
- id string
- The OCID of the monitor.
- is
Run booleanNow - If isRunNow is enabled, then the monitor will run immediately.
- monitor
Type string - Type of monitor.
- time
Assigned 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 str - Unique name that can be edited. The name should not contain any confidential information.
- id str
- The OCID of the monitor.
- is_
run_ boolnow - If isRunNow is enabled, then the monitor will run immediately.
- monitor_
type str - Type of monitor.
- time_
assigned 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
- display
Name String - Unique name that can be edited. The name should not contain any confidential information.
- id String
- The OCID of the monitor.
- is
Run BooleanNow - If isRunNow is enabled, then the monitor will run immediately.
- monitor
Type String - Type of monitor.
- time
Assigned 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
OnPremiseVantagePointWorkerVersionDetail, OnPremiseVantagePointWorkerVersionDetailArgs
- Latest
Version string - Latest image version of the On-premise VP worker.
- Min
Supported stringVersion - Minimum supported image version of the On-premise VP worker.
- Version string
- Image version of the On-premise VP worker.
- Latest
Version string - Latest image version of the On-premise VP worker.
- Min
Supported stringVersion - Minimum supported image version of the On-premise VP worker.
- Version string
- Image version of the On-premise VP worker.
- latest
Version String - Latest image version of the On-premise VP worker.
- min
Supported StringVersion - Minimum supported image version of the On-premise VP worker.
- version String
- Image version of the On-premise VP worker.
- latest
Version string - Latest image version of the On-premise VP worker.
- min
Supported stringVersion - Minimum supported image version of the On-premise VP worker.
- version string
- Image version of the On-premise VP worker.
- latest_
version str - Latest image version of the On-premise VP worker.
- min_
supported_ strversion - Minimum supported image version of the On-premise VP worker.
- version str
- Image version of the On-premise VP worker.
- latest
Version String - Latest image version of the On-premise VP worker.
- min
Supported StringVersion - Minimum supported image version of the On-premise VP worker.
- version String
- Image version of the On-premise VP worker.
Import
OnPremiseVantagePointWorkers can be imported using the id
, e.g.
$ pulumi import oci:ApmSynthetics/onPremiseVantagePointWorker:OnPremiseVantagePointWorker test_on_premise_vantage_point_worker "onPremiseVantagePoints/{onPremiseVantagePointId}/workers/{workerId}/apmDomainId/{apmDomainId}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.