1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CertificatesManagement
  5. getCaBundles
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.CertificatesManagement.getCaBundles

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides the list of Ca Bundles in Oracle Cloud Infrastructure Certificates Management service.

    Lists all CA bundles that match the query parameters. Optionally, you can use the parameter FilterByCaBundleIdQueryParam to limit the result set to a single item that matches the specified CA bundle.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCaBundles = oci.CertificatesManagement.getCaBundles({
        caBundleId: oci_certificates_management_ca_bundle.test_ca_bundle.id,
        compartmentId: _var.compartment_id,
        name: _var.ca_bundle_name,
        state: _var.ca_bundle_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_ca_bundles = oci.CertificatesManagement.get_ca_bundles(ca_bundle_id=oci_certificates_management_ca_bundle["test_ca_bundle"]["id"],
        compartment_id=var["compartment_id"],
        name=var["ca_bundle_name"],
        state=var["ca_bundle_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/CertificatesManagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := CertificatesManagement.GetCaBundles(ctx, &certificatesmanagement.GetCaBundlesArgs{
    			CaBundleId:    pulumi.StringRef(oci_certificates_management_ca_bundle.Test_ca_bundle.Id),
    			CompartmentId: pulumi.StringRef(_var.Compartment_id),
    			Name:          pulumi.StringRef(_var.Ca_bundle_name),
    			State:         pulumi.StringRef(_var.Ca_bundle_state),
    		}, 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 testCaBundles = Oci.CertificatesManagement.GetCaBundles.Invoke(new()
        {
            CaBundleId = oci_certificates_management_ca_bundle.Test_ca_bundle.Id,
            CompartmentId = @var.Compartment_id,
            Name = @var.Ca_bundle_name,
            State = @var.Ca_bundle_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.CertificatesManagement.CertificatesManagementFunctions;
    import com.pulumi.oci.CertificatesManagement.inputs.GetCaBundlesArgs;
    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) {
            final var testCaBundles = CertificatesManagementFunctions.getCaBundles(GetCaBundlesArgs.builder()
                .caBundleId(oci_certificates_management_ca_bundle.test_ca_bundle().id())
                .compartmentId(var_.compartment_id())
                .name(var_.ca_bundle_name())
                .state(var_.ca_bundle_state())
                .build());
    
        }
    }
    
    variables:
      testCaBundles:
        fn::invoke:
          Function: oci:CertificatesManagement:getCaBundles
          Arguments:
            caBundleId: ${oci_certificates_management_ca_bundle.test_ca_bundle.id}
            compartmentId: ${var.compartment_id}
            name: ${var.ca_bundle_name}
            state: ${var.ca_bundle_state}
    

    Using getCaBundles

    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 getCaBundles(args: GetCaBundlesArgs, opts?: InvokeOptions): Promise<GetCaBundlesResult>
    function getCaBundlesOutput(args: GetCaBundlesOutputArgs, opts?: InvokeOptions): Output<GetCaBundlesResult>
    def get_ca_bundles(ca_bundle_id: Optional[str] = None,
                       compartment_id: Optional[str] = None,
                       filters: Optional[Sequence[_certificatesmanagement.GetCaBundlesFilter]] = None,
                       name: Optional[str] = None,
                       state: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetCaBundlesResult
    def get_ca_bundles_output(ca_bundle_id: Optional[pulumi.Input[str]] = None,
                       compartment_id: Optional[pulumi.Input[str]] = None,
                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[_certificatesmanagement.GetCaBundlesFilterArgs]]]] = None,
                       name: Optional[pulumi.Input[str]] = None,
                       state: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetCaBundlesResult]
    func GetCaBundles(ctx *Context, args *GetCaBundlesArgs, opts ...InvokeOption) (*GetCaBundlesResult, error)
    func GetCaBundlesOutput(ctx *Context, args *GetCaBundlesOutputArgs, opts ...InvokeOption) GetCaBundlesResultOutput

    > Note: This function is named GetCaBundles in the Go SDK.

    public static class GetCaBundles 
    {
        public static Task<GetCaBundlesResult> InvokeAsync(GetCaBundlesArgs args, InvokeOptions? opts = null)
        public static Output<GetCaBundlesResult> Invoke(GetCaBundlesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCaBundlesResult> getCaBundles(GetCaBundlesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:CertificatesManagement/getCaBundles:getCaBundles
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CaBundleId string
    The OCID of the CA bundle.
    CompartmentId string
    A filter that returns only resources that match the given compartment OCID.
    Filters List<GetCaBundlesFilter>
    Name string
    A filter that returns only resources that match the specified name.
    State string
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    CaBundleId string
    The OCID of the CA bundle.
    CompartmentId string
    A filter that returns only resources that match the given compartment OCID.
    Filters []GetCaBundlesFilter
    Name string
    A filter that returns only resources that match the specified name.
    State string
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    caBundleId String
    The OCID of the CA bundle.
    compartmentId String
    A filter that returns only resources that match the given compartment OCID.
    filters List<GetCaBundlesFilter>
    name String
    A filter that returns only resources that match the specified name.
    state String
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    caBundleId string
    The OCID of the CA bundle.
    compartmentId string
    A filter that returns only resources that match the given compartment OCID.
    filters GetCaBundlesFilter[]
    name string
    A filter that returns only resources that match the specified name.
    state string
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    ca_bundle_id str
    The OCID of the CA bundle.
    compartment_id str
    A filter that returns only resources that match the given compartment OCID.
    filters Sequence[certificatesmanagement.GetCaBundlesFilter]
    name str
    A filter that returns only resources that match the specified name.
    state str
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    caBundleId String
    The OCID of the CA bundle.
    compartmentId String
    A filter that returns only resources that match the given compartment OCID.
    filters List<Property Map>
    name String
    A filter that returns only resources that match the specified name.
    state String
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.

    getCaBundles Result

    The following output properties are available:

    CaBundleCollections List<GetCaBundlesCaBundleCollection>
    The list of ca_bundle_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CaBundleId string
    CompartmentId string
    The OCID of the compartment for the CA bundle.
    Filters List<GetCaBundlesFilter>
    Name string
    A user-friendly name for the CA bundle. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
    State string
    The current lifecycle state of the CA bundle.
    CaBundleCollections []GetCaBundlesCaBundleCollection
    The list of ca_bundle_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CaBundleId string
    CompartmentId string
    The OCID of the compartment for the CA bundle.
    Filters []GetCaBundlesFilter
    Name string
    A user-friendly name for the CA bundle. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
    State string
    The current lifecycle state of the CA bundle.
    caBundleCollections List<GetCaBundlesCaBundleCollection>
    The list of ca_bundle_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    caBundleId String
    compartmentId String
    The OCID of the compartment for the CA bundle.
    filters List<GetCaBundlesFilter>
    name String
    A user-friendly name for the CA bundle. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
    state String
    The current lifecycle state of the CA bundle.
    caBundleCollections GetCaBundlesCaBundleCollection[]
    The list of ca_bundle_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    caBundleId string
    compartmentId string
    The OCID of the compartment for the CA bundle.
    filters GetCaBundlesFilter[]
    name string
    A user-friendly name for the CA bundle. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
    state string
    The current lifecycle state of the CA bundle.
    ca_bundle_collections Sequence[certificatesmanagement.GetCaBundlesCaBundleCollection]
    The list of ca_bundle_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    ca_bundle_id str
    compartment_id str
    The OCID of the compartment for the CA bundle.
    filters Sequence[certificatesmanagement.GetCaBundlesFilter]
    name str
    A user-friendly name for the CA bundle. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
    state str
    The current lifecycle state of the CA bundle.
    caBundleCollections List<Property Map>
    The list of ca_bundle_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    caBundleId String
    compartmentId String
    The OCID of the compartment for the CA bundle.
    filters List<Property Map>
    name String
    A user-friendly name for the CA bundle. Names are unique within a compartment. Avoid entering confidential information. Valid characters include uppercase or lowercase letters, numbers, hyphens, underscores, and periods.
    state String
    The current lifecycle state of the CA bundle.

    Supporting Types

    GetCaBundlesCaBundleCollection

    GetCaBundlesCaBundleCollectionItem

    CaBundlePem string
    CompartmentId string
    A filter that returns only resources that match the given compartment OCID.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    A brief description of the CA bundle.
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the CA bundle.
    LifecycleDetails string
    Additional information about the current lifecycle state of the CA bundle.
    Name string
    A filter that returns only resources that match the specified name.
    State string
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    TimeCreated string
    A property indicating when the CA bundle was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
    CaBundlePem string
    CompartmentId string
    A filter that returns only resources that match the given compartment OCID.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    A brief description of the CA bundle.
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the CA bundle.
    LifecycleDetails string
    Additional information about the current lifecycle state of the CA bundle.
    Name string
    A filter that returns only resources that match the specified name.
    State string
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    TimeCreated string
    A property indicating when the CA bundle was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
    caBundlePem String
    compartmentId String
    A filter that returns only resources that match the given compartment OCID.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    A brief description of the CA bundle.
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the CA bundle.
    lifecycleDetails String
    Additional information about the current lifecycle state of the CA bundle.
    name String
    A filter that returns only resources that match the specified name.
    state String
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated String
    A property indicating when the CA bundle was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
    caBundlePem string
    compartmentId string
    A filter that returns only resources that match the given compartment OCID.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    A brief description of the CA bundle.
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the CA bundle.
    lifecycleDetails string
    Additional information about the current lifecycle state of the CA bundle.
    name string
    A filter that returns only resources that match the specified name.
    state string
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated string
    A property indicating when the CA bundle was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
    ca_bundle_pem str
    compartment_id str
    A filter that returns only resources that match the given compartment OCID.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    A brief description of the CA bundle.
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the CA bundle.
    lifecycle_details str
    Additional information about the current lifecycle state of the CA bundle.
    name str
    A filter that returns only resources that match the specified name.
    state str
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    time_created str
    A property indicating when the CA bundle was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z
    caBundlePem String
    compartmentId String
    A filter that returns only resources that match the given compartment OCID.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    A brief description of the CA bundle.
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the CA bundle.
    lifecycleDetails String
    Additional information about the current lifecycle state of the CA bundle.
    name String
    A filter that returns only resources that match the specified name.
    state String
    A filter that returns only resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated String
    A property indicating when the CA bundle was created, expressed in RFC 3339 timestamp format. Example: 2019-04-03T21:10:29.600Z

    GetCaBundlesFilter

    Name string
    A filter that returns only resources that match the specified name.
    Values List<string>
    Regex bool
    Name string
    A filter that returns only resources that match the specified name.
    Values []string
    Regex bool
    name String
    A filter that returns only resources that match the specified name.
    values List<String>
    regex Boolean
    name string
    A filter that returns only resources that match the specified name.
    values string[]
    regex boolean
    name str
    A filter that returns only resources that match the specified name.
    values Sequence[str]
    regex bool
    name String
    A filter that returns only resources that match the specified name.
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi