oci.BigDataService.BdsInstanceMetastoreConfig
Explore with Pulumi AI
This resource provides the Bds Instance Metastore Config resource in Oracle Cloud Infrastructure Big Data Service service.
Create and activate external metastore configuration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBdsInstanceMetastoreConfig = new oci.bigdataservice.BdsInstanceMetastoreConfig("test_bds_instance_metastore_config", {
    bdsApiKeyId: testApiKey.id,
    bdsApiKeyPassphrase: bdsInstanceMetastoreConfigBdsApiKeyPassphrase,
    bdsInstanceId: testBdsInstance.id,
    clusterAdminPassword: bdsInstanceMetastoreConfigClusterAdminPassword,
    metastoreId: testMetastore.id,
    displayName: bdsInstanceMetastoreConfigDisplayName,
});
import pulumi
import pulumi_oci as oci
test_bds_instance_metastore_config = oci.big_data_service.BdsInstanceMetastoreConfig("test_bds_instance_metastore_config",
    bds_api_key_id=test_api_key["id"],
    bds_api_key_passphrase=bds_instance_metastore_config_bds_api_key_passphrase,
    bds_instance_id=test_bds_instance["id"],
    cluster_admin_password=bds_instance_metastore_config_cluster_admin_password,
    metastore_id=test_metastore["id"],
    display_name=bds_instance_metastore_config_display_name)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/bigdataservice"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := bigdataservice.NewBdsInstanceMetastoreConfig(ctx, "test_bds_instance_metastore_config", &bigdataservice.BdsInstanceMetastoreConfigArgs{
			BdsApiKeyId:          pulumi.Any(testApiKey.Id),
			BdsApiKeyPassphrase:  pulumi.Any(bdsInstanceMetastoreConfigBdsApiKeyPassphrase),
			BdsInstanceId:        pulumi.Any(testBdsInstance.Id),
			ClusterAdminPassword: pulumi.Any(bdsInstanceMetastoreConfigClusterAdminPassword),
			MetastoreId:          pulumi.Any(testMetastore.Id),
			DisplayName:          pulumi.Any(bdsInstanceMetastoreConfigDisplayName),
		})
		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 testBdsInstanceMetastoreConfig = new Oci.BigDataService.BdsInstanceMetastoreConfig("test_bds_instance_metastore_config", new()
    {
        BdsApiKeyId = testApiKey.Id,
        BdsApiKeyPassphrase = bdsInstanceMetastoreConfigBdsApiKeyPassphrase,
        BdsInstanceId = testBdsInstance.Id,
        ClusterAdminPassword = bdsInstanceMetastoreConfigClusterAdminPassword,
        MetastoreId = testMetastore.Id,
        DisplayName = bdsInstanceMetastoreConfigDisplayName,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.BigDataService.BdsInstanceMetastoreConfig;
import com.pulumi.oci.BigDataService.BdsInstanceMetastoreConfigArgs;
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 testBdsInstanceMetastoreConfig = new BdsInstanceMetastoreConfig("testBdsInstanceMetastoreConfig", BdsInstanceMetastoreConfigArgs.builder()
            .bdsApiKeyId(testApiKey.id())
            .bdsApiKeyPassphrase(bdsInstanceMetastoreConfigBdsApiKeyPassphrase)
            .bdsInstanceId(testBdsInstance.id())
            .clusterAdminPassword(bdsInstanceMetastoreConfigClusterAdminPassword)
            .metastoreId(testMetastore.id())
            .displayName(bdsInstanceMetastoreConfigDisplayName)
            .build());
    }
}
resources:
  testBdsInstanceMetastoreConfig:
    type: oci:BigDataService:BdsInstanceMetastoreConfig
    name: test_bds_instance_metastore_config
    properties:
      bdsApiKeyId: ${testApiKey.id}
      bdsApiKeyPassphrase: ${bdsInstanceMetastoreConfigBdsApiKeyPassphrase}
      bdsInstanceId: ${testBdsInstance.id}
      clusterAdminPassword: ${bdsInstanceMetastoreConfigClusterAdminPassword}
      metastoreId: ${testMetastore.id}
      displayName: ${bdsInstanceMetastoreConfigDisplayName}
Create BdsInstanceMetastoreConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BdsInstanceMetastoreConfig(name: string, args: BdsInstanceMetastoreConfigArgs, opts?: CustomResourceOptions);@overload
def BdsInstanceMetastoreConfig(resource_name: str,
                               args: BdsInstanceMetastoreConfigArgs,
                               opts: Optional[ResourceOptions] = None)
@overload
def BdsInstanceMetastoreConfig(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               bds_api_key_id: Optional[str] = None,
                               bds_api_key_passphrase: Optional[str] = None,
                               bds_instance_id: Optional[str] = None,
                               cluster_admin_password: Optional[str] = None,
                               metastore_id: Optional[str] = None,
                               activate_trigger: Optional[int] = None,
                               display_name: Optional[str] = None)func NewBdsInstanceMetastoreConfig(ctx *Context, name string, args BdsInstanceMetastoreConfigArgs, opts ...ResourceOption) (*BdsInstanceMetastoreConfig, error)public BdsInstanceMetastoreConfig(string name, BdsInstanceMetastoreConfigArgs args, CustomResourceOptions? opts = null)
public BdsInstanceMetastoreConfig(String name, BdsInstanceMetastoreConfigArgs args)
public BdsInstanceMetastoreConfig(String name, BdsInstanceMetastoreConfigArgs args, CustomResourceOptions options)
type: oci:BigDataService:BdsInstanceMetastoreConfig
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 BdsInstanceMetastoreConfigArgs
- 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 BdsInstanceMetastoreConfigArgs
- 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 BdsInstanceMetastoreConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BdsInstanceMetastoreConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BdsInstanceMetastoreConfigArgs
- 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 bdsInstanceMetastoreConfigResource = new Oci.BigDataService.BdsInstanceMetastoreConfig("bdsInstanceMetastoreConfigResource", new()
{
    BdsApiKeyId = "string",
    BdsApiKeyPassphrase = "string",
    BdsInstanceId = "string",
    ClusterAdminPassword = "string",
    MetastoreId = "string",
    ActivateTrigger = 0,
    DisplayName = "string",
});
example, err := bigdataservice.NewBdsInstanceMetastoreConfig(ctx, "bdsInstanceMetastoreConfigResource", &bigdataservice.BdsInstanceMetastoreConfigArgs{
	BdsApiKeyId:          pulumi.String("string"),
	BdsApiKeyPassphrase:  pulumi.String("string"),
	BdsInstanceId:        pulumi.String("string"),
	ClusterAdminPassword: pulumi.String("string"),
	MetastoreId:          pulumi.String("string"),
	ActivateTrigger:      pulumi.Int(0),
	DisplayName:          pulumi.String("string"),
})
var bdsInstanceMetastoreConfigResource = new BdsInstanceMetastoreConfig("bdsInstanceMetastoreConfigResource", BdsInstanceMetastoreConfigArgs.builder()
    .bdsApiKeyId("string")
    .bdsApiKeyPassphrase("string")
    .bdsInstanceId("string")
    .clusterAdminPassword("string")
    .metastoreId("string")
    .activateTrigger(0)
    .displayName("string")
    .build());
bds_instance_metastore_config_resource = oci.big_data_service.BdsInstanceMetastoreConfig("bdsInstanceMetastoreConfigResource",
    bds_api_key_id="string",
    bds_api_key_passphrase="string",
    bds_instance_id="string",
    cluster_admin_password="string",
    metastore_id="string",
    activate_trigger=0,
    display_name="string")
const bdsInstanceMetastoreConfigResource = new oci.bigdataservice.BdsInstanceMetastoreConfig("bdsInstanceMetastoreConfigResource", {
    bdsApiKeyId: "string",
    bdsApiKeyPassphrase: "string",
    bdsInstanceId: "string",
    clusterAdminPassword: "string",
    metastoreId: "string",
    activateTrigger: 0,
    displayName: "string",
});
type: oci:BigDataService:BdsInstanceMetastoreConfig
properties:
    activateTrigger: 0
    bdsApiKeyId: string
    bdsApiKeyPassphrase: string
    bdsInstanceId: string
    clusterAdminPassword: string
    displayName: string
    metastoreId: string
BdsInstanceMetastoreConfig 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 BdsInstanceMetastoreConfig resource accepts the following input properties:
- BdsApi stringKey Id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- BdsApi stringKey Passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- BdsInstance stringId 
- The OCID of the cluster.
- ClusterAdmin stringPassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- MetastoreId string
- The OCID of the Data Catalog metastore.
- ActivateTrigger int
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- DisplayName string
- (Updatable) The display name of the metastore configuration
- BdsApi stringKey Id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- BdsApi stringKey Passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- BdsInstance stringId 
- The OCID of the cluster.
- ClusterAdmin stringPassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- MetastoreId string
- The OCID of the Data Catalog metastore.
- ActivateTrigger int
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- DisplayName string
- (Updatable) The display name of the metastore configuration
- bdsApi StringKey Id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- bdsApi StringKey Passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- bdsInstance StringId 
- The OCID of the cluster.
- clusterAdmin StringPassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- metastoreId String
- The OCID of the Data Catalog metastore.
- activateTrigger Integer
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- displayName String
- (Updatable) The display name of the metastore configuration
- bdsApi stringKey Id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- bdsApi stringKey Passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- bdsInstance stringId 
- The OCID of the cluster.
- clusterAdmin stringPassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- metastoreId string
- The OCID of the Data Catalog metastore.
- activateTrigger number
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- displayName string
- (Updatable) The display name of the metastore configuration
- bds_api_ strkey_ id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- bds_api_ strkey_ passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- bds_instance_ strid 
- The OCID of the cluster.
- cluster_admin_ strpassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- metastore_id str
- The OCID of the Data Catalog metastore.
- activate_trigger int
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- display_name str
- (Updatable) The display name of the metastore configuration
- bdsApi StringKey Id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- bdsApi StringKey Passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- bdsInstance StringId 
- The OCID of the cluster.
- clusterAdmin StringPassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- metastoreId String
- The OCID of the Data Catalog metastore.
- activateTrigger Number
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- displayName String
- (Updatable) The display name of the metastore configuration
Outputs
All input properties are implicitly available as output properties. Additionally, the BdsInstanceMetastoreConfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- MetastoreType string
- The type of the metastore in the metastore configuration.
- State string
- the lifecycle state of the metastore configuration.
- TimeCreated string
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- TimeUpdated string
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- MetastoreType string
- The type of the metastore in the metastore configuration.
- State string
- the lifecycle state of the metastore configuration.
- TimeCreated string
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- TimeUpdated string
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- metastoreType String
- The type of the metastore in the metastore configuration.
- state String
- the lifecycle state of the metastore configuration.
- timeCreated String
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated String
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- metastoreType string
- The type of the metastore in the metastore configuration.
- state string
- the lifecycle state of the metastore configuration.
- timeCreated string
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated string
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- metastore_type str
- The type of the metastore in the metastore configuration.
- state str
- the lifecycle state of the metastore configuration.
- time_created str
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- time_updated str
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- metastoreType String
- The type of the metastore in the metastore configuration.
- state String
- the lifecycle state of the metastore configuration.
- timeCreated String
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated String
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
Look up Existing BdsInstanceMetastoreConfig Resource
Get an existing BdsInstanceMetastoreConfig 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?: BdsInstanceMetastoreConfigState, opts?: CustomResourceOptions): BdsInstanceMetastoreConfig@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        activate_trigger: Optional[int] = None,
        bds_api_key_id: Optional[str] = None,
        bds_api_key_passphrase: Optional[str] = None,
        bds_instance_id: Optional[str] = None,
        cluster_admin_password: Optional[str] = None,
        display_name: Optional[str] = None,
        metastore_id: Optional[str] = None,
        metastore_type: Optional[str] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> BdsInstanceMetastoreConfigfunc GetBdsInstanceMetastoreConfig(ctx *Context, name string, id IDInput, state *BdsInstanceMetastoreConfigState, opts ...ResourceOption) (*BdsInstanceMetastoreConfig, error)public static BdsInstanceMetastoreConfig Get(string name, Input<string> id, BdsInstanceMetastoreConfigState? state, CustomResourceOptions? opts = null)public static BdsInstanceMetastoreConfig get(String name, Output<String> id, BdsInstanceMetastoreConfigState state, CustomResourceOptions options)resources:  _:    type: oci:BigDataService:BdsInstanceMetastoreConfig    get:      id: ${id}- 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.
- ActivateTrigger int
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- BdsApi stringKey Id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- BdsApi stringKey Passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- BdsInstance stringId 
- The OCID of the cluster.
- ClusterAdmin stringPassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- DisplayName string
- (Updatable) The display name of the metastore configuration
- MetastoreId string
- The OCID of the Data Catalog metastore.
- MetastoreType string
- The type of the metastore in the metastore configuration.
- State string
- the lifecycle state of the metastore configuration.
- TimeCreated string
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- TimeUpdated string
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
- ActivateTrigger int
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- BdsApi stringKey Id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- BdsApi stringKey Passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- BdsInstance stringId 
- The OCID of the cluster.
- ClusterAdmin stringPassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- DisplayName string
- (Updatable) The display name of the metastore configuration
- MetastoreId string
- The OCID of the Data Catalog metastore.
- MetastoreType string
- The type of the metastore in the metastore configuration.
- State string
- the lifecycle state of the metastore configuration.
- TimeCreated string
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- TimeUpdated string
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
- activateTrigger Integer
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- bdsApi StringKey Id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- bdsApi StringKey Passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- bdsInstance StringId 
- The OCID of the cluster.
- clusterAdmin StringPassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- displayName String
- (Updatable) The display name of the metastore configuration
- metastoreId String
- The OCID of the Data Catalog metastore.
- metastoreType String
- The type of the metastore in the metastore configuration.
- state String
- the lifecycle state of the metastore configuration.
- timeCreated String
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated String
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
- activateTrigger number
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- bdsApi stringKey Id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- bdsApi stringKey Passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- bdsInstance stringId 
- The OCID of the cluster.
- clusterAdmin stringPassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- displayName string
- (Updatable) The display name of the metastore configuration
- metastoreId string
- The OCID of the Data Catalog metastore.
- metastoreType string
- The type of the metastore in the metastore configuration.
- state string
- the lifecycle state of the metastore configuration.
- timeCreated string
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated string
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
- activate_trigger int
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- bds_api_ strkey_ id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- bds_api_ strkey_ passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- bds_instance_ strid 
- The OCID of the cluster.
- cluster_admin_ strpassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- display_name str
- (Updatable) The display name of the metastore configuration
- metastore_id str
- The OCID of the Data Catalog metastore.
- metastore_type str
- The type of the metastore in the metastore configuration.
- state str
- the lifecycle state of the metastore configuration.
- time_created str
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- time_updated str
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
- activateTrigger Number
- (Updatable) An optional integer, when flipped triggers activation of metastore config. - ** 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 
- bdsApi StringKey Id 
- (Updatable) The ID of BDS Api Key used for Data Catalog metastore integration.
- bdsApi StringKey Passphrase 
- (Updatable) Base-64 encoded passphrase of the BDS Api Key.
- bdsInstance StringId 
- The OCID of the cluster.
- clusterAdmin StringPassword 
- (Updatable) Base-64 encoded password for the cluster admin user.
- displayName String
- (Updatable) The display name of the metastore configuration
- metastoreId String
- The OCID of the Data Catalog metastore.
- metastoreType String
- The type of the metastore in the metastore configuration.
- state String
- the lifecycle state of the metastore configuration.
- timeCreated String
- The time when the configuration was created, shown as an RFC 3339 formatted datetime string.
- timeUpdated String
- The time when the configuration was updated, shown as an RFC 3339 formatted datetime string.
Import
BdsInstanceMetastoreConfigs can be imported using the id, e.g.
$ pulumi import oci:BigDataService/bdsInstanceMetastoreConfig:BdsInstanceMetastoreConfig test_bds_instance_metastore_config "bdsInstances/{bdsInstanceId}/metastoreConfigs/{metastoreConfigId}"
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 ociTerraform Provider.