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

oci.DataSafe.OnPremConnector

Explore with Pulumi AI

This resource provides the On Prem Connector resource in Oracle Cloud Infrastructure Data Safe service.

Creates a new on-premises connector.

Example Usage

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

const testOnPremConnector = new oci.datasafe.OnPremConnector("test_on_prem_connector", {
    compartmentId: compartmentId,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    description: onPremConnectorDescription,
    displayName: onPremConnectorDisplayName,
    freeformTags: {
        Department: "Finance",
    },
});
Copy
import pulumi
import pulumi_oci as oci

test_on_prem_connector = oci.data_safe.OnPremConnector("test_on_prem_connector",
    compartment_id=compartment_id,
    defined_tags={
        "Operations.CostCenter": "42",
    },
    description=on_prem_connector_description,
    display_name=on_prem_connector_display_name,
    freeform_tags={
        "Department": "Finance",
    })
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.NewOnPremConnector(ctx, "test_on_prem_connector", &datasafe.OnPremConnectorArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			Description: pulumi.Any(onPremConnectorDescription),
			DisplayName: pulumi.Any(onPremConnectorDisplayName),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
		})
		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 testOnPremConnector = new Oci.DataSafe.OnPremConnector("test_on_prem_connector", new()
    {
        CompartmentId = compartmentId,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        Description = onPremConnectorDescription,
        DisplayName = onPremConnectorDisplayName,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.OnPremConnector;
import com.pulumi.oci.DataSafe.OnPremConnectorArgs;
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 testOnPremConnector = new OnPremConnector("testOnPremConnector", OnPremConnectorArgs.builder()
            .compartmentId(compartmentId)
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(onPremConnectorDescription)
            .displayName(onPremConnectorDisplayName)
            .freeformTags(Map.of("Department", "Finance"))
            .build());

    }
}
Copy
resources:
  testOnPremConnector:
    type: oci:DataSafe:OnPremConnector
    name: test_on_prem_connector
    properties:
      compartmentId: ${compartmentId}
      definedTags:
        Operations.CostCenter: '42'
      description: ${onPremConnectorDescription}
      displayName: ${onPremConnectorDisplayName}
      freeformTags:
        Department: Finance
Copy

Create OnPremConnector Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new OnPremConnector(name: string, args: OnPremConnectorArgs, opts?: CustomResourceOptions);
@overload
def OnPremConnector(resource_name: str,
                    args: OnPremConnectorArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def OnPremConnector(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    compartment_id: Optional[str] = None,
                    defined_tags: Optional[Mapping[str, str]] = None,
                    description: Optional[str] = None,
                    display_name: Optional[str] = None,
                    freeform_tags: Optional[Mapping[str, str]] = None)
func NewOnPremConnector(ctx *Context, name string, args OnPremConnectorArgs, opts ...ResourceOption) (*OnPremConnector, error)
public OnPremConnector(string name, OnPremConnectorArgs args, CustomResourceOptions? opts = null)
public OnPremConnector(String name, OnPremConnectorArgs args)
public OnPremConnector(String name, OnPremConnectorArgs args, CustomResourceOptions options)
type: oci:DataSafe:OnPremConnector
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. OnPremConnectorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. OnPremConnectorArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. OnPremConnectorArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OnPremConnectorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OnPremConnectorArgs
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 onPremConnectorResource = new Oci.DataSafe.OnPremConnector("onPremConnectorResource", new()
{
    CompartmentId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := DataSafe.NewOnPremConnector(ctx, "onPremConnectorResource", &DataSafe.OnPremConnectorArgs{
	CompartmentId: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var onPremConnectorResource = new OnPremConnector("onPremConnectorResource", OnPremConnectorArgs.builder()
    .compartmentId("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .build());
Copy
on_prem_connector_resource = oci.data_safe.OnPremConnector("onPremConnectorResource",
    compartment_id="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    display_name="string",
    freeform_tags={
        "string": "string",
    })
Copy
const onPremConnectorResource = new oci.datasafe.OnPremConnector("onPremConnectorResource", {
    compartmentId: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    displayName: "string",
    freeformTags: {
        string: "string",
    },
});
Copy
type: oci:DataSafe:OnPremConnector
properties:
    compartmentId: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
Copy

OnPremConnector Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The OnPremConnector resource accepts the following input properties:

CompartmentId This property is required. string
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
Description string
(Updatable) The description of the on-premises connector.
DisplayName string
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
FreeformTags Dictionary<string, string>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

CompartmentId This property is required. string
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
Description string
(Updatable) The description of the on-premises connector.
DisplayName string
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
FreeformTags map[string]string

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

compartmentId This property is required. String
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description String
(Updatable) The description of the on-premises connector.
displayName String
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
freeformTags Map<String,String>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

compartmentId This property is required. string
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description string
(Updatable) The description of the on-premises connector.
displayName string
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
freeformTags {[key: string]: string}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

compartment_id This property is required. str
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description str
(Updatable) The description of the on-premises connector.
display_name str
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
freeform_tags Mapping[str, str]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

compartmentId This property is required. String
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description String
(Updatable) The description of the on-premises connector.
displayName String
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
freeformTags Map<String>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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 OnPremConnector resource produces the following output properties:

AvailableVersion string
Latest available version of the on-premises connector.
CreatedVersion string
Created version of the on-premises connector.
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
Details about the current state of the on-premises connector.
State string
The current state of the on-premises connector.
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The date and time the on-premises connector was created, in the format defined by RFC3339.
AvailableVersion string
Latest available version of the on-premises connector.
CreatedVersion string
Created version of the on-premises connector.
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
Details about the current state of the on-premises connector.
State string
The current state of the on-premises connector.
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The date and time the on-premises connector was created, in the format defined by RFC3339.
availableVersion String
Latest available version of the on-premises connector.
createdVersion String
Created version of the on-premises connector.
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
Details about the current state of the on-premises connector.
state String
The current state of the on-premises connector.
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The date and time the on-premises connector was created, in the format defined by RFC3339.
availableVersion string
Latest available version of the on-premises connector.
createdVersion string
Created version of the on-premises connector.
id string
The provider-assigned unique ID for this managed resource.
lifecycleDetails string
Details about the current state of the on-premises connector.
state string
The current state of the on-premises connector.
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The date and time the on-premises connector was created, in the format defined by RFC3339.
available_version str
Latest available version of the on-premises connector.
created_version str
Created version of the on-premises connector.
id str
The provider-assigned unique ID for this managed resource.
lifecycle_details str
Details about the current state of the on-premises connector.
state str
The current state of the on-premises connector.
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The date and time the on-premises connector was created, in the format defined by RFC3339.
availableVersion String
Latest available version of the on-premises connector.
createdVersion String
Created version of the on-premises connector.
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
Details about the current state of the on-premises connector.
state String
The current state of the on-premises connector.
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The date and time the on-premises connector was created, in the format defined by RFC3339.

Look up Existing OnPremConnector Resource

Get an existing OnPremConnector 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?: OnPremConnectorState, opts?: CustomResourceOptions): OnPremConnector
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        available_version: Optional[str] = None,
        compartment_id: Optional[str] = None,
        created_version: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        lifecycle_details: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None) -> OnPremConnector
func GetOnPremConnector(ctx *Context, name string, id IDInput, state *OnPremConnectorState, opts ...ResourceOption) (*OnPremConnector, error)
public static OnPremConnector Get(string name, Input<string> id, OnPremConnectorState? state, CustomResourceOptions? opts = null)
public static OnPremConnector get(String name, Output<String> id, OnPremConnectorState state, CustomResourceOptions options)
resources:  _:    type: oci:DataSafe:OnPremConnector    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AvailableVersion string
Latest available version of the on-premises connector.
CompartmentId string
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
CreatedVersion string
Created version of the on-premises connector.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
Description string
(Updatable) The description of the on-premises connector.
DisplayName string
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
FreeformTags Dictionary<string, string>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

LifecycleDetails string
Details about the current state of the on-premises connector.
State string
The current state of the on-premises connector.
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The date and time the on-premises connector was created, in the format defined by RFC3339.
AvailableVersion string
Latest available version of the on-premises connector.
CompartmentId string
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
CreatedVersion string
Created version of the on-premises connector.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
Description string
(Updatable) The description of the on-premises connector.
DisplayName string
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
FreeformTags map[string]string

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

LifecycleDetails string
Details about the current state of the on-premises connector.
State string
The current state of the on-premises connector.
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The date and time the on-premises connector was created, in the format defined by RFC3339.
availableVersion String
Latest available version of the on-premises connector.
compartmentId String
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
createdVersion String
Created version of the on-premises connector.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description String
(Updatable) The description of the on-premises connector.
displayName String
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
freeformTags Map<String,String>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

lifecycleDetails String
Details about the current state of the on-premises connector.
state String
The current state of the on-premises connector.
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The date and time the on-premises connector was created, in the format defined by RFC3339.
availableVersion string
Latest available version of the on-premises connector.
compartmentId string
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
createdVersion string
Created version of the on-premises connector.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description string
(Updatable) The description of the on-premises connector.
displayName string
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
freeformTags {[key: string]: string}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

lifecycleDetails string
Details about the current state of the on-premises connector.
state string
The current state of the on-premises connector.
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The date and time the on-premises connector was created, in the format defined by RFC3339.
available_version str
Latest available version of the on-premises connector.
compartment_id str
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
created_version str
Created version of the on-premises connector.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description str
(Updatable) The description of the on-premises connector.
display_name str
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
freeform_tags Mapping[str, str]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

lifecycle_details str
Details about the current state of the on-premises connector.
state str
The current state of the on-premises connector.
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The date and time the on-premises connector was created, in the format defined by RFC3339.
availableVersion String
Latest available version of the on-premises connector.
compartmentId String
(Updatable) The OCID of the compartment where you want to create the on-premises connector.
createdVersion String
Created version of the on-premises connector.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
description String
(Updatable) The description of the on-premises connector.
displayName String
(Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
freeformTags Map<String>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example: {"Department": "Finance"}

** 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

lifecycleDetails String
Details about the current state of the on-premises connector.
state String
The current state of the on-premises connector.
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The date and time the on-premises connector was created, in the format defined by RFC3339.

Import

OnPremConnectors can be imported using the id, e.g.

$ pulumi import oci:DataSafe/onPremConnector:OnPremConnector test_on_prem_connector "id"
Copy

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.