1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. AutonomousVmClusterOrdsCertificateManagement
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Database.AutonomousVmClusterOrdsCertificateManagement

Explore with Pulumi AI

This resource provides the Autonomous Vm Cluster Ords Certificate Management resource in Oracle Cloud Infrastructure Database service.

Rotates the Oracle REST Data Services (ORDS) certificates for Autonomous Exadata VM cluster.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testAutonomousVmClusterOrdsCertificateManagement = new oci.database.AutonomousVmClusterOrdsCertificateManagement("test_autonomous_vm_cluster_ords_certificate_management", {
    autonomousVmClusterId: testAutonomousVmCluster.id,
    certificateGenerationType: autonomousVmClusterOrdsCertificateManagementCertificateGenerationType,
    caBundleId: testCaBundle.id,
    certificateAuthorityId: testCertificateAuthority.id,
    certificateId: testCertificate.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_autonomous_vm_cluster_ords_certificate_management = oci.database.AutonomousVmClusterOrdsCertificateManagement("test_autonomous_vm_cluster_ords_certificate_management",
    autonomous_vm_cluster_id=test_autonomous_vm_cluster["id"],
    certificate_generation_type=autonomous_vm_cluster_ords_certificate_management_certificate_generation_type,
    ca_bundle_id=test_ca_bundle["id"],
    certificate_authority_id=test_certificate_authority["id"],
    certificate_id=test_certificate["id"])
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.NewAutonomousVmClusterOrdsCertificateManagement(ctx, "test_autonomous_vm_cluster_ords_certificate_management", &database.AutonomousVmClusterOrdsCertificateManagementArgs{
			AutonomousVmClusterId:     pulumi.Any(testAutonomousVmCluster.Id),
			CertificateGenerationType: pulumi.Any(autonomousVmClusterOrdsCertificateManagementCertificateGenerationType),
			CaBundleId:                pulumi.Any(testCaBundle.Id),
			CertificateAuthorityId:    pulumi.Any(testCertificateAuthority.Id),
			CertificateId:             pulumi.Any(testCertificate.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testAutonomousVmClusterOrdsCertificateManagement = new Oci.Database.AutonomousVmClusterOrdsCertificateManagement("test_autonomous_vm_cluster_ords_certificate_management", new()
    {
        AutonomousVmClusterId = testAutonomousVmCluster.Id,
        CertificateGenerationType = autonomousVmClusterOrdsCertificateManagementCertificateGenerationType,
        CaBundleId = testCaBundle.Id,
        CertificateAuthorityId = testCertificateAuthority.Id,
        CertificateId = testCertificate.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.AutonomousVmClusterOrdsCertificateManagement;
import com.pulumi.oci.Database.AutonomousVmClusterOrdsCertificateManagementArgs;
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 testAutonomousVmClusterOrdsCertificateManagement = new AutonomousVmClusterOrdsCertificateManagement("testAutonomousVmClusterOrdsCertificateManagement", AutonomousVmClusterOrdsCertificateManagementArgs.builder()
            .autonomousVmClusterId(testAutonomousVmCluster.id())
            .certificateGenerationType(autonomousVmClusterOrdsCertificateManagementCertificateGenerationType)
            .caBundleId(testCaBundle.id())
            .certificateAuthorityId(testCertificateAuthority.id())
            .certificateId(testCertificate.id())
            .build());

    }
}
Copy
resources:
  testAutonomousVmClusterOrdsCertificateManagement:
    type: oci:Database:AutonomousVmClusterOrdsCertificateManagement
    name: test_autonomous_vm_cluster_ords_certificate_management
    properties:
      autonomousVmClusterId: ${testAutonomousVmCluster.id}
      certificateGenerationType: ${autonomousVmClusterOrdsCertificateManagementCertificateGenerationType}
      caBundleId: ${testCaBundle.id}
      certificateAuthorityId: ${testCertificateAuthority.id}
      certificateId: ${testCertificate.id}
Copy

Create AutonomousVmClusterOrdsCertificateManagement Resource

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

Constructor syntax

new AutonomousVmClusterOrdsCertificateManagement(name: string, args: AutonomousVmClusterOrdsCertificateManagementArgs, opts?: CustomResourceOptions);
@overload
def AutonomousVmClusterOrdsCertificateManagement(resource_name: str,
                                                 args: AutonomousVmClusterOrdsCertificateManagementArgs,
                                                 opts: Optional[ResourceOptions] = None)

@overload
def AutonomousVmClusterOrdsCertificateManagement(resource_name: str,
                                                 opts: Optional[ResourceOptions] = None,
                                                 autonomous_vm_cluster_id: Optional[str] = None,
                                                 certificate_generation_type: Optional[str] = None,
                                                 ca_bundle_id: Optional[str] = None,
                                                 certificate_authority_id: Optional[str] = None,
                                                 certificate_id: Optional[str] = None)
func NewAutonomousVmClusterOrdsCertificateManagement(ctx *Context, name string, args AutonomousVmClusterOrdsCertificateManagementArgs, opts ...ResourceOption) (*AutonomousVmClusterOrdsCertificateManagement, error)
public AutonomousVmClusterOrdsCertificateManagement(string name, AutonomousVmClusterOrdsCertificateManagementArgs args, CustomResourceOptions? opts = null)
public AutonomousVmClusterOrdsCertificateManagement(String name, AutonomousVmClusterOrdsCertificateManagementArgs args)
public AutonomousVmClusterOrdsCertificateManagement(String name, AutonomousVmClusterOrdsCertificateManagementArgs args, CustomResourceOptions options)
type: oci:Database:AutonomousVmClusterOrdsCertificateManagement
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AutonomousVmClusterOrdsCertificateManagementArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AutonomousVmClusterOrdsCertificateManagementArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AutonomousVmClusterOrdsCertificateManagementArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AutonomousVmClusterOrdsCertificateManagementArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AutonomousVmClusterOrdsCertificateManagementArgs
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 autonomousVmClusterOrdsCertificateManagementResource = new Oci.Database.AutonomousVmClusterOrdsCertificateManagement("autonomousVmClusterOrdsCertificateManagementResource", new()
{
    AutonomousVmClusterId = "string",
    CertificateGenerationType = "string",
    CaBundleId = "string",
    CertificateAuthorityId = "string",
    CertificateId = "string",
});
Copy
example, err := Database.NewAutonomousVmClusterOrdsCertificateManagement(ctx, "autonomousVmClusterOrdsCertificateManagementResource", &Database.AutonomousVmClusterOrdsCertificateManagementArgs{
	AutonomousVmClusterId:     pulumi.String("string"),
	CertificateGenerationType: pulumi.String("string"),
	CaBundleId:                pulumi.String("string"),
	CertificateAuthorityId:    pulumi.String("string"),
	CertificateId:             pulumi.String("string"),
})
Copy
var autonomousVmClusterOrdsCertificateManagementResource = new AutonomousVmClusterOrdsCertificateManagement("autonomousVmClusterOrdsCertificateManagementResource", AutonomousVmClusterOrdsCertificateManagementArgs.builder()
    .autonomousVmClusterId("string")
    .certificateGenerationType("string")
    .caBundleId("string")
    .certificateAuthorityId("string")
    .certificateId("string")
    .build());
Copy
autonomous_vm_cluster_ords_certificate_management_resource = oci.database.AutonomousVmClusterOrdsCertificateManagement("autonomousVmClusterOrdsCertificateManagementResource",
    autonomous_vm_cluster_id="string",
    certificate_generation_type="string",
    ca_bundle_id="string",
    certificate_authority_id="string",
    certificate_id="string")
Copy
const autonomousVmClusterOrdsCertificateManagementResource = new oci.database.AutonomousVmClusterOrdsCertificateManagement("autonomousVmClusterOrdsCertificateManagementResource", {
    autonomousVmClusterId: "string",
    certificateGenerationType: "string",
    caBundleId: "string",
    certificateAuthorityId: "string",
    certificateId: "string",
});
Copy
type: oci:Database:AutonomousVmClusterOrdsCertificateManagement
properties:
    autonomousVmClusterId: string
    caBundleId: string
    certificateAuthorityId: string
    certificateGenerationType: string
    certificateId: string
Copy

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

AutonomousVmClusterId
This property is required.
Changes to this property will trigger replacement.
string
The autonomous VM cluster OCID.
CertificateGenerationType
This property is required.
Changes to this property will trigger replacement.
string
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
CaBundleId Changes to this property will trigger replacement. string
The OCID of the certificate bundle.
CertificateAuthorityId Changes to this property will trigger replacement. string
The OCID of the certificate authority.
CertificateId Changes to this property will trigger replacement. string

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

AutonomousVmClusterId
This property is required.
Changes to this property will trigger replacement.
string
The autonomous VM cluster OCID.
CertificateGenerationType
This property is required.
Changes to this property will trigger replacement.
string
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
CaBundleId Changes to this property will trigger replacement. string
The OCID of the certificate bundle.
CertificateAuthorityId Changes to this property will trigger replacement. string
The OCID of the certificate authority.
CertificateId Changes to this property will trigger replacement. string

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

autonomousVmClusterId
This property is required.
Changes to this property will trigger replacement.
String
The autonomous VM cluster OCID.
certificateGenerationType
This property is required.
Changes to this property will trigger replacement.
String
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
caBundleId Changes to this property will trigger replacement. String
The OCID of the certificate bundle.
certificateAuthorityId Changes to this property will trigger replacement. String
The OCID of the certificate authority.
certificateId Changes to this property will trigger replacement. String

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

autonomousVmClusterId
This property is required.
Changes to this property will trigger replacement.
string
The autonomous VM cluster OCID.
certificateGenerationType
This property is required.
Changes to this property will trigger replacement.
string
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
caBundleId Changes to this property will trigger replacement. string
The OCID of the certificate bundle.
certificateAuthorityId Changes to this property will trigger replacement. string
The OCID of the certificate authority.
certificateId Changes to this property will trigger replacement. string

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

autonomous_vm_cluster_id
This property is required.
Changes to this property will trigger replacement.
str
The autonomous VM cluster OCID.
certificate_generation_type
This property is required.
Changes to this property will trigger replacement.
str
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
ca_bundle_id Changes to this property will trigger replacement. str
The OCID of the certificate bundle.
certificate_authority_id Changes to this property will trigger replacement. str
The OCID of the certificate authority.
certificate_id Changes to this property will trigger replacement. str

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

autonomousVmClusterId
This property is required.
Changes to this property will trigger replacement.
String
The autonomous VM cluster OCID.
certificateGenerationType
This property is required.
Changes to this property will trigger replacement.
String
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
caBundleId Changes to this property will trigger replacement. String
The OCID of the certificate bundle.
certificateAuthorityId Changes to this property will trigger replacement. String
The OCID of the certificate authority.
certificateId Changes to this property will trigger replacement. String

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Outputs

All input properties are implicitly available as output properties. Additionally, the AutonomousVmClusterOrdsCertificateManagement 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 AutonomousVmClusterOrdsCertificateManagement Resource

Get an existing AutonomousVmClusterOrdsCertificateManagement 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?: AutonomousVmClusterOrdsCertificateManagementState, opts?: CustomResourceOptions): AutonomousVmClusterOrdsCertificateManagement
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        autonomous_vm_cluster_id: Optional[str] = None,
        ca_bundle_id: Optional[str] = None,
        certificate_authority_id: Optional[str] = None,
        certificate_generation_type: Optional[str] = None,
        certificate_id: Optional[str] = None) -> AutonomousVmClusterOrdsCertificateManagement
func GetAutonomousVmClusterOrdsCertificateManagement(ctx *Context, name string, id IDInput, state *AutonomousVmClusterOrdsCertificateManagementState, opts ...ResourceOption) (*AutonomousVmClusterOrdsCertificateManagement, error)
public static AutonomousVmClusterOrdsCertificateManagement Get(string name, Input<string> id, AutonomousVmClusterOrdsCertificateManagementState? state, CustomResourceOptions? opts = null)
public static AutonomousVmClusterOrdsCertificateManagement get(String name, Output<String> id, AutonomousVmClusterOrdsCertificateManagementState state, CustomResourceOptions options)
resources:  _:    type: oci:Database:AutonomousVmClusterOrdsCertificateManagement    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AutonomousVmClusterId Changes to this property will trigger replacement. string
The autonomous VM cluster OCID.
CaBundleId Changes to this property will trigger replacement. string
The OCID of the certificate bundle.
CertificateAuthorityId Changes to this property will trigger replacement. string
The OCID of the certificate authority.
CertificateGenerationType Changes to this property will trigger replacement. string
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
CertificateId Changes to this property will trigger replacement. string

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

AutonomousVmClusterId Changes to this property will trigger replacement. string
The autonomous VM cluster OCID.
CaBundleId Changes to this property will trigger replacement. string
The OCID of the certificate bundle.
CertificateAuthorityId Changes to this property will trigger replacement. string
The OCID of the certificate authority.
CertificateGenerationType Changes to this property will trigger replacement. string
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
CertificateId Changes to this property will trigger replacement. string

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

autonomousVmClusterId Changes to this property will trigger replacement. String
The autonomous VM cluster OCID.
caBundleId Changes to this property will trigger replacement. String
The OCID of the certificate bundle.
certificateAuthorityId Changes to this property will trigger replacement. String
The OCID of the certificate authority.
certificateGenerationType Changes to this property will trigger replacement. String
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
certificateId Changes to this property will trigger replacement. String

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

autonomousVmClusterId Changes to this property will trigger replacement. string
The autonomous VM cluster OCID.
caBundleId Changes to this property will trigger replacement. string
The OCID of the certificate bundle.
certificateAuthorityId Changes to this property will trigger replacement. string
The OCID of the certificate authority.
certificateGenerationType Changes to this property will trigger replacement. string
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
certificateId Changes to this property will trigger replacement. string

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

autonomous_vm_cluster_id Changes to this property will trigger replacement. str
The autonomous VM cluster OCID.
ca_bundle_id Changes to this property will trigger replacement. str
The OCID of the certificate bundle.
certificate_authority_id Changes to this property will trigger replacement. str
The OCID of the certificate authority.
certificate_generation_type Changes to this property will trigger replacement. str
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
certificate_id Changes to this property will trigger replacement. str

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

autonomousVmClusterId Changes to this property will trigger replacement. String
The autonomous VM cluster OCID.
caBundleId Changes to this property will trigger replacement. String
The OCID of the certificate bundle.
certificateAuthorityId Changes to this property will trigger replacement. String
The OCID of the certificate authority.
certificateGenerationType Changes to this property will trigger replacement. String
Specify SYSTEM for using Oracle managed certificates. Specify BYOC when you want to bring your own certificate.
certificateId Changes to this property will trigger replacement. String

The OCID of the certificate to use.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Import

Import is not supported for this resource.

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.