# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).
from datetime import datetime
import oci
# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()
# Initialize service client with default config file
certificates_management_client = oci.certificates_management.CertificatesManagementClient(
config)
# Send the request to service, some parameters are not required, see API
# doc for more info
update_certificate_authority_response = certificates_management_client.update_certificate_authority(
certificate_authority_id="ocid1.test.oc1..<unique_ID>EXAMPLE-certificateAuthorityId-Value",
update_certificate_authority_details=oci.certificates_management.models.UpdateCertificateAuthorityDetails(
description="EXAMPLE-description-Value",
current_version_number=469,
certificate_authority_config=oci.certificates_management.models.UpdateRootCaByGeneratingInternallyConfigDetails(
config_type="ROOT_CA_GENERATED_INTERNALLY",
version_name="EXAMPLE-versionName-Value",
stage="CURRENT",
validity=oci.certificates_management.models.Validity(
time_of_validity_not_after=datetime.strptime(
"2035-02-22T08:06:00.611Z",
"%Y-%m-%dT%H:%M:%S.%fZ"),
time_of_validity_not_before=datetime.strptime(
"2018-01-11T10:19:37.223Z",
"%Y-%m-%dT%H:%M:%S.%fZ"))),
certificate_revocation_list_details=oci.certificates_management.models.CertificateRevocationListDetails(
object_storage_config=oci.certificates_management.models.ObjectStorageBucketConfigDetails(
object_storage_bucket_name="EXAMPLE-objectStorageBucketName-Value",
object_storage_object_name_format="EXAMPLE-objectStorageObjectNameFormat-Value",
object_storage_namespace="EXAMPLE-objectStorageNamespace-Value"),
custom_formatted_urls=["EXAMPLE--Value"]),
freeform_tags={
'EXAMPLE_KEY_dxD4f': 'EXAMPLE_VALUE_zYouxJgLmX2PkGB2CvBK'},
defined_tags={
'EXAMPLE_KEY_L4e48': {
'EXAMPLE_KEY_KcdPm': 'EXAMPLE--Value'}},
certificate_authority_rules=[
oci.certificates_management.models.CertificateAuthorityIssuanceExpiryRule(
rule_type="CERTIFICATE_AUTHORITY_ISSUANCE_EXPIRY_RULE",
leaf_certificate_max_validity_duration="EXAMPLE-leafCertificateMaxValidityDuration-Value",
certificate_authority_max_validity_duration="EXAMPLE-certificateAuthorityMaxValidityDuration-Value")]),
opc_request_id="HVKBPZUSY07KY9BUQGAI<unique_ID>",
if_match="EXAMPLE-ifMatch-Value")
# Get the data from response
print(update_certificate_authority_response.data)