oci.BigDataService.BdsInstanceResourcePrincipalConfiguration
Explore with Pulumi AI
This resource provides the Bds Instance Resource Principal Configuration resource in Oracle Cloud Infrastructure Big Data Service service.
Create a resource principal session token configuration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBdsInstanceResourcePrincipalConfiguration = new oci.bigdataservice.BdsInstanceResourcePrincipalConfiguration("test_bds_instance_resource_principal_configuration", {
bdsInstanceId: testBdsInstance.id,
clusterAdminPassword: bdsInstanceResourcePrincipalConfigurationClusterAdminPassword,
displayName: bdsInstanceResourcePrincipalConfigurationDisplayName,
sessionTokenLifeSpanDurationInHours: bdsInstanceResourcePrincipalConfigurationSessionTokenLifeSpanDurationInHours,
});
import pulumi
import pulumi_oci as oci
test_bds_instance_resource_principal_configuration = oci.big_data_service.BdsInstanceResourcePrincipalConfiguration("test_bds_instance_resource_principal_configuration",
bds_instance_id=test_bds_instance["id"],
cluster_admin_password=bds_instance_resource_principal_configuration_cluster_admin_password,
display_name=bds_instance_resource_principal_configuration_display_name,
session_token_life_span_duration_in_hours=bds_instance_resource_principal_configuration_session_token_life_span_duration_in_hours)
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.NewBdsInstanceResourcePrincipalConfiguration(ctx, "test_bds_instance_resource_principal_configuration", &BigDataService.BdsInstanceResourcePrincipalConfigurationArgs{
BdsInstanceId: pulumi.Any(testBdsInstance.Id),
ClusterAdminPassword: pulumi.Any(bdsInstanceResourcePrincipalConfigurationClusterAdminPassword),
DisplayName: pulumi.Any(bdsInstanceResourcePrincipalConfigurationDisplayName),
SessionTokenLifeSpanDurationInHours: pulumi.Any(bdsInstanceResourcePrincipalConfigurationSessionTokenLifeSpanDurationInHours),
})
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 testBdsInstanceResourcePrincipalConfiguration = new Oci.BigDataService.BdsInstanceResourcePrincipalConfiguration("test_bds_instance_resource_principal_configuration", new()
{
BdsInstanceId = testBdsInstance.Id,
ClusterAdminPassword = bdsInstanceResourcePrincipalConfigurationClusterAdminPassword,
DisplayName = bdsInstanceResourcePrincipalConfigurationDisplayName,
SessionTokenLifeSpanDurationInHours = bdsInstanceResourcePrincipalConfigurationSessionTokenLifeSpanDurationInHours,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.BigDataService.BdsInstanceResourcePrincipalConfiguration;
import com.pulumi.oci.BigDataService.BdsInstanceResourcePrincipalConfigurationArgs;
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 testBdsInstanceResourcePrincipalConfiguration = new BdsInstanceResourcePrincipalConfiguration("testBdsInstanceResourcePrincipalConfiguration", BdsInstanceResourcePrincipalConfigurationArgs.builder()
.bdsInstanceId(testBdsInstance.id())
.clusterAdminPassword(bdsInstanceResourcePrincipalConfigurationClusterAdminPassword)
.displayName(bdsInstanceResourcePrincipalConfigurationDisplayName)
.sessionTokenLifeSpanDurationInHours(bdsInstanceResourcePrincipalConfigurationSessionTokenLifeSpanDurationInHours)
.build());
}
}
resources:
testBdsInstanceResourcePrincipalConfiguration:
type: oci:BigDataService:BdsInstanceResourcePrincipalConfiguration
name: test_bds_instance_resource_principal_configuration
properties:
bdsInstanceId: ${testBdsInstance.id}
clusterAdminPassword: ${bdsInstanceResourcePrincipalConfigurationClusterAdminPassword}
displayName: ${bdsInstanceResourcePrincipalConfigurationDisplayName}
sessionTokenLifeSpanDurationInHours: ${bdsInstanceResourcePrincipalConfigurationSessionTokenLifeSpanDurationInHours}
Create BdsInstanceResourcePrincipalConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BdsInstanceResourcePrincipalConfiguration(name: string, args: BdsInstanceResourcePrincipalConfigurationArgs, opts?: CustomResourceOptions);
@overload
def BdsInstanceResourcePrincipalConfiguration(resource_name: str,
args: BdsInstanceResourcePrincipalConfigurationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BdsInstanceResourcePrincipalConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
bds_instance_id: Optional[str] = None,
cluster_admin_password: Optional[str] = None,
display_name: Optional[str] = None,
force_refresh_resource_principal_trigger: Optional[int] = None,
session_token_life_span_duration_in_hours: Optional[int] = None)
func NewBdsInstanceResourcePrincipalConfiguration(ctx *Context, name string, args BdsInstanceResourcePrincipalConfigurationArgs, opts ...ResourceOption) (*BdsInstanceResourcePrincipalConfiguration, error)
public BdsInstanceResourcePrincipalConfiguration(string name, BdsInstanceResourcePrincipalConfigurationArgs args, CustomResourceOptions? opts = null)
public BdsInstanceResourcePrincipalConfiguration(String name, BdsInstanceResourcePrincipalConfigurationArgs args)
public BdsInstanceResourcePrincipalConfiguration(String name, BdsInstanceResourcePrincipalConfigurationArgs args, CustomResourceOptions options)
type: oci:BigDataService:BdsInstanceResourcePrincipalConfiguration
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 BdsInstanceResourcePrincipalConfigurationArgs
- 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 BdsInstanceResourcePrincipalConfigurationArgs
- 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 BdsInstanceResourcePrincipalConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BdsInstanceResourcePrincipalConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BdsInstanceResourcePrincipalConfigurationArgs
- 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 bdsInstanceResourcePrincipalConfigurationResource = new Oci.BigDataService.BdsInstanceResourcePrincipalConfiguration("bdsInstanceResourcePrincipalConfigurationResource", new()
{
BdsInstanceId = "string",
ClusterAdminPassword = "string",
DisplayName = "string",
ForceRefreshResourcePrincipalTrigger = 0,
SessionTokenLifeSpanDurationInHours = 0,
});
example, err := BigDataService.NewBdsInstanceResourcePrincipalConfiguration(ctx, "bdsInstanceResourcePrincipalConfigurationResource", &BigDataService.BdsInstanceResourcePrincipalConfigurationArgs{
BdsInstanceId: pulumi.String("string"),
ClusterAdminPassword: pulumi.String("string"),
DisplayName: pulumi.String("string"),
ForceRefreshResourcePrincipalTrigger: pulumi.Int(0),
SessionTokenLifeSpanDurationInHours: pulumi.Int(0),
})
var bdsInstanceResourcePrincipalConfigurationResource = new BdsInstanceResourcePrincipalConfiguration("bdsInstanceResourcePrincipalConfigurationResource", BdsInstanceResourcePrincipalConfigurationArgs.builder()
.bdsInstanceId("string")
.clusterAdminPassword("string")
.displayName("string")
.forceRefreshResourcePrincipalTrigger(0)
.sessionTokenLifeSpanDurationInHours(0)
.build());
bds_instance_resource_principal_configuration_resource = oci.big_data_service.BdsInstanceResourcePrincipalConfiguration("bdsInstanceResourcePrincipalConfigurationResource",
bds_instance_id="string",
cluster_admin_password="string",
display_name="string",
force_refresh_resource_principal_trigger=0,
session_token_life_span_duration_in_hours=0)
const bdsInstanceResourcePrincipalConfigurationResource = new oci.bigdataservice.BdsInstanceResourcePrincipalConfiguration("bdsInstanceResourcePrincipalConfigurationResource", {
bdsInstanceId: "string",
clusterAdminPassword: "string",
displayName: "string",
forceRefreshResourcePrincipalTrigger: 0,
sessionTokenLifeSpanDurationInHours: 0,
});
type: oci:BigDataService:BdsInstanceResourcePrincipalConfiguration
properties:
bdsInstanceId: string
clusterAdminPassword: string
displayName: string
forceRefreshResourcePrincipalTrigger: 0
sessionTokenLifeSpanDurationInHours: 0
BdsInstanceResourcePrincipalConfiguration 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 BdsInstanceResourcePrincipalConfiguration resource accepts the following input properties:
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- Display
Name string - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- Force
Refresh intResource Principal Trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- Session
Token intLife Span Duration In Hours - (Updatable) Life span in hours for the resource principal session token.
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- Display
Name string - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- Force
Refresh intResource Principal Trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- Session
Token intLife Span Duration In Hours - (Updatable) Life span in hours for the resource principal session token.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- display
Name String - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- force
Refresh IntegerResource Principal Trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- session
Token IntegerLife Span Duration In Hours - (Updatable) Life span in hours for the resource principal session token.
- bds
Instance stringId - The OCID of the cluster.
- cluster
Admin stringPassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- display
Name string - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- force
Refresh numberResource Principal Trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- session
Token numberLife Span Duration In Hours - (Updatable) Life span in hours for the resource principal session token.
- bds_
instance_ strid - The OCID of the cluster.
- cluster_
admin_ strpassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- display_
name str - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- force_
refresh_ intresource_ principal_ trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- session_
token_ intlife_ span_ duration_ in_ hours - (Updatable) Life span in hours for the resource principal session token.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- display
Name String - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- force
Refresh NumberResource Principal Trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- session
Token NumberLife Span Duration In Hours - (Updatable) Life span in hours for the resource principal session token.
Outputs
All input properties are implicitly available as output properties. Additionally, the BdsInstanceResourcePrincipalConfiguration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The state of the ResourcePrincipalConfiguration.
- Time
Created string - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Token stringExpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- Time
Token stringRefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- Time
Updated string - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The state of the ResourcePrincipalConfiguration.
- Time
Created string - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Token stringExpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- Time
Token stringRefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- Time
Updated string - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The state of the ResourcePrincipalConfiguration.
- time
Created String - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Token StringExpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- time
Token StringRefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- time
Updated String - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The state of the ResourcePrincipalConfiguration.
- time
Created string - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Token stringExpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- time
Token stringRefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- time
Updated string - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The state of the ResourcePrincipalConfiguration.
- time_
created str - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time_
token_ strexpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- time_
token_ strrefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- time_
updated str - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The state of the ResourcePrincipalConfiguration.
- time
Created String - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Token StringExpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- time
Token StringRefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- time
Updated String - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
Look up Existing BdsInstanceResourcePrincipalConfiguration Resource
Get an existing BdsInstanceResourcePrincipalConfiguration 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?: BdsInstanceResourcePrincipalConfigurationState, opts?: CustomResourceOptions): BdsInstanceResourcePrincipalConfiguration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bds_instance_id: Optional[str] = None,
cluster_admin_password: Optional[str] = None,
display_name: Optional[str] = None,
force_refresh_resource_principal_trigger: Optional[int] = None,
session_token_life_span_duration_in_hours: Optional[int] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
time_token_expiry: Optional[str] = None,
time_token_refreshed: Optional[str] = None,
time_updated: Optional[str] = None) -> BdsInstanceResourcePrincipalConfiguration
func GetBdsInstanceResourcePrincipalConfiguration(ctx *Context, name string, id IDInput, state *BdsInstanceResourcePrincipalConfigurationState, opts ...ResourceOption) (*BdsInstanceResourcePrincipalConfiguration, error)
public static BdsInstanceResourcePrincipalConfiguration Get(string name, Input<string> id, BdsInstanceResourcePrincipalConfigurationState? state, CustomResourceOptions? opts = null)
public static BdsInstanceResourcePrincipalConfiguration get(String name, Output<String> id, BdsInstanceResourcePrincipalConfigurationState 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.
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- Display
Name string - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- Force
Refresh intResource Principal Trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- Session
Token intLife Span Duration In Hours - (Updatable) Life span in hours for the resource principal session token.
- State string
- The state of the ResourcePrincipalConfiguration.
- Time
Created string - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Token stringExpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- Time
Token stringRefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- Time
Updated string - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- Display
Name string - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- Force
Refresh intResource Principal Trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- Session
Token intLife Span Duration In Hours - (Updatable) Life span in hours for the resource principal session token.
- State string
- The state of the ResourcePrincipalConfiguration.
- Time
Created string - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Token stringExpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- Time
Token stringRefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- Time
Updated string - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- display
Name String - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- force
Refresh IntegerResource Principal Trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- session
Token IntegerLife Span Duration In Hours - (Updatable) Life span in hours for the resource principal session token.
- state String
- The state of the ResourcePrincipalConfiguration.
- time
Created String - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Token StringExpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- time
Token StringRefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- time
Updated String - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- bds
Instance stringId - The OCID of the cluster.
- cluster
Admin stringPassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- display
Name string - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- force
Refresh numberResource Principal Trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- session
Token numberLife Span Duration In Hours - (Updatable) Life span in hours for the resource principal session token.
- state string
- The state of the ResourcePrincipalConfiguration.
- time
Created string - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Token stringExpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- time
Token stringRefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- time
Updated string - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- bds_
instance_ strid - The OCID of the cluster.
- cluster_
admin_ strpassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- display_
name str - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- force_
refresh_ intresource_ principal_ trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- session_
token_ intlife_ span_ duration_ in_ hours - (Updatable) Life span in hours for the resource principal session token.
- state str
- The state of the ResourcePrincipalConfiguration.
- time_
created str - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time_
token_ strexpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- time_
token_ strrefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- time_
updated str - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded Cluster Admin Password for cluster admin user.
- display
Name String - (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
- force
Refresh NumberResource Principal Trigger - (Updatable) An optional property when incremented triggers Force Refresh Resource Principal. Could be set to any integer value.
- session
Token NumberLife Span Duration In Hours - (Updatable) Life span in hours for the resource principal session token.
- state String
- The state of the ResourcePrincipalConfiguration.
- time
Created String - The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Token StringExpiry - the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
- time
Token StringRefreshed - the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
- time
Updated String - The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
Import
BdsInstanceResourcePrincipalConfigurations can be imported using the id
, e.g.
$ pulumi import oci:BigDataService/bdsInstanceResourcePrincipalConfiguration:BdsInstanceResourcePrincipalConfiguration test_bds_instance_resource_principal_configuration "bdsInstances/{bdsInstanceId}/resourcePrincipalConfigurations/{resourcePrincipalConfigurationId}"
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.