1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Zpr
  5. Configuration
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.Zpr.Configuration

Explore with Pulumi AI

This resource provides the Configuration resource in Oracle Cloud Infrastructure Zpr service.

Initiates the process to onboard ZPR in a root compartment (the root compartment is the tenancy). It creates an object of ZPR configuration as part of onboarding.

Example Usage

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

const testConfiguration = new oci.zpr.Configuration("test_configuration", {
    compartmentId: tenancyOcid,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    freeformTags: {
        Department: "Finance",
    },
    zprStatus: configurationZprStatus,
});
Copy
import pulumi
import pulumi_oci as oci

test_configuration = oci.zpr.Configuration("test_configuration",
    compartment_id=tenancy_ocid,
    defined_tags={
        "Operations.CostCenter": "42",
    },
    freeform_tags={
        "Department": "Finance",
    },
    zpr_status=configuration_zpr_status)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := zpr.NewConfiguration(ctx, "test_configuration", &zpr.ConfigurationArgs{
			CompartmentId: pulumi.Any(tenancyOcid),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			ZprStatus: pulumi.Any(configurationZprStatus),
		})
		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 testConfiguration = new Oci.Zpr.Configuration("test_configuration", new()
    {
        CompartmentId = tenancyOcid,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        ZprStatus = configurationZprStatus,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Zpr.Configuration;
import com.pulumi.oci.Zpr.ConfigurationArgs;
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 testConfiguration = new Configuration("testConfiguration", ConfigurationArgs.builder()
            .compartmentId(tenancyOcid)
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .freeformTags(Map.of("Department", "Finance"))
            .zprStatus(configurationZprStatus)
            .build());

    }
}
Copy
resources:
  testConfiguration:
    type: oci:Zpr:Configuration
    name: test_configuration
    properties:
      compartmentId: ${tenancyOcid}
      definedTags:
        Operations.CostCenter: '42'
      freeformTags:
        Department: Finance
      zprStatus: ${configurationZprStatus}
Copy

Create Configuration Resource

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

Constructor syntax

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

@overload
def Configuration(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  compartment_id: Optional[str] = None,
                  defined_tags: Optional[Mapping[str, str]] = None,
                  freeform_tags: Optional[Mapping[str, str]] = None,
                  zpr_status: Optional[str] = None)
func NewConfiguration(ctx *Context, name string, args ConfigurationArgs, opts ...ResourceOption) (*Configuration, error)
public Configuration(string name, ConfigurationArgs args, CustomResourceOptions? opts = null)
public Configuration(String name, ConfigurationArgs args)
public Configuration(String name, ConfigurationArgs args, CustomResourceOptions options)
type: oci:Zpr:Configuration
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. ConfigurationArgs
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. ConfigurationArgs
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. ConfigurationArgs
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. ConfigurationArgs
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. ConfigurationArgs
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 exampleconfigurationResourceResourceFromZprconfiguration = new Oci.Zpr.Configuration("exampleconfigurationResourceResourceFromZprconfiguration", new()
{
    CompartmentId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
    ZprStatus = "string",
});
Copy
example, err := Zpr.NewConfiguration(ctx, "exampleconfigurationResourceResourceFromZprconfiguration", &Zpr.ConfigurationArgs{
	CompartmentId: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ZprStatus: pulumi.String("string"),
})
Copy
var exampleconfigurationResourceResourceFromZprconfiguration = new Configuration("exampleconfigurationResourceResourceFromZprconfiguration", ConfigurationArgs.builder()
    .compartmentId("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .zprStatus("string")
    .build());
Copy
exampleconfiguration_resource_resource_from_zprconfiguration = oci.zpr.Configuration("exampleconfigurationResourceResourceFromZprconfiguration",
    compartment_id="string",
    defined_tags={
        "string": "string",
    },
    freeform_tags={
        "string": "string",
    },
    zpr_status="string")
Copy
const exampleconfigurationResourceResourceFromZprconfiguration = new oci.zpr.Configuration("exampleconfigurationResourceResourceFromZprconfiguration", {
    compartmentId: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
    zprStatus: "string",
});
Copy
type: oci:Zpr:Configuration
properties:
    compartmentId: string
    definedTags:
        string: string
    freeformTags:
        string: string
    zprStatus: string
Copy

Configuration 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 Configuration resource accepts the following input properties:

CompartmentId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the tenancy into which ZPR resources will be bootstrapped.
DefinedTags Changes to this property will trigger replacement. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
FreeformTags Changes to this property will trigger replacement. Dictionary<string, string>
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"}
ZprStatus Changes to this property will trigger replacement. string

The enabled or disabled status of ZPR in the tenancy.

** 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.
Changes to this property will trigger replacement.
string
The OCID of the tenancy into which ZPR resources will be bootstrapped.
DefinedTags Changes to this property will trigger replacement. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
FreeformTags Changes to this property will trigger replacement. map[string]string
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"}
ZprStatus Changes to this property will trigger replacement. string

The enabled or disabled status of ZPR in the tenancy.

** 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.
Changes to this property will trigger replacement.
String
The OCID of the tenancy into which ZPR resources will be bootstrapped.
definedTags Changes to this property will trigger replacement. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags Changes to this property will trigger replacement. Map<String,String>
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"}
zprStatus Changes to this property will trigger replacement. String

The enabled or disabled status of ZPR in the tenancy.

** 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.
Changes to this property will trigger replacement.
string
The OCID of the tenancy into which ZPR resources will be bootstrapped.
definedTags Changes to this property will trigger replacement. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags Changes to this property will trigger replacement. {[key: string]: string}
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"}
zprStatus Changes to this property will trigger replacement. string

The enabled or disabled status of ZPR in the tenancy.

** 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.
Changes to this property will trigger replacement.
str
The OCID of the tenancy into which ZPR resources will be bootstrapped.
defined_tags Changes to this property will trigger replacement. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeform_tags Changes to this property will trigger replacement. Mapping[str, str]
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"}
zpr_status Changes to this property will trigger replacement. str

The enabled or disabled status of ZPR in the tenancy.

** 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.
Changes to this property will trigger replacement.
String
The OCID of the tenancy into which ZPR resources will be bootstrapped.
definedTags Changes to this property will trigger replacement. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags Changes to this property will trigger replacement. Map<String>
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"}
zprStatus Changes to this property will trigger replacement. String

The enabled or disabled status of ZPR in the tenancy.

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

Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
State string
The current state of ZPR in the tenancy.
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
TimeUpdated string
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
Id string
The provider-assigned unique ID for this managed resource.
LifecycleDetails string
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
State string
The current state of ZPR in the tenancy.
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
TimeUpdated string
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
state String
The current state of ZPR in the tenancy.
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated String
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
id string
The provider-assigned unique ID for this managed resource.
lifecycleDetails string
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
state string
The current state of ZPR in the tenancy.
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated string
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
id str
The provider-assigned unique ID for this managed resource.
lifecycle_details str
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
state str
The current state of ZPR in the tenancy.
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
time_updated str
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
id String
The provider-assigned unique ID for this managed resource.
lifecycleDetails String
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
state String
The current state of ZPR in the tenancy.
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated String
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

Look up Existing Configuration Resource

Get an existing Configuration 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?: ConfigurationState, opts?: CustomResourceOptions): Configuration
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, 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,
        time_updated: Optional[str] = None,
        zpr_status: Optional[str] = None) -> Configuration
func GetConfiguration(ctx *Context, name string, id IDInput, state *ConfigurationState, opts ...ResourceOption) (*Configuration, error)
public static Configuration Get(string name, Input<string> id, ConfigurationState? state, CustomResourceOptions? opts = null)
public static Configuration get(String name, Output<String> id, ConfigurationState state, CustomResourceOptions options)
resources:  _:    type: oci:Zpr:Configuration    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:
CompartmentId Changes to this property will trigger replacement. string
The OCID of the tenancy into which ZPR resources will be bootstrapped.
DefinedTags Changes to this property will trigger replacement. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
FreeformTags Changes to this property will trigger replacement. Dictionary<string, string>
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"}
LifecycleDetails string
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
State string
The current state of ZPR in the tenancy.
SystemTags Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
TimeUpdated string
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
ZprStatus Changes to this property will trigger replacement. string

The enabled or disabled status of ZPR in the tenancy.

** 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 Changes to this property will trigger replacement. string
The OCID of the tenancy into which ZPR resources will be bootstrapped.
DefinedTags Changes to this property will trigger replacement. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
FreeformTags Changes to this property will trigger replacement. map[string]string
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"}
LifecycleDetails string
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
State string
The current state of ZPR in the tenancy.
SystemTags map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated string
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
TimeUpdated string
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
ZprStatus Changes to this property will trigger replacement. string

The enabled or disabled status of ZPR in the tenancy.

** 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 Changes to this property will trigger replacement. String
The OCID of the tenancy into which ZPR resources will be bootstrapped.
definedTags Changes to this property will trigger replacement. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags Changes to this property will trigger replacement. Map<String,String>
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"}
lifecycleDetails String
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
state String
The current state of ZPR in the tenancy.
systemTags Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated String
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
zprStatus Changes to this property will trigger replacement. String

The enabled or disabled status of ZPR in the tenancy.

** 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 Changes to this property will trigger replacement. string
The OCID of the tenancy into which ZPR resources will be bootstrapped.
definedTags Changes to this property will trigger replacement. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags Changes to this property will trigger replacement. {[key: string]: string}
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"}
lifecycleDetails string
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
state string
The current state of ZPR in the tenancy.
systemTags {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated string
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated string
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
zprStatus Changes to this property will trigger replacement. string

The enabled or disabled status of ZPR in the tenancy.

** 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 Changes to this property will trigger replacement. str
The OCID of the tenancy into which ZPR resources will be bootstrapped.
defined_tags Changes to this property will trigger replacement. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeform_tags Changes to this property will trigger replacement. Mapping[str, str]
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"}
lifecycle_details str
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
state str
The current state of ZPR in the tenancy.
system_tags Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created str
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
time_updated str
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
zpr_status Changes to this property will trigger replacement. str

The enabled or disabled status of ZPR in the tenancy.

** 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 Changes to this property will trigger replacement. String
The OCID of the tenancy into which ZPR resources will be bootstrapped.
definedTags Changes to this property will trigger replacement. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
freeformTags Changes to this property will trigger replacement. Map<String>
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"}
lifecycleDetails String
A message that describes the current state of ZPR in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
state String
The current state of ZPR in the tenancy.
systemTags Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated String
The date and time that ZPR was onboarded to the tenancy, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
timeUpdated String
The date and time that ZPR was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
zprStatus Changes to this property will trigger replacement. String

The enabled or disabled status of ZPR in the tenancy.

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

Import

Configuration can be imported using the ‘compartment_id’ and id, e.g.

$ pulumi import oci:Zpr/configuration:Configuration test_configuration "{compartment_id}/{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.