Viewing docs for Oracle Cloud Infrastructure v4.13.0
published on Thursday, May 28, 2026 by Pulumi
published on Thursday, May 28, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v4.13.0
published on Thursday, May 28, 2026 by Pulumi
published on Thursday, May 28, 2026 by Pulumi
This data source provides the list of Bds Instance Bds Certificate Configurations in Oracle Cloud Infrastructure Big Data Service service.
Returns a list of BDS certificate configurations associated with this Big Data Service cluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBdsInstanceBdsCertificateConfigurations = oci.bigdataservice.getBdsInstanceBdsCertificateConfigurations({
bdsInstanceId: testBdsInstance.id,
displayName: bdsInstanceBdsCertificateConfigurationDisplayName,
state: bdsInstanceBdsCertificateConfigurationState,
});
import pulumi
import pulumi_oci as oci
test_bds_instance_bds_certificate_configurations = oci.bigdataservice.get_bds_instance_bds_certificate_configurations(bds_instance_id=test_bds_instance["id"],
display_name=bds_instance_bds_certificate_configuration_display_name,
state=bds_instance_bds_certificate_configuration_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/bigdataservice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := bigdataservice.GetBdsInstanceBdsCertificateConfigurations(ctx, &bigdataservice.GetBdsInstanceBdsCertificateConfigurationsArgs{
BdsInstanceId: testBdsInstance.Id,
DisplayName: pulumi.StringRef(bdsInstanceBdsCertificateConfigurationDisplayName),
State: pulumi.StringRef(bdsInstanceBdsCertificateConfigurationState),
}, nil)
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 testBdsInstanceBdsCertificateConfigurations = Oci.BigDataService.GetBdsInstanceBdsCertificateConfigurations.Invoke(new()
{
BdsInstanceId = testBdsInstance.Id,
DisplayName = bdsInstanceBdsCertificateConfigurationDisplayName,
State = bdsInstanceBdsCertificateConfigurationState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.BigDataService.BigDataServiceFunctions;
import com.pulumi.oci.BigDataService.inputs.GetBdsInstanceBdsCertificateConfigurationsArgs;
import java.util.ArrayList;
import java.util.Arrays;
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) {
final var testBdsInstanceBdsCertificateConfigurations = BigDataServiceFunctions.getBdsInstanceBdsCertificateConfigurations(GetBdsInstanceBdsCertificateConfigurationsArgs.builder()
.bdsInstanceId(testBdsInstance.id())
.displayName(bdsInstanceBdsCertificateConfigurationDisplayName)
.state(bdsInstanceBdsCertificateConfigurationState)
.build());
}
}
variables:
testBdsInstanceBdsCertificateConfigurations:
fn::invoke:
function: oci:BigDataService:getBdsInstanceBdsCertificateConfigurations
arguments:
bdsInstanceId: ${testBdsInstance.id}
displayName: ${bdsInstanceBdsCertificateConfigurationDisplayName}
state: ${bdsInstanceBdsCertificateConfigurationState}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
data "oci_bigdataservice_getbdsinstancebdscertificateconfigurations" "testBdsInstanceBdsCertificateConfigurations" {
bds_instance_id = testBdsInstance.id
display_name = bdsInstanceBdsCertificateConfigurationDisplayName
state = bdsInstanceBdsCertificateConfigurationState
}
Using getBdsInstanceBdsCertificateConfigurations
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getBdsInstanceBdsCertificateConfigurations(args: GetBdsInstanceBdsCertificateConfigurationsArgs, opts?: InvokeOptions): Promise<GetBdsInstanceBdsCertificateConfigurationsResult>
function getBdsInstanceBdsCertificateConfigurationsOutput(args: GetBdsInstanceBdsCertificateConfigurationsOutputArgs, opts?: InvokeOptions): Output<GetBdsInstanceBdsCertificateConfigurationsResult>def get_bds_instance_bds_certificate_configurations(bds_instance_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetBdsInstanceBdsCertificateConfigurationsFilter]] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBdsInstanceBdsCertificateConfigurationsResult
def get_bds_instance_bds_certificate_configurations_output(bds_instance_id: pulumi.Input[Optional[str]] = None,
display_name: pulumi.Input[Optional[str]] = None,
filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetBdsInstanceBdsCertificateConfigurationsFilterArgs]]]] = None,
state: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetBdsInstanceBdsCertificateConfigurationsResult]func GetBdsInstanceBdsCertificateConfigurations(ctx *Context, args *GetBdsInstanceBdsCertificateConfigurationsArgs, opts ...InvokeOption) (*GetBdsInstanceBdsCertificateConfigurationsResult, error)
func GetBdsInstanceBdsCertificateConfigurationsOutput(ctx *Context, args *GetBdsInstanceBdsCertificateConfigurationsOutputArgs, opts ...InvokeOption) GetBdsInstanceBdsCertificateConfigurationsResultOutput> Note: This function is named GetBdsInstanceBdsCertificateConfigurations in the Go SDK.
public static class GetBdsInstanceBdsCertificateConfigurations
{
public static Task<GetBdsInstanceBdsCertificateConfigurationsResult> InvokeAsync(GetBdsInstanceBdsCertificateConfigurationsArgs args, InvokeOptions? opts = null)
public static Output<GetBdsInstanceBdsCertificateConfigurationsResult> Invoke(GetBdsInstanceBdsCertificateConfigurationsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetBdsInstanceBdsCertificateConfigurationsResult> getBdsInstanceBdsCertificateConfigurations(GetBdsInstanceBdsCertificateConfigurationsArgs args, InvokeOptions options)
public static Output<GetBdsInstanceBdsCertificateConfigurationsResult> getBdsInstanceBdsCertificateConfigurations(GetBdsInstanceBdsCertificateConfigurationsArgs args, InvokeOptions options)
fn::invoke:
function: oci:BigDataService/getBdsInstanceBdsCertificateConfigurations:getBdsInstanceBdsCertificateConfigurations
arguments:
# arguments dictionarydata "oci_bigdataservice_getbdsinstancebdscertificateconfigurations" "name" {
# arguments
}The following arguments are supported:
- Bds
Instance stringId - The OCID of the cluster.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Bds Instance Bds Certificate Configurations Filter> - State string
- The state of the BdsCertificateConfiguration.
- Bds
Instance stringId - The OCID of the cluster.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Bds Instance Bds Certificate Configurations Filter - State string
- The state of the BdsCertificateConfiguration.
- bds_
instance_ stringid - The OCID of the cluster.
- display_
name string - A filter to return only resources that match the entire display name given.
- filters list(object)
- state string
- The state of the BdsCertificateConfiguration.
- bds
Instance StringId - The OCID of the cluster.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Bds Instance Bds Certificate Configurations Filter> - state String
- The state of the BdsCertificateConfiguration.
- bds
Instance stringId - The OCID of the cluster.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Bds Instance Bds Certificate Configurations Filter[] - state string
- The state of the BdsCertificateConfiguration.
- bds_
instance_ strid - The OCID of the cluster.
- display_
name str - A filter to return only resources that match the entire display name given.
- filters
Sequence[Get
Bds Instance Bds Certificate Configurations Filter] - state str
- The state of the BdsCertificateConfiguration.
- bds
Instance StringId - The OCID of the cluster.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- state String
- The state of the BdsCertificateConfiguration.
getBdsInstanceBdsCertificateConfigurations Result
The following output properties are available:
- Bds
Certificate List<GetConfigurations Bds Instance Bds Certificate Configurations Bds Certificate Configuration> - The list of bds_certificate_configurations.
- Bds
Instance stringId - The OCID of the bdsInstance which is the parent resource id.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - The display name of the BDS certificate configuration.
- Filters
List<Get
Bds Instance Bds Certificate Configurations Filter> - State string
- The lifecycle status of the BDS certificate configuration.
- Bds
Certificate []GetConfigurations Bds Instance Bds Certificate Configurations Bds Certificate Configuration - The list of bds_certificate_configurations.
- Bds
Instance stringId - The OCID of the bdsInstance which is the parent resource id.
- Id string
- The provider-assigned unique ID for this managed resource.
- Display
Name string - The display name of the BDS certificate configuration.
- Filters
[]Get
Bds Instance Bds Certificate Configurations Filter - State string
- The lifecycle status of the BDS certificate configuration.
- bds_
certificate_ list(object)configurations - The list of bds_certificate_configurations.
- bds_
instance_ stringid - The OCID of the bdsInstance which is the parent resource id.
- id string
- The provider-assigned unique ID for this managed resource.
- display_
name string - The display name of the BDS certificate configuration.
- filters list(object)
- state string
- The lifecycle status of the BDS certificate configuration.
- bds
Certificate List<GetConfigurations Bds Instance Bds Certificate Configurations Bds Certificate Configuration> - The list of bds_certificate_configurations.
- bds
Instance StringId - The OCID of the bdsInstance which is the parent resource id.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - The display name of the BDS certificate configuration.
- filters
List<Get
Bds Instance Bds Certificate Configurations Filter> - state String
- The lifecycle status of the BDS certificate configuration.
- bds
Certificate GetConfigurations Bds Instance Bds Certificate Configurations Bds Certificate Configuration[] - The list of bds_certificate_configurations.
- bds
Instance stringId - The OCID of the bdsInstance which is the parent resource id.
- id string
- The provider-assigned unique ID for this managed resource.
- display
Name string - The display name of the BDS certificate configuration.
- filters
Get
Bds Instance Bds Certificate Configurations Filter[] - state string
- The lifecycle status of the BDS certificate configuration.
- bds_
certificate_ Sequence[Getconfigurations Bds Instance Bds Certificate Configurations Bds Certificate Configuration] - The list of bds_certificate_configurations.
- bds_
instance_ strid - The OCID of the bdsInstance which is the parent resource id.
- id str
- The provider-assigned unique ID for this managed resource.
- display_
name str - The display name of the BDS certificate configuration.
- filters
Sequence[Get
Bds Instance Bds Certificate Configurations Filter] - state str
- The lifecycle status of the BDS certificate configuration.
- bds
Certificate List<Property Map>Configurations - The list of bds_certificate_configurations.
- bds
Instance StringId - The OCID of the bdsInstance which is the parent resource id.
- id String
- The provider-assigned unique ID for this managed resource.
- display
Name String - The display name of the BDS certificate configuration.
- filters List<Property Map>
- state String
- The lifecycle status of the BDS certificate configuration.
Supporting Types
GetBdsInstanceBdsCertificateConfigurationsBdsCertificateConfiguration
- Bds
Instance stringId - The OCID of the cluster.
- string
- The OCID of the certificate authority which is associated with this certificate configuration. The value is Null when this BDS certificate configuration type is SELF_SIGNED.
- Certificate
Type string - Cluster
Admin stringPassword - Compartment
Id string - The OCID of the compartment of the certificate authority connecting to this certificate configuration.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Id string
- The ID of the BDS certificate configuration defined under BDS resources, not OCID.
- Is
Default boolConfiguration - If this BDS certificate configuration is a default configuration or not. There will be only one Default certificate configuration per BDS cluster.
- Is
Missing boolNodes Only - Issue
Certificate stringTrigger - Renew
Certificate stringTrigger - Secret
Id string - Set
Default stringTrigger - State string
- The state of the BdsCertificateConfiguration.
- Time
Created string - The time when the BDS certificate configuration was created, shown as an RFC 3339 formatted datetime string.
- Time
Last stringRefreshed Or Generated - The last time the BDS certificate configuration was used to generate or renew the certificate(s).
- Time
Updated string - The time the BDS certificate configuration was updated, shown as an RFC 3339 formatted datetime string.
- Type string
- The type of the BDS certificate configuration, also the type of the BDS certificates which will be generated by the BDS certificate configuration.
- Bds
Instance stringId - The OCID of the cluster.
- string
- The OCID of the certificate authority which is associated with this certificate configuration. The value is Null when this BDS certificate configuration type is SELF_SIGNED.
- Certificate
Type string - Cluster
Admin stringPassword - Compartment
Id string - The OCID of the compartment of the certificate authority connecting to this certificate configuration.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Id string
- The ID of the BDS certificate configuration defined under BDS resources, not OCID.
- Is
Default boolConfiguration - If this BDS certificate configuration is a default configuration or not. There will be only one Default certificate configuration per BDS cluster.
- Is
Missing boolNodes Only - Issue
Certificate stringTrigger - Renew
Certificate stringTrigger - Secret
Id string - Set
Default stringTrigger - State string
- The state of the BdsCertificateConfiguration.
- Time
Created string - The time when the BDS certificate configuration was created, shown as an RFC 3339 formatted datetime string.
- Time
Last stringRefreshed Or Generated - The last time the BDS certificate configuration was used to generate or renew the certificate(s).
- Time
Updated string - The time the BDS certificate configuration was updated, shown as an RFC 3339 formatted datetime string.
- Type string
- The type of the BDS certificate configuration, also the type of the BDS certificates which will be generated by the BDS certificate configuration.
- bds_
instance_ stringid - The OCID of the cluster.
- string
- The OCID of the certificate authority which is associated with this certificate configuration. The value is Null when this BDS certificate configuration type is SELF_SIGNED.
- certificate_
type string - cluster_
admin_ stringpassword - compartment_
id string - The OCID of the compartment of the certificate authority connecting to this certificate configuration.
- display_
name string - A filter to return only resources that match the entire display name given.
- id string
- The ID of the BDS certificate configuration defined under BDS resources, not OCID.
- is_
default_ boolconfiguration - If this BDS certificate configuration is a default configuration or not. There will be only one Default certificate configuration per BDS cluster.
- is_
missing_ boolnodes_ only - issue_
certificate_ stringtrigger - renew_
certificate_ stringtrigger - secret_
id string - set_
default_ stringtrigger - state string
- The state of the BdsCertificateConfiguration.
- time_
created string - The time when the BDS certificate configuration was created, shown as an RFC 3339 formatted datetime string.
- time_
last_ stringrefreshed_ or_ generated - The last time the BDS certificate configuration was used to generate or renew the certificate(s).
- time_
updated string - The time the BDS certificate configuration was updated, shown as an RFC 3339 formatted datetime string.
- type string
- The type of the BDS certificate configuration, also the type of the BDS certificates which will be generated by the BDS certificate configuration.
- bds
Instance StringId - The OCID of the cluster.
- String
- The OCID of the certificate authority which is associated with this certificate configuration. The value is Null when this BDS certificate configuration type is SELF_SIGNED.
- certificate
Type String - cluster
Admin StringPassword - compartment
Id String - The OCID of the compartment of the certificate authority connecting to this certificate configuration.
- display
Name String - A filter to return only resources that match the entire display name given.
- id String
- The ID of the BDS certificate configuration defined under BDS resources, not OCID.
- is
Default BooleanConfiguration - If this BDS certificate configuration is a default configuration or not. There will be only one Default certificate configuration per BDS cluster.
- is
Missing BooleanNodes Only - issue
Certificate StringTrigger - renew
Certificate StringTrigger - secret
Id String - set
Default StringTrigger - state String
- The state of the BdsCertificateConfiguration.
- time
Created String - The time when the BDS certificate configuration was created, shown as an RFC 3339 formatted datetime string.
- time
Last StringRefreshed Or Generated - The last time the BDS certificate configuration was used to generate or renew the certificate(s).
- time
Updated String - The time the BDS certificate configuration was updated, shown as an RFC 3339 formatted datetime string.
- type String
- The type of the BDS certificate configuration, also the type of the BDS certificates which will be generated by the BDS certificate configuration.
- bds
Instance stringId - The OCID of the cluster.
- string
- The OCID of the certificate authority which is associated with this certificate configuration. The value is Null when this BDS certificate configuration type is SELF_SIGNED.
- certificate
Type string - cluster
Admin stringPassword - compartment
Id string - The OCID of the compartment of the certificate authority connecting to this certificate configuration.
- display
Name string - A filter to return only resources that match the entire display name given.
- id string
- The ID of the BDS certificate configuration defined under BDS resources, not OCID.
- is
Default booleanConfiguration - If this BDS certificate configuration is a default configuration or not. There will be only one Default certificate configuration per BDS cluster.
- is
Missing booleanNodes Only - issue
Certificate stringTrigger - renew
Certificate stringTrigger - secret
Id string - set
Default stringTrigger - state string
- The state of the BdsCertificateConfiguration.
- time
Created string - The time when the BDS certificate configuration was created, shown as an RFC 3339 formatted datetime string.
- time
Last stringRefreshed Or Generated - The last time the BDS certificate configuration was used to generate or renew the certificate(s).
- time
Updated string - The time the BDS certificate configuration was updated, shown as an RFC 3339 formatted datetime string.
- type string
- The type of the BDS certificate configuration, also the type of the BDS certificates which will be generated by the BDS certificate configuration.
- bds_
instance_ strid - The OCID of the cluster.
- str
- The OCID of the certificate authority which is associated with this certificate configuration. The value is Null when this BDS certificate configuration type is SELF_SIGNED.
- certificate_
type str - cluster_
admin_ strpassword - compartment_
id str - The OCID of the compartment of the certificate authority connecting to this certificate configuration.
- display_
name str - A filter to return only resources that match the entire display name given.
- id str
- The ID of the BDS certificate configuration defined under BDS resources, not OCID.
- is_
default_ boolconfiguration - If this BDS certificate configuration is a default configuration or not. There will be only one Default certificate configuration per BDS cluster.
- is_
missing_ boolnodes_ only - issue_
certificate_ strtrigger - renew_
certificate_ strtrigger - secret_
id str - set_
default_ strtrigger - state str
- The state of the BdsCertificateConfiguration.
- time_
created str - The time when the BDS certificate configuration was created, shown as an RFC 3339 formatted datetime string.
- time_
last_ strrefreshed_ or_ generated - The last time the BDS certificate configuration was used to generate or renew the certificate(s).
- time_
updated str - The time the BDS certificate configuration was updated, shown as an RFC 3339 formatted datetime string.
- type str
- The type of the BDS certificate configuration, also the type of the BDS certificates which will be generated by the BDS certificate configuration.
- bds
Instance StringId - The OCID of the cluster.
- String
- The OCID of the certificate authority which is associated with this certificate configuration. The value is Null when this BDS certificate configuration type is SELF_SIGNED.
- certificate
Type String - cluster
Admin StringPassword - compartment
Id String - The OCID of the compartment of the certificate authority connecting to this certificate configuration.
- display
Name String - A filter to return only resources that match the entire display name given.
- id String
- The ID of the BDS certificate configuration defined under BDS resources, not OCID.
- is
Default BooleanConfiguration - If this BDS certificate configuration is a default configuration or not. There will be only one Default certificate configuration per BDS cluster.
- is
Missing BooleanNodes Only - issue
Certificate StringTrigger - renew
Certificate StringTrigger - secret
Id String - set
Default StringTrigger - state String
- The state of the BdsCertificateConfiguration.
- time
Created String - The time when the BDS certificate configuration was created, shown as an RFC 3339 formatted datetime string.
- time
Last StringRefreshed Or Generated - The last time the BDS certificate configuration was used to generate or renew the certificate(s).
- time
Updated String - The time the BDS certificate configuration was updated, shown as an RFC 3339 formatted datetime string.
- type String
- The type of the BDS certificate configuration, also the type of the BDS certificates which will be generated by the BDS certificate configuration.
GetBdsInstanceBdsCertificateConfigurationsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v4.13.0
published on Thursday, May 28, 2026 by Pulumi
published on Thursday, May 28, 2026 by Pulumi