oci.BigDataService.BdsInstanceApiKey
Explore with Pulumi AI
This resource provides the Bds Instance Api Key resource in Oracle Cloud Infrastructure Big Data Service service.
Create an API key on behalf of the specified user.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBdsInstanceApiKey = new oci.bigdataservice.BdsInstanceApiKey("test_bds_instance_api_key", {
    bdsInstanceId: testBdsInstance.id,
    keyAlias: bdsInstanceApiKeyKeyAlias,
    passphrase: bdsInstanceApiKeyPassphrase,
    userId: testUser.id,
    defaultRegion: bdsInstanceApiKeyDefaultRegion,
    domainOcid: bdsInstanceApiKeyDomainOcid,
});
import pulumi
import pulumi_oci as oci
test_bds_instance_api_key = oci.big_data_service.BdsInstanceApiKey("test_bds_instance_api_key",
    bds_instance_id=test_bds_instance["id"],
    key_alias=bds_instance_api_key_key_alias,
    passphrase=bds_instance_api_key_passphrase,
    user_id=test_user["id"],
    default_region=bds_instance_api_key_default_region,
    domain_ocid=bds_instance_api_key_domain_ocid)
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.NewBdsInstanceApiKey(ctx, "test_bds_instance_api_key", &bigdataservice.BdsInstanceApiKeyArgs{
			BdsInstanceId: pulumi.Any(testBdsInstance.Id),
			KeyAlias:      pulumi.Any(bdsInstanceApiKeyKeyAlias),
			Passphrase:    pulumi.Any(bdsInstanceApiKeyPassphrase),
			UserId:        pulumi.Any(testUser.Id),
			DefaultRegion: pulumi.Any(bdsInstanceApiKeyDefaultRegion),
			DomainOcid:    pulumi.Any(bdsInstanceApiKeyDomainOcid),
		})
		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 testBdsInstanceApiKey = new Oci.BigDataService.BdsInstanceApiKey("test_bds_instance_api_key", new()
    {
        BdsInstanceId = testBdsInstance.Id,
        KeyAlias = bdsInstanceApiKeyKeyAlias,
        Passphrase = bdsInstanceApiKeyPassphrase,
        UserId = testUser.Id,
        DefaultRegion = bdsInstanceApiKeyDefaultRegion,
        DomainOcid = bdsInstanceApiKeyDomainOcid,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.BigDataService.BdsInstanceApiKey;
import com.pulumi.oci.BigDataService.BdsInstanceApiKeyArgs;
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 testBdsInstanceApiKey = new BdsInstanceApiKey("testBdsInstanceApiKey", BdsInstanceApiKeyArgs.builder()
            .bdsInstanceId(testBdsInstance.id())
            .keyAlias(bdsInstanceApiKeyKeyAlias)
            .passphrase(bdsInstanceApiKeyPassphrase)
            .userId(testUser.id())
            .defaultRegion(bdsInstanceApiKeyDefaultRegion)
            .domainOcid(bdsInstanceApiKeyDomainOcid)
            .build());
    }
}
resources:
  testBdsInstanceApiKey:
    type: oci:BigDataService:BdsInstanceApiKey
    name: test_bds_instance_api_key
    properties:
      bdsInstanceId: ${testBdsInstance.id}
      keyAlias: ${bdsInstanceApiKeyKeyAlias}
      passphrase: ${bdsInstanceApiKeyPassphrase}
      userId: ${testUser.id}
      defaultRegion: ${bdsInstanceApiKeyDefaultRegion}
      domainOcid: ${bdsInstanceApiKeyDomainOcid}
Create BdsInstanceApiKey Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BdsInstanceApiKey(name: string, args: BdsInstanceApiKeyArgs, opts?: CustomResourceOptions);@overload
def BdsInstanceApiKey(resource_name: str,
                      args: BdsInstanceApiKeyArgs,
                      opts: Optional[ResourceOptions] = None)
@overload
def BdsInstanceApiKey(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      bds_instance_id: Optional[str] = None,
                      key_alias: Optional[str] = None,
                      passphrase: Optional[str] = None,
                      user_id: Optional[str] = None,
                      default_region: Optional[str] = None,
                      domain_ocid: Optional[str] = None)func NewBdsInstanceApiKey(ctx *Context, name string, args BdsInstanceApiKeyArgs, opts ...ResourceOption) (*BdsInstanceApiKey, error)public BdsInstanceApiKey(string name, BdsInstanceApiKeyArgs args, CustomResourceOptions? opts = null)
public BdsInstanceApiKey(String name, BdsInstanceApiKeyArgs args)
public BdsInstanceApiKey(String name, BdsInstanceApiKeyArgs args, CustomResourceOptions options)
type: oci:BigDataService:BdsInstanceApiKey
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 BdsInstanceApiKeyArgs
- 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 BdsInstanceApiKeyArgs
- 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 BdsInstanceApiKeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BdsInstanceApiKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BdsInstanceApiKeyArgs
- 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 bdsInstanceApiKeyResource = new Oci.BigDataService.BdsInstanceApiKey("bdsInstanceApiKeyResource", new()
{
    BdsInstanceId = "string",
    KeyAlias = "string",
    Passphrase = "string",
    UserId = "string",
    DefaultRegion = "string",
    DomainOcid = "string",
});
example, err := bigdataservice.NewBdsInstanceApiKey(ctx, "bdsInstanceApiKeyResource", &bigdataservice.BdsInstanceApiKeyArgs{
	BdsInstanceId: pulumi.String("string"),
	KeyAlias:      pulumi.String("string"),
	Passphrase:    pulumi.String("string"),
	UserId:        pulumi.String("string"),
	DefaultRegion: pulumi.String("string"),
	DomainOcid:    pulumi.String("string"),
})
var bdsInstanceApiKeyResource = new BdsInstanceApiKey("bdsInstanceApiKeyResource", BdsInstanceApiKeyArgs.builder()
    .bdsInstanceId("string")
    .keyAlias("string")
    .passphrase("string")
    .userId("string")
    .defaultRegion("string")
    .domainOcid("string")
    .build());
bds_instance_api_key_resource = oci.big_data_service.BdsInstanceApiKey("bdsInstanceApiKeyResource",
    bds_instance_id="string",
    key_alias="string",
    passphrase="string",
    user_id="string",
    default_region="string",
    domain_ocid="string")
const bdsInstanceApiKeyResource = new oci.bigdataservice.BdsInstanceApiKey("bdsInstanceApiKeyResource", {
    bdsInstanceId: "string",
    keyAlias: "string",
    passphrase: "string",
    userId: "string",
    defaultRegion: "string",
    domainOcid: "string",
});
type: oci:BigDataService:BdsInstanceApiKey
properties:
    bdsInstanceId: string
    defaultRegion: string
    domainOcid: string
    keyAlias: string
    passphrase: string
    userId: string
BdsInstanceApiKey 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 BdsInstanceApiKey resource accepts the following input properties:
- BdsInstance stringId 
- The OCID of the cluster.
- KeyAlias string
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- Passphrase string
- Base64 passphrase used to secure the private key which will be created on user behalf.
- UserId string
- The OCID of the user for whom this new generated API key pair will be created. - ** 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 
- DefaultRegion string
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- DomainOcid string
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- BdsInstance stringId 
- The OCID of the cluster.
- KeyAlias string
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- Passphrase string
- Base64 passphrase used to secure the private key which will be created on user behalf.
- UserId string
- The OCID of the user for whom this new generated API key pair will be created. - ** 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 
- DefaultRegion string
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- DomainOcid string
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- bdsInstance StringId 
- The OCID of the cluster.
- keyAlias String
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- passphrase String
- Base64 passphrase used to secure the private key which will be created on user behalf.
- userId String
- The OCID of the user for whom this new generated API key pair will be created. - ** 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 
- defaultRegion String
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- domainOcid String
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- bdsInstance stringId 
- The OCID of the cluster.
- keyAlias string
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- passphrase string
- Base64 passphrase used to secure the private key which will be created on user behalf.
- userId string
- The OCID of the user for whom this new generated API key pair will be created. - ** 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 
- defaultRegion string
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- domainOcid string
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- bds_instance_ strid 
- The OCID of the cluster.
- key_alias str
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- passphrase str
- Base64 passphrase used to secure the private key which will be created on user behalf.
- user_id str
- The OCID of the user for whom this new generated API key pair will be created. - ** 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 
- default_region str
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- domain_ocid str
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- bdsInstance StringId 
- The OCID of the cluster.
- keyAlias String
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- passphrase String
- Base64 passphrase used to secure the private key which will be created on user behalf.
- userId String
- The OCID of the user for whom this new generated API key pair will be created. - ** 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 
- defaultRegion String
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- domainOcid String
- Identity domain OCID , where user is present. For default domain , this field will be optional.
Outputs
All input properties are implicitly available as output properties. Additionally, the BdsInstanceApiKey resource produces the following output properties:
- Fingerprint string
- The fingerprint that corresponds to the public API key requested.
- Id string
- The provider-assigned unique ID for this managed resource.
- Pemfilepath string
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- State string
- The current status of the API key.
- TenantId string
- The OCID of your tenancy.
- TimeCreated string
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- Fingerprint string
- The fingerprint that corresponds to the public API key requested.
- Id string
- The provider-assigned unique ID for this managed resource.
- Pemfilepath string
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- State string
- The current status of the API key.
- TenantId string
- The OCID of your tenancy.
- TimeCreated string
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- fingerprint String
- The fingerprint that corresponds to the public API key requested.
- id String
- The provider-assigned unique ID for this managed resource.
- pemfilepath String
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- state String
- The current status of the API key.
- tenantId String
- The OCID of your tenancy.
- timeCreated String
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- fingerprint string
- The fingerprint that corresponds to the public API key requested.
- id string
- The provider-assigned unique ID for this managed resource.
- pemfilepath string
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- state string
- The current status of the API key.
- tenantId string
- The OCID of your tenancy.
- timeCreated string
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- fingerprint str
- The fingerprint that corresponds to the public API key requested.
- id str
- The provider-assigned unique ID for this managed resource.
- pemfilepath str
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- state str
- The current status of the API key.
- tenant_id str
- The OCID of your tenancy.
- time_created str
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- fingerprint String
- The fingerprint that corresponds to the public API key requested.
- id String
- The provider-assigned unique ID for this managed resource.
- pemfilepath String
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- state String
- The current status of the API key.
- tenantId String
- The OCID of your tenancy.
- timeCreated String
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
Look up Existing BdsInstanceApiKey Resource
Get an existing BdsInstanceApiKey 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?: BdsInstanceApiKeyState, opts?: CustomResourceOptions): BdsInstanceApiKey@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bds_instance_id: Optional[str] = None,
        default_region: Optional[str] = None,
        domain_ocid: Optional[str] = None,
        fingerprint: Optional[str] = None,
        key_alias: Optional[str] = None,
        passphrase: Optional[str] = None,
        pemfilepath: Optional[str] = None,
        state: Optional[str] = None,
        tenant_id: Optional[str] = None,
        time_created: Optional[str] = None,
        user_id: Optional[str] = None) -> BdsInstanceApiKeyfunc GetBdsInstanceApiKey(ctx *Context, name string, id IDInput, state *BdsInstanceApiKeyState, opts ...ResourceOption) (*BdsInstanceApiKey, error)public static BdsInstanceApiKey Get(string name, Input<string> id, BdsInstanceApiKeyState? state, CustomResourceOptions? opts = null)public static BdsInstanceApiKey get(String name, Output<String> id, BdsInstanceApiKeyState state, CustomResourceOptions options)resources:  _:    type: oci:BigDataService:BdsInstanceApiKey    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.
- BdsInstance stringId 
- The OCID of the cluster.
- DefaultRegion string
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- DomainOcid string
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- Fingerprint string
- The fingerprint that corresponds to the public API key requested.
- KeyAlias string
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- Passphrase string
- Base64 passphrase used to secure the private key which will be created on user behalf.
- Pemfilepath string
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- State string
- The current status of the API key.
- TenantId string
- The OCID of your tenancy.
- TimeCreated string
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- UserId string
- The OCID of the user for whom this new generated API key pair will be created. - ** 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 
- BdsInstance stringId 
- The OCID of the cluster.
- DefaultRegion string
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- DomainOcid string
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- Fingerprint string
- The fingerprint that corresponds to the public API key requested.
- KeyAlias string
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- Passphrase string
- Base64 passphrase used to secure the private key which will be created on user behalf.
- Pemfilepath string
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- State string
- The current status of the API key.
- TenantId string
- The OCID of your tenancy.
- TimeCreated string
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- UserId string
- The OCID of the user for whom this new generated API key pair will be created. - ** 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 
- bdsInstance StringId 
- The OCID of the cluster.
- defaultRegion String
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- domainOcid String
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- fingerprint String
- The fingerprint that corresponds to the public API key requested.
- keyAlias String
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- passphrase String
- Base64 passphrase used to secure the private key which will be created on user behalf.
- pemfilepath String
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- state String
- The current status of the API key.
- tenantId String
- The OCID of your tenancy.
- timeCreated String
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- userId String
- The OCID of the user for whom this new generated API key pair will be created. - ** 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 
- bdsInstance stringId 
- The OCID of the cluster.
- defaultRegion string
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- domainOcid string
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- fingerprint string
- The fingerprint that corresponds to the public API key requested.
- keyAlias string
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- passphrase string
- Base64 passphrase used to secure the private key which will be created on user behalf.
- pemfilepath string
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- state string
- The current status of the API key.
- tenantId string
- The OCID of your tenancy.
- timeCreated string
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- userId string
- The OCID of the user for whom this new generated API key pair will be created. - ** 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_instance_ strid 
- The OCID of the cluster.
- default_region str
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- domain_ocid str
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- fingerprint str
- The fingerprint that corresponds to the public API key requested.
- key_alias str
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- passphrase str
- Base64 passphrase used to secure the private key which will be created on user behalf.
- pemfilepath str
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- state str
- The current status of the API key.
- tenant_id str
- The OCID of your tenancy.
- time_created str
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- user_id str
- The OCID of the user for whom this new generated API key pair will be created. - ** 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 
- bdsInstance StringId 
- The OCID of the cluster.
- defaultRegion String
- The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
- domainOcid String
- Identity domain OCID , where user is present. For default domain , this field will be optional.
- fingerprint String
- The fingerprint that corresponds to the public API key requested.
- keyAlias String
- User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
- passphrase String
- Base64 passphrase used to secure the private key which will be created on user behalf.
- pemfilepath String
- The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
- state String
- The current status of the API key.
- tenantId String
- The OCID of your tenancy.
- timeCreated String
- The time the API key was created, shown as an RFC 3339 formatted datetime string.
- userId String
- The OCID of the user for whom this new generated API key pair will be created. - ** 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
BdsInstanceApiKeys can be imported using the id, e.g.
$ pulumi import oci:BigDataService/bdsInstanceApiKey:BdsInstanceApiKey test_bds_instance_api_key "bdsInstances/{bdsInstanceId}/apiKeys/{apiKeyId}"
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.