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",
},
});
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",
})
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
})
}
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" },
},
});
});
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());
}
}
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
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 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.
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" },
},
});
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"),
},
})
var onPremConnectorResource = new OnPremConnector("onPremConnectorResource", OnPremConnectorArgs.builder()
.compartmentId("string")
.definedTags(Map.of("string", "string"))
.description("string")
.displayName("string")
.freeformTags(Map.of("string", "string"))
.build());
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",
})
const onPremConnectorResource = new oci.datasafe.OnPremConnector("onPremConnectorResource", {
compartmentId: "string",
definedTags: {
string: "string",
},
description: "string",
displayName: "string",
freeformTags: {
string: "string",
},
});
type: oci:DataSafe:OnPremConnector
properties:
compartmentId: string
definedTags:
string: string
description: string
displayName: string
freeformTags:
string: string
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:
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- 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.
- Display
Name string - (Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
- 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
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- 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.
- Display
Name string - (Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
- 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
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- 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.
- display
Name String - (Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
- 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
- compartment
Id string - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- {[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.
- display
Name string - (Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
- {[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 str - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- 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.
- 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
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- 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.
- display
Name String - (Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
- 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:
- Available
Version string - Latest available version of the on-premises connector.
- Created
Version string - Created version of the on-premises connector.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Details about the current state of the on-premises connector.
- State string
- The current state of the on-premises connector.
- 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"}
- Time
Created string - The date and time the on-premises connector was created, in the format defined by RFC3339.
- Available
Version string - Latest available version of the on-premises connector.
- Created
Version string - Created version of the on-premises connector.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Details about the current state of the on-premises connector.
- State string
- The current state of the on-premises connector.
- 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"}
- Time
Created string - The date and time the on-premises connector was created, in the format defined by RFC3339.
- available
Version String - Latest available version of the on-premises connector.
- created
Version String - Created version of the on-premises connector.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Details about the current state of the on-premises connector.
- state String
- The current state of the on-premises connector.
- 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"}
- time
Created String - The date and time the on-premises connector was created, in the format defined by RFC3339.
- available
Version string - Latest available version of the on-premises connector.
- created
Version string - Created version of the on-premises connector.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - Details about the current state of the on-premises connector.
- state string
- The current state of the on-premises connector.
- {[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"}
- time
Created 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.
- 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.
- available
Version String - Latest available version of the on-premises connector.
- created
Version String - Created version of the on-premises connector.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Details about the current state of the on-premises connector.
- state String
- The current state of the on-premises connector.
- 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"}
- time
Created 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)
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.
- Available
Version string - Latest available version of the on-premises connector.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- Created
Version string - Created version of the on-premises connector.
- 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.
- Display
Name string - (Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
- 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
- Lifecycle
Details string - Details about the current state of the on-premises connector.
- State string
- The current state of the on-premises connector.
- 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"}
- Time
Created string - The date and time the on-premises connector was created, in the format defined by RFC3339.
- Available
Version string - Latest available version of the on-premises connector.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- Created
Version string - Created version of the on-premises connector.
- 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.
- Display
Name string - (Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
- 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
- Lifecycle
Details string - Details about the current state of the on-premises connector.
- State string
- The current state of the on-premises connector.
- 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"}
- Time
Created string - The date and time the on-premises connector was created, in the format defined by RFC3339.
- available
Version String - Latest available version of the on-premises connector.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- created
Version String - Created version of the on-premises connector.
- 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.
- display
Name String - (Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
- 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
- lifecycle
Details String - Details about the current state of the on-premises connector.
- state String
- The current state of the on-premises connector.
- 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"}
- time
Created String - The date and time the on-premises connector was created, in the format defined by RFC3339.
- available
Version string - Latest available version of the on-premises connector.
- compartment
Id string - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- created
Version string - Created version of the on-premises connector.
- {[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.
- display
Name string - (Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
- {[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
- lifecycle
Details string - Details about the current state of the on-premises connector.
- state string
- The current state of the on-premises connector.
- {[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"}
- time
Created 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.
- 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.
- 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.
- 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.
- available
Version String - Latest available version of the on-premises connector.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the on-premises connector.
- created
Version String - Created version of the on-premises connector.
- 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.
- display
Name String - (Updatable) The display name of the on-premises connector. The name does not have to be unique, and it's changeable.
- 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
- lifecycle
Details String - Details about the current state of the on-premises connector.
- state String
- The current state of the on-premises connector.
- 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"}
- time
Created 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.