1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. OnPremConnector
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DataSafe.OnPremConnector

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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("testOnPremConnector", {
        compartmentId: _var.compartment_id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        description: _var.on_prem_connector_description,
        displayName: _var.on_prem_connector_display_name,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_on_prem_connector = oci.data_safe.OnPremConnector("testOnPremConnector",
        compartment_id=var["compartment_id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        description=var["on_prem_connector_description"],
        display_name=var["on_prem_connector_display_name"],
        freeform_tags={
            "Department": "Finance",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataSafe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataSafe.NewOnPremConnector(ctx, "testOnPremConnector", &DataSafe.OnPremConnectorArgs{
    			CompartmentId: pulumi.Any(_var.Compartment_id),
    			DefinedTags: pulumi.Map{
    				"Operations.CostCenter": pulumi.Any("42"),
    			},
    			Description: pulumi.Any(_var.On_prem_connector_description),
    			DisplayName: pulumi.Any(_var.On_prem_connector_display_name),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    		})
    		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 testOnPremConnector = new Oci.DataSafe.OnPremConnector("testOnPremConnector", new()
        {
            CompartmentId = @var.Compartment_id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            Description = @var.On_prem_connector_description,
            DisplayName = @var.On_prem_connector_display_name,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    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(var_.compartment_id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .description(var_.on_prem_connector_description())
                .displayName(var_.on_prem_connector_display_name())
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testOnPremConnector:
        type: oci:DataSafe:OnPremConnector
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          #Optional
          definedTags:
            Operations.CostCenter: '42'
          description: ${var.on_prem_connector_description}
          displayName: ${var.on_prem_connector_display_name}
          freeformTags:
            Department: Finance
    

    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, Any]] = None,
                        description: Optional[str] = None,
                        display_name: Optional[str] = None,
                        freeform_tags: Optional[Mapping[str, Any]] = 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 string
    The unique name of the resource.
    args OnPremConnectorArgs
    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 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 string
    The unique name of the resource.
    args OnPremConnectorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OnPremConnectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OnPremConnectorArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var onPremConnectorResource = new Oci.DataSafe.OnPremConnector("onPremConnectorResource", new()
    {
        CompartmentId = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        Description = "string",
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
    });
    
    example, err := DataSafe.NewOnPremConnector(ctx, "onPremConnectorResource", &DataSafe.OnPremConnectorArgs{
    	CompartmentId: pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description: pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    })
    
    var onPremConnectorResource = new OnPremConnector("onPremConnectorResource", OnPremConnectorArgs.builder()        
        .compartmentId("string")
        .definedTags(Map.of("string", "any"))
        .description("string")
        .displayName("string")
        .freeformTags(Map.of("string", "any"))
        .build());
    
    on_prem_connector_resource = oci.data_safe.OnPremConnector("onPremConnectorResource",
        compartment_id="string",
        defined_tags={
            "string": "any",
        },
        description="string",
        display_name="string",
        freeform_tags={
            "string": "any",
        })
    
    const onPremConnectorResource = new oci.datasafe.OnPremConnector("onPremConnectorResource", {
        compartmentId: "string",
        definedTags: {
            string: "any",
        },
        description: "string",
        displayName: "string",
        freeformTags: {
            string: "any",
        },
    });
    
    type: oci:DataSafe:OnPremConnector
    properties:
        compartmentId: string
        definedTags:
            string: any
        description: string
        displayName: string
        freeformTags:
            string: any
    

    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

    The OnPremConnector resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment where you want to create the on-premises connector.
    DefinedTags Dictionary<string, object>
    (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, object>

    (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 string
    (Updatable) The OCID of the compartment where you want to create the on-premises connector.
    DefinedTags map[string]interface{}
    (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]interface{}

    (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 String
    (Updatable) The OCID of the compartment where you want to create the on-premises connector.
    definedTags Map<String,Object>
    (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,Object>

    (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 string
    (Updatable) The OCID of the compartment where you want to create the on-premises connector.
    definedTags {[key: string]: any}
    (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]: any}

    (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 str
    (Updatable) The OCID of the compartment where you want to create the on-premises connector.
    defined_tags Mapping[str, Any]
    (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, Any]

    (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 String
    (Updatable) The OCID of the compartment where you want to create the on-premises connector.
    definedTags Map<Any>
    (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<Any>

    (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, object>
    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]interface{}
    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,Object>
    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]: any}
    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, Any]
    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<Any>
    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, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            lifecycle_details: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = 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)
    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.
    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, object>
    (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, object>

    (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, object>
    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]interface{}
    (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]interface{}

    (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]interface{}
    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,Object>
    (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,Object>

    (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,Object>
    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]: any}
    (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]: any}

    (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]: any}
    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, Any]
    (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, Any]

    (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, Any]
    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<Any>
    (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<Any>

    (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<Any>
    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"
    

    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.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi