1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. GoldenGate
  5. getDeploymentCertificates
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.GoldenGate.getDeploymentCertificates

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    This data source provides the list of Deployment Certificates in Oracle Cloud Infrastructure Golden Gate service.

    Returns a list of certificates from truststore.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDeploymentCertificates = oci.GoldenGate.getDeploymentCertificates({
        deploymentId: testDeployment.id,
        state: deploymentCertificateState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_deployment_certificates = oci.GoldenGate.get_deployment_certificates(deployment_id=test_deployment["id"],
        state=deployment_certificate_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/GoldenGate"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := GoldenGate.GetDeploymentCertificates(ctx, &goldengate.GetDeploymentCertificatesArgs{
    			DeploymentId: testDeployment.Id,
    			State:        pulumi.StringRef(deploymentCertificateState),
    		}, 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 testDeploymentCertificates = Oci.GoldenGate.GetDeploymentCertificates.Invoke(new()
        {
            DeploymentId = testDeployment.Id,
            State = deploymentCertificateState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.GoldenGate.GoldenGateFunctions;
    import com.pulumi.oci.GoldenGate.inputs.GetDeploymentCertificatesArgs;
    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 testDeploymentCertificates = GoldenGateFunctions.getDeploymentCertificates(GetDeploymentCertificatesArgs.builder()
                .deploymentId(testDeployment.id())
                .state(deploymentCertificateState)
                .build());
    
        }
    }
    
    variables:
      testDeploymentCertificates:
        fn::invoke:
          Function: oci:GoldenGate:getDeploymentCertificates
          Arguments:
            deploymentId: ${testDeployment.id}
            state: ${deploymentCertificateState}
    

    Using getDeploymentCertificates

    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 getDeploymentCertificates(args: GetDeploymentCertificatesArgs, opts?: InvokeOptions): Promise<GetDeploymentCertificatesResult>
    function getDeploymentCertificatesOutput(args: GetDeploymentCertificatesOutputArgs, opts?: InvokeOptions): Output<GetDeploymentCertificatesResult>
    def get_deployment_certificates(deployment_id: Optional[str] = None,
                                    filters: Optional[Sequence[_goldengate.GetDeploymentCertificatesFilter]] = None,
                                    state: Optional[str] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetDeploymentCertificatesResult
    def get_deployment_certificates_output(deployment_id: Optional[pulumi.Input[str]] = None,
                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[_goldengate.GetDeploymentCertificatesFilterArgs]]]] = None,
                                    state: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetDeploymentCertificatesResult]
    func GetDeploymentCertificates(ctx *Context, args *GetDeploymentCertificatesArgs, opts ...InvokeOption) (*GetDeploymentCertificatesResult, error)
    func GetDeploymentCertificatesOutput(ctx *Context, args *GetDeploymentCertificatesOutputArgs, opts ...InvokeOption) GetDeploymentCertificatesResultOutput

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

    public static class GetDeploymentCertificates 
    {
        public static Task<GetDeploymentCertificatesResult> InvokeAsync(GetDeploymentCertificatesArgs args, InvokeOptions? opts = null)
        public static Output<GetDeploymentCertificatesResult> Invoke(GetDeploymentCertificatesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDeploymentCertificatesResult> getDeploymentCertificates(GetDeploymentCertificatesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:GoldenGate/getDeploymentCertificates:getDeploymentCertificates
      arguments:
        # arguments dictionary

    The following arguments are supported:

    DeploymentId string
    A unique Deployment identifier.
    Filters List<GetDeploymentCertificatesFilter>
    State string
    A filter to return only connections having the 'lifecycleState' given.
    DeploymentId string
    A unique Deployment identifier.
    Filters []GetDeploymentCertificatesFilter
    State string
    A filter to return only connections having the 'lifecycleState' given.
    deploymentId String
    A unique Deployment identifier.
    filters List<GetDeploymentCertificatesFilter>
    state String
    A filter to return only connections having the 'lifecycleState' given.
    deploymentId string
    A unique Deployment identifier.
    filters GetDeploymentCertificatesFilter[]
    state string
    A filter to return only connections having the 'lifecycleState' given.
    deployment_id str
    A unique Deployment identifier.
    filters Sequence[goldengate.GetDeploymentCertificatesFilter]
    state str
    A filter to return only connections having the 'lifecycleState' given.
    deploymentId String
    A unique Deployment identifier.
    filters List<Property Map>
    state String
    A filter to return only connections having the 'lifecycleState' given.

    getDeploymentCertificates Result

    The following output properties are available:

    CertificateCollections List<GetDeploymentCertificatesCertificateCollection>
    The list of certificate_collection.
    DeploymentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    Filters List<GetDeploymentCertificatesFilter>
    State string
    Possible certificate lifecycle states.
    CertificateCollections []GetDeploymentCertificatesCertificateCollection
    The list of certificate_collection.
    DeploymentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    Filters []GetDeploymentCertificatesFilter
    State string
    Possible certificate lifecycle states.
    certificateCollections List<GetDeploymentCertificatesCertificateCollection>
    The list of certificate_collection.
    deploymentId String
    id String
    The provider-assigned unique ID for this managed resource.
    filters List<GetDeploymentCertificatesFilter>
    state String
    Possible certificate lifecycle states.
    certificateCollections GetDeploymentCertificatesCertificateCollection[]
    The list of certificate_collection.
    deploymentId string
    id string
    The provider-assigned unique ID for this managed resource.
    filters GetDeploymentCertificatesFilter[]
    state string
    Possible certificate lifecycle states.
    certificate_collections Sequence[goldengate.GetDeploymentCertificatesCertificateCollection]
    The list of certificate_collection.
    deployment_id str
    id str
    The provider-assigned unique ID for this managed resource.
    filters Sequence[goldengate.GetDeploymentCertificatesFilter]
    state str
    Possible certificate lifecycle states.
    certificateCollections List<Property Map>
    The list of certificate_collection.
    deploymentId String
    id String
    The provider-assigned unique ID for this managed resource.
    filters List<Property Map>
    state String
    Possible certificate lifecycle states.

    Supporting Types

    GetDeploymentCertificatesCertificateCollection

    GetDeploymentCertificatesCertificateCollectionItem

    AuthorityKeyId string
    CertificateContent string
    DeploymentId string
    A unique Deployment identifier.
    IsCa bool
    IsSelfSigned bool
    Indicates if the certificate is self signed.
    Issuer string
    Key string
    The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
    Md5hash string
    PublicKey string
    PublicKeyAlgorithm string
    PublicKeySize string
    Serial string
    Sha1hash string
    State string
    A filter to return only connections having the 'lifecycleState' given.
    Subject string
    The Certificate subject.
    SubjectKeyId string
    TimeCreated string
    The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    TimeValidFrom string
    TimeValidTo string
    The time the certificate is valid to. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    Version string
    AuthorityKeyId string
    CertificateContent string
    DeploymentId string
    A unique Deployment identifier.
    IsCa bool
    IsSelfSigned bool
    Indicates if the certificate is self signed.
    Issuer string
    Key string
    The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
    Md5hash string
    PublicKey string
    PublicKeyAlgorithm string
    PublicKeySize string
    Serial string
    Sha1hash string
    State string
    A filter to return only connections having the 'lifecycleState' given.
    Subject string
    The Certificate subject.
    SubjectKeyId string
    TimeCreated string
    The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    TimeValidFrom string
    TimeValidTo string
    The time the certificate is valid to. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    Version string
    authorityKeyId String
    certificateContent String
    deploymentId String
    A unique Deployment identifier.
    isCa Boolean
    isSelfSigned Boolean
    Indicates if the certificate is self signed.
    issuer String
    key String
    The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
    md5hash String
    publicKey String
    publicKeyAlgorithm String
    publicKeySize String
    serial String
    sha1hash String
    state String
    A filter to return only connections having the 'lifecycleState' given.
    subject String
    The Certificate subject.
    subjectKeyId String
    timeCreated String
    The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    timeValidFrom String
    timeValidTo String
    The time the certificate is valid to. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    version String
    authorityKeyId string
    certificateContent string
    deploymentId string
    A unique Deployment identifier.
    isCa boolean
    isSelfSigned boolean
    Indicates if the certificate is self signed.
    issuer string
    key string
    The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
    md5hash string
    publicKey string
    publicKeyAlgorithm string
    publicKeySize string
    serial string
    sha1hash string
    state string
    A filter to return only connections having the 'lifecycleState' given.
    subject string
    The Certificate subject.
    subjectKeyId string
    timeCreated string
    The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    timeValidFrom string
    timeValidTo string
    The time the certificate is valid to. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    version string
    authority_key_id str
    certificate_content str
    deployment_id str
    A unique Deployment identifier.
    is_ca bool
    is_self_signed bool
    Indicates if the certificate is self signed.
    issuer str
    key str
    The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
    md5hash str
    public_key str
    public_key_algorithm str
    public_key_size str
    serial str
    sha1hash str
    state str
    A filter to return only connections having the 'lifecycleState' given.
    subject str
    The Certificate subject.
    subject_key_id str
    time_created str
    The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    time_valid_from str
    time_valid_to str
    The time the certificate is valid to. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    version str
    authorityKeyId String
    certificateContent String
    deploymentId String
    A unique Deployment identifier.
    isCa Boolean
    isSelfSigned Boolean
    Indicates if the certificate is self signed.
    issuer String
    key String
    The identifier key (unique name in the scope of the deployment) of the certificate being referenced. It must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
    md5hash String
    publicKey String
    publicKeyAlgorithm String
    publicKeySize String
    serial String
    sha1hash String
    state String
    A filter to return only connections having the 'lifecycleState' given.
    subject String
    The Certificate subject.
    subjectKeyId String
    timeCreated String
    The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    timeValidFrom String
    timeValidTo String
    The time the certificate is valid to. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.
    version String

    GetDeploymentCertificatesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    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.33.0 published on Thursday, Apr 25, 2024 by Pulumi