oci.DataCatalog.Catalog
Explore with Pulumi AI
This resource provides the Catalog resource in Oracle Cloud Infrastructure Data Catalog service.
Creates a new data catalog instance that includes a console and an API URL for managing metadata operations. For more information, please see the documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCatalog = new oci.datacatalog.Catalog("test_catalog", {
compartmentId: compartmentId,
definedTags: {
"foo-namespace.bar-key": "value",
},
displayName: catalogDisplayName,
freeformTags: {
"bar-key": "value",
},
});
import pulumi
import pulumi_oci as oci
test_catalog = oci.data_catalog.Catalog("test_catalog",
compartment_id=compartment_id,
defined_tags={
"foo-namespace.bar-key": "value",
},
display_name=catalog_display_name,
freeform_tags={
"bar-key": "value",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/DataCatalog"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DataCatalog.NewCatalog(ctx, "test_catalog", &DataCatalog.CatalogArgs{
CompartmentId: pulumi.Any(compartmentId),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
DisplayName: pulumi.Any(catalogDisplayName),
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
})
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 testCatalog = new Oci.DataCatalog.Catalog("test_catalog", new()
{
CompartmentId = compartmentId,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
DisplayName = catalogDisplayName,
FreeformTags =
{
{ "bar-key", "value" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataCatalog.Catalog;
import com.pulumi.oci.DataCatalog.CatalogArgs;
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 testCatalog = new Catalog("testCatalog", CatalogArgs.builder()
.compartmentId(compartmentId)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.displayName(catalogDisplayName)
.freeformTags(Map.of("bar-key", "value"))
.build());
}
}
resources:
testCatalog:
type: oci:DataCatalog:Catalog
name: test_catalog
properties:
compartmentId: ${compartmentId}
definedTags:
foo-namespace.bar-key: value
displayName: ${catalogDisplayName}
freeformTags:
bar-key: value
Create Catalog Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Catalog(name: string, args: CatalogArgs, opts?: CustomResourceOptions);
@overload
def Catalog(resource_name: str,
args: CatalogArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Catalog(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
attached_catalog_private_endpoints: Optional[Sequence[str]] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None)
func NewCatalog(ctx *Context, name string, args CatalogArgs, opts ...ResourceOption) (*Catalog, error)
public Catalog(string name, CatalogArgs args, CustomResourceOptions? opts = null)
public Catalog(String name, CatalogArgs args)
public Catalog(String name, CatalogArgs args, CustomResourceOptions options)
type: oci:DataCatalog:Catalog
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 CatalogArgs
- 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 CatalogArgs
- 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 CatalogArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CatalogArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CatalogArgs
- 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 catalogResource = new Oci.DataCatalog.Catalog("catalogResource", new()
{
CompartmentId = "string",
AttachedCatalogPrivateEndpoints = new[]
{
"string",
},
DefinedTags =
{
{ "string", "any" },
},
DisplayName = "string",
FreeformTags =
{
{ "string", "any" },
},
});
example, err := DataCatalog.NewCatalog(ctx, "catalogResource", &DataCatalog.CatalogArgs{
CompartmentId: pulumi.String("string"),
AttachedCatalogPrivateEndpoints: pulumi.StringArray{
pulumi.String("string"),
},
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
})
var catalogResource = new Catalog("catalogResource", CatalogArgs.builder()
.compartmentId("string")
.attachedCatalogPrivateEndpoints("string")
.definedTags(Map.of("string", "any"))
.displayName("string")
.freeformTags(Map.of("string", "any"))
.build());
catalog_resource = oci.data_catalog.Catalog("catalogResource",
compartment_id="string",
attached_catalog_private_endpoints=["string"],
defined_tags={
"string": "any",
},
display_name="string",
freeform_tags={
"string": "any",
})
const catalogResource = new oci.datacatalog.Catalog("catalogResource", {
compartmentId: "string",
attachedCatalogPrivateEndpoints: ["string"],
definedTags: {
string: "any",
},
displayName: "string",
freeformTags: {
string: "any",
},
});
type: oci:DataCatalog:Catalog
properties:
attachedCatalogPrivateEndpoints:
- string
compartmentId: string
definedTags:
string: any
displayName: string
freeformTags:
string: any
Catalog 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 Catalog resource accepts the following input properties:
- Compartment
Id string - (Updatable) Compartment identifier.
- Attached
Catalog List<string>Private Endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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
- Dictionary<string, object>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) Data catalog identifier.
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Compartment
Id string - (Updatable) Compartment identifier.
- Attached
Catalog []stringPrivate Endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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
- map[string]interface{}
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) Data catalog identifier.
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- compartment
Id String - (Updatable) Compartment identifier.
- attached
Catalog List<String>Private Endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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
- Map<String,Object>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) Data catalog identifier.
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- compartment
Id string - (Updatable) Compartment identifier.
- attached
Catalog string[]Private Endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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
- {[key: string]: any}
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - (Updatable) Data catalog identifier.
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- compartment_
id str - (Updatable) Compartment identifier.
- attached_
catalog_ Sequence[str]private_ endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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
- Mapping[str, Any]
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str - (Updatable) Data catalog identifier.
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- compartment
Id String - (Updatable) Compartment identifier.
- attached
Catalog List<String>Private Endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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
- Map<Any>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) Data catalog identifier.
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Outputs
All input properties are implicitly available as output properties. Additionally, the Catalog resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- Locks
List<Catalog
Lock> - Locks associated with this resource.
- Number
Of intObjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- Service
Api stringUrl - The REST front endpoint URL to the data catalog instance.
- Service
Console stringUrl - The console front endpoint URL to the data catalog instance.
- State string
- The current state of the data catalog resource.
- Dictionary<string, object>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the data catalog was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the data catalog was updated. An RFC3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- Locks
[]Catalog
Lock - Locks associated with this resource.
- Number
Of intObjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- Service
Api stringUrl - The REST front endpoint URL to the data catalog instance.
- Service
Console stringUrl - The console front endpoint URL to the data catalog instance.
- State string
- The current state of the data catalog resource.
- map[string]interface{}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the data catalog was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the data catalog was updated. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- locks
List<Catalog
Lock> - Locks associated with this resource.
- number
Of IntegerObjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- service
Api StringUrl - The REST front endpoint URL to the data catalog instance.
- service
Console StringUrl - The console front endpoint URL to the data catalog instance.
- state String
- The current state of the data catalog resource.
- Map<String,Object>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the data catalog was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the data catalog was updated. An RFC3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- locks
Catalog
Lock[] - Locks associated with this resource.
- number
Of numberObjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- service
Api stringUrl - The REST front endpoint URL to the data catalog instance.
- service
Console stringUrl - The console front endpoint URL to the data catalog instance.
- state string
- The current state of the data catalog resource.
- {[key: string]: any}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the data catalog was created. An RFC3339 formatted datetime string.
- time
Updated string - The time the data catalog was updated. An RFC3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- locks
Sequence[datacatalog.
Catalog Lock] - Locks associated with this resource.
- number_
of_ intobjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- service_
api_ strurl - The REST front endpoint URL to the data catalog instance.
- service_
console_ strurl - The console front endpoint URL to the data catalog instance.
- state str
- The current state of the data catalog resource.
- Mapping[str, Any]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the data catalog was created. An RFC3339 formatted datetime string.
- time_
updated str - The time the data catalog was updated. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- locks List<Property Map>
- Locks associated with this resource.
- number
Of NumberObjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- service
Api StringUrl - The REST front endpoint URL to the data catalog instance.
- service
Console StringUrl - The console front endpoint URL to the data catalog instance.
- state String
- The current state of the data catalog resource.
- Map<Any>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the data catalog was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the data catalog was updated. An RFC3339 formatted datetime string.
Look up Existing Catalog Resource
Get an existing Catalog 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?: CatalogState, opts?: CustomResourceOptions): Catalog
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attached_catalog_private_endpoints: Optional[Sequence[str]] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
lifecycle_details: Optional[str] = None,
locks: Optional[Sequence[_datacatalog.CatalogLockArgs]] = None,
number_of_objects: Optional[int] = None,
service_api_url: Optional[str] = None,
service_console_url: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> Catalog
func GetCatalog(ctx *Context, name string, id IDInput, state *CatalogState, opts ...ResourceOption) (*Catalog, error)
public static Catalog Get(string name, Input<string> id, CatalogState? state, CustomResourceOptions? opts = null)
public static Catalog get(String name, Output<String> id, CatalogState 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.
- Attached
Catalog List<string>Private Endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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) Compartment identifier.
- Dictionary<string, object>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) Data catalog identifier.
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Lifecycle
Details string - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- Locks
List<Catalog
Lock> - Locks associated with this resource.
- Number
Of intObjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- Service
Api stringUrl - The REST front endpoint URL to the data catalog instance.
- Service
Console stringUrl - The console front endpoint URL to the data catalog instance.
- State string
- The current state of the data catalog resource.
- Dictionary<string, object>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the data catalog was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the data catalog was updated. An RFC3339 formatted datetime string.
- Attached
Catalog []stringPrivate Endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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) Compartment identifier.
- map[string]interface{}
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) Data catalog identifier.
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Lifecycle
Details string - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- Locks
[]Catalog
Lock Args - Locks associated with this resource.
- Number
Of intObjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- Service
Api stringUrl - The REST front endpoint URL to the data catalog instance.
- Service
Console stringUrl - The console front endpoint URL to the data catalog instance.
- State string
- The current state of the data catalog resource.
- map[string]interface{}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the data catalog was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the data catalog was updated. An RFC3339 formatted datetime string.
- attached
Catalog List<String>Private Endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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) Compartment identifier.
- Map<String,Object>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) Data catalog identifier.
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
Details String - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- locks
List<Catalog
Lock> - Locks associated with this resource.
- number
Of IntegerObjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- service
Api StringUrl - The REST front endpoint URL to the data catalog instance.
- service
Console StringUrl - The console front endpoint URL to the data catalog instance.
- state String
- The current state of the data catalog resource.
- Map<String,Object>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the data catalog was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the data catalog was updated. An RFC3339 formatted datetime string.
- attached
Catalog string[]Private Endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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) Compartment identifier.
- {[key: string]: any}
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - (Updatable) Data catalog identifier.
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
Details string - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- locks
Catalog
Lock[] - Locks associated with this resource.
- number
Of numberObjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- service
Api stringUrl - The REST front endpoint URL to the data catalog instance.
- service
Console stringUrl - The console front endpoint URL to the data catalog instance.
- state string
- The current state of the data catalog resource.
- {[key: string]: any}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the data catalog was created. An RFC3339 formatted datetime string.
- time
Updated string - The time the data catalog was updated. An RFC3339 formatted datetime string.
- attached_
catalog_ Sequence[str]private_ endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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) Compartment identifier.
- Mapping[str, Any]
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str - (Updatable) Data catalog identifier.
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle_
details str - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- locks
Sequence[datacatalog.
Catalog Lock Args] - Locks associated with this resource.
- number_
of_ intobjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- service_
api_ strurl - The REST front endpoint URL to the data catalog instance.
- service_
console_ strurl - The console front endpoint URL to the data catalog instance.
- state str
- The current state of the data catalog resource.
- Mapping[str, Any]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the data catalog was created. An RFC3339 formatted datetime string.
- time_
updated str - The time the data catalog was updated. An RFC3339 formatted datetime string.
- attached
Catalog List<String>Private Endpoints (Updatable) The list of private reverse connection endpoints attached to the catalog
** 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) Compartment identifier.
- Map<Any>
- (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) Data catalog identifier.
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
Details String - An message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in 'Failed' state.
- locks List<Property Map>
- Locks associated with this resource.
- number
Of NumberObjects - The number of data objects added to the data catalog. Please see the data catalog documentation for further information on how this is calculated.
- service
Api StringUrl - The REST front endpoint URL to the data catalog instance.
- service
Console StringUrl - The console front endpoint URL to the data catalog instance.
- state String
- The current state of the data catalog resource.
- Map<Any>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the data catalog was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the data catalog was updated. An RFC3339 formatted datetime string.
Supporting Types
CatalogLock, CatalogLockArgs
- Message string
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- string
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- Time
Created string - The time the data catalog was created. An RFC3339 formatted datetime string.
- Type string
- Type of the lock.
- Message string
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- string
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- Time
Created string - The time the data catalog was created. An RFC3339 formatted datetime string.
- Type string
- Type of the lock.
- message String
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- String
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- time
Created String - The time the data catalog was created. An RFC3339 formatted datetime string.
- type String
- Type of the lock.
- message string
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- string
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- time
Created string - The time the data catalog was created. An RFC3339 formatted datetime string.
- type string
- Type of the lock.
- message str
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- str
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- time_
created str - The time the data catalog was created. An RFC3339 formatted datetime string.
- type str
- Type of the lock.
- message String
- A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
- String
- The id of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
- time
Created String - The time the data catalog was created. An RFC3339 formatted datetime string.
- type String
- Type of the lock.
Import
Catalogs can be imported using the id
, e.g.
$ pulumi import oci:DataCatalog/catalog:Catalog test_catalog "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.