1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. BigDataService
  6. BdsInstanceExecuteBootstrapScriptAction
Viewing docs for Oracle Cloud Infrastructure v4.9.0
published on Thursday, Apr 30, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.9.0
published on Thursday, Apr 30, 2026 by Pulumi

    Create BdsInstanceExecuteBootstrapScriptAction Resource

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

    Constructor syntax

    new BdsInstanceExecuteBootstrapScriptAction(name: string, args: BdsInstanceExecuteBootstrapScriptActionArgs, opts?: CustomResourceOptions);
    @overload
    def BdsInstanceExecuteBootstrapScriptAction(resource_name: str,
                                                args: BdsInstanceExecuteBootstrapScriptActionArgs,
                                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def BdsInstanceExecuteBootstrapScriptAction(resource_name: str,
                                                opts: Optional[ResourceOptions] = None,
                                                bds_instance_id: Optional[str] = None,
                                                bootstrap_script_url: Optional[str] = None,
                                                cluster_admin_password: Optional[str] = None,
                                                secret_id: Optional[str] = None)
    func NewBdsInstanceExecuteBootstrapScriptAction(ctx *Context, name string, args BdsInstanceExecuteBootstrapScriptActionArgs, opts ...ResourceOption) (*BdsInstanceExecuteBootstrapScriptAction, error)
    public BdsInstanceExecuteBootstrapScriptAction(string name, BdsInstanceExecuteBootstrapScriptActionArgs args, CustomResourceOptions? opts = null)
    public BdsInstanceExecuteBootstrapScriptAction(String name, BdsInstanceExecuteBootstrapScriptActionArgs args)
    public BdsInstanceExecuteBootstrapScriptAction(String name, BdsInstanceExecuteBootstrapScriptActionArgs args, CustomResourceOptions options)
    
    type: oci:BigDataService:BdsInstanceExecuteBootstrapScriptAction
    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 BdsInstanceExecuteBootstrapScriptActionArgs
    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 BdsInstanceExecuteBootstrapScriptActionArgs
    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 BdsInstanceExecuteBootstrapScriptActionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BdsInstanceExecuteBootstrapScriptActionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BdsInstanceExecuteBootstrapScriptActionArgs
    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 bdsInstanceExecuteBootstrapScriptActionResource = new Oci.BigDataService.BdsInstanceExecuteBootstrapScriptAction("bdsInstanceExecuteBootstrapScriptActionResource", new()
    {
        BdsInstanceId = "string",
        BootstrapScriptUrl = "string",
        ClusterAdminPassword = "string",
        SecretId = "string",
    });
    
    example, err := bigdataservice.NewBdsInstanceExecuteBootstrapScriptAction(ctx, "bdsInstanceExecuteBootstrapScriptActionResource", &bigdataservice.BdsInstanceExecuteBootstrapScriptActionArgs{
    	BdsInstanceId:        pulumi.String("string"),
    	BootstrapScriptUrl:   pulumi.String("string"),
    	ClusterAdminPassword: pulumi.String("string"),
    	SecretId:             pulumi.String("string"),
    })
    
    var bdsInstanceExecuteBootstrapScriptActionResource = new BdsInstanceExecuteBootstrapScriptAction("bdsInstanceExecuteBootstrapScriptActionResource", BdsInstanceExecuteBootstrapScriptActionArgs.builder()
        .bdsInstanceId("string")
        .bootstrapScriptUrl("string")
        .clusterAdminPassword("string")
        .secretId("string")
        .build());
    
    bds_instance_execute_bootstrap_script_action_resource = oci.bigdataservice.BdsInstanceExecuteBootstrapScriptAction("bdsInstanceExecuteBootstrapScriptActionResource",
        bds_instance_id="string",
        bootstrap_script_url="string",
        cluster_admin_password="string",
        secret_id="string")
    
    const bdsInstanceExecuteBootstrapScriptActionResource = new oci.bigdataservice.BdsInstanceExecuteBootstrapScriptAction("bdsInstanceExecuteBootstrapScriptActionResource", {
        bdsInstanceId: "string",
        bootstrapScriptUrl: "string",
        clusterAdminPassword: "string",
        secretId: "string",
    });
    
    type: oci:BigDataService:BdsInstanceExecuteBootstrapScriptAction
    properties:
        bdsInstanceId: string
        bootstrapScriptUrl: string
        clusterAdminPassword: string
        secretId: string
    

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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BdsInstanceExecuteBootstrapScriptAction resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing BdsInstanceExecuteBootstrapScriptAction Resource

    Get an existing BdsInstanceExecuteBootstrapScriptAction 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?: BdsInstanceExecuteBootstrapScriptActionState, opts?: CustomResourceOptions): BdsInstanceExecuteBootstrapScriptAction
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bds_instance_id: Optional[str] = None,
            bootstrap_script_url: Optional[str] = None,
            cluster_admin_password: Optional[str] = None,
            secret_id: Optional[str] = None) -> BdsInstanceExecuteBootstrapScriptAction
    func GetBdsInstanceExecuteBootstrapScriptAction(ctx *Context, name string, id IDInput, state *BdsInstanceExecuteBootstrapScriptActionState, opts ...ResourceOption) (*BdsInstanceExecuteBootstrapScriptAction, error)
    public static BdsInstanceExecuteBootstrapScriptAction Get(string name, Input<string> id, BdsInstanceExecuteBootstrapScriptActionState? state, CustomResourceOptions? opts = null)
    public static BdsInstanceExecuteBootstrapScriptAction get(String name, Output<String> id, BdsInstanceExecuteBootstrapScriptActionState state, CustomResourceOptions options)
    resources:  _:    type: oci:BigDataService:BdsInstanceExecuteBootstrapScriptAction    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.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.9.0
    published on Thursday, Apr 30, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.