1. Packages
  2. Akamai
  3. API Docs
  4. MtlstruststoreCaSet
Akamai v10.1.0 published on Thursday, Nov 6, 2025 by Pulumi

akamai.MtlstruststoreCaSet

Get Started
akamai logo
Akamai v10.1.0 published on Thursday, Nov 6, 2025 by Pulumi

    Create MtlstruststoreCaSet Resource

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

    Constructor syntax

    new MtlstruststoreCaSet(name: string, args: MtlstruststoreCaSetArgs, opts?: CustomResourceOptions);
    @overload
    def MtlstruststoreCaSet(resource_name: str,
                            args: MtlstruststoreCaSetArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def MtlstruststoreCaSet(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            certificates: Optional[Sequence[MtlstruststoreCaSetCertificateArgs]] = None,
                            allow_insecure_sha1: Optional[bool] = None,
                            description: Optional[str] = None,
                            name: Optional[str] = None,
                            timeouts: Optional[MtlstruststoreCaSetTimeoutsArgs] = None,
                            version_description: Optional[str] = None)
    func NewMtlstruststoreCaSet(ctx *Context, name string, args MtlstruststoreCaSetArgs, opts ...ResourceOption) (*MtlstruststoreCaSet, error)
    public MtlstruststoreCaSet(string name, MtlstruststoreCaSetArgs args, CustomResourceOptions? opts = null)
    public MtlstruststoreCaSet(String name, MtlstruststoreCaSetArgs args)
    public MtlstruststoreCaSet(String name, MtlstruststoreCaSetArgs args, CustomResourceOptions options)
    
    type: akamai:MtlstruststoreCaSet
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args MtlstruststoreCaSetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args MtlstruststoreCaSetArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args MtlstruststoreCaSetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MtlstruststoreCaSetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MtlstruststoreCaSetArgs
    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 mtlstruststoreCaSetResource = new Akamai.MtlstruststoreCaSet("mtlstruststoreCaSetResource", new()
    {
        Certificates = new[]
        {
            new Akamai.Inputs.MtlstruststoreCaSetCertificateArgs
            {
                CertificatePem = "string",
                CreatedBy = "string",
                CreatedDate = "string",
                Description = "string",
                EndDate = "string",
                Fingerprint = "string",
                Issuer = "string",
                SerialNumber = "string",
                SignatureAlgorithm = "string",
                StartDate = "string",
                Subject = "string",
            },
        },
        AllowInsecureSha1 = false,
        Description = "string",
        Name = "string",
        Timeouts = new Akamai.Inputs.MtlstruststoreCaSetTimeoutsArgs
        {
            Delete = "string",
        },
        VersionDescription = "string",
    });
    
    example, err := akamai.NewMtlstruststoreCaSet(ctx, "mtlstruststoreCaSetResource", &akamai.MtlstruststoreCaSetArgs{
    	Certificates: akamai.MtlstruststoreCaSetCertificateArray{
    		&akamai.MtlstruststoreCaSetCertificateArgs{
    			CertificatePem:     pulumi.String("string"),
    			CreatedBy:          pulumi.String("string"),
    			CreatedDate:        pulumi.String("string"),
    			Description:        pulumi.String("string"),
    			EndDate:            pulumi.String("string"),
    			Fingerprint:        pulumi.String("string"),
    			Issuer:             pulumi.String("string"),
    			SerialNumber:       pulumi.String("string"),
    			SignatureAlgorithm: pulumi.String("string"),
    			StartDate:          pulumi.String("string"),
    			Subject:            pulumi.String("string"),
    		},
    	},
    	AllowInsecureSha1: pulumi.Bool(false),
    	Description:       pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	Timeouts: &akamai.MtlstruststoreCaSetTimeoutsArgs{
    		Delete: pulumi.String("string"),
    	},
    	VersionDescription: pulumi.String("string"),
    })
    
    var mtlstruststoreCaSetResource = new MtlstruststoreCaSet("mtlstruststoreCaSetResource", MtlstruststoreCaSetArgs.builder()
        .certificates(MtlstruststoreCaSetCertificateArgs.builder()
            .certificatePem("string")
            .createdBy("string")
            .createdDate("string")
            .description("string")
            .endDate("string")
            .fingerprint("string")
            .issuer("string")
            .serialNumber("string")
            .signatureAlgorithm("string")
            .startDate("string")
            .subject("string")
            .build())
        .allowInsecureSha1(false)
        .description("string")
        .name("string")
        .timeouts(MtlstruststoreCaSetTimeoutsArgs.builder()
            .delete("string")
            .build())
        .versionDescription("string")
        .build());
    
    mtlstruststore_ca_set_resource = akamai.MtlstruststoreCaSet("mtlstruststoreCaSetResource",
        certificates=[{
            "certificate_pem": "string",
            "created_by": "string",
            "created_date": "string",
            "description": "string",
            "end_date": "string",
            "fingerprint": "string",
            "issuer": "string",
            "serial_number": "string",
            "signature_algorithm": "string",
            "start_date": "string",
            "subject": "string",
        }],
        allow_insecure_sha1=False,
        description="string",
        name="string",
        timeouts={
            "delete": "string",
        },
        version_description="string")
    
    const mtlstruststoreCaSetResource = new akamai.MtlstruststoreCaSet("mtlstruststoreCaSetResource", {
        certificates: [{
            certificatePem: "string",
            createdBy: "string",
            createdDate: "string",
            description: "string",
            endDate: "string",
            fingerprint: "string",
            issuer: "string",
            serialNumber: "string",
            signatureAlgorithm: "string",
            startDate: "string",
            subject: "string",
        }],
        allowInsecureSha1: false,
        description: "string",
        name: "string",
        timeouts: {
            "delete": "string",
        },
        versionDescription: "string",
    });
    
    type: akamai:MtlstruststoreCaSet
    properties:
        allowInsecureSha1: false
        certificates:
            - certificatePem: string
              createdBy: string
              createdDate: string
              description: string
              endDate: string
              fingerprint: string
              issuer: string
              serialNumber: string
              signatureAlgorithm: string
              startDate: string
              subject: string
        description: string
        name: string
        timeouts:
            delete: string
        versionDescription: string
    

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

    Certificates List<MtlstruststoreCaSetCertificate>
    The certificates that are valid, non-expired, root, or intermediate.
    AllowInsecureSha1 bool
    Allows certificates with SHA-1 signatures if enabled.
    Description string
    Any additional comments you can add to the CA set.
    Name string
    The name of the CA set.
    Timeouts MtlstruststoreCaSetTimeouts
    VersionDescription string
    Additional description for the CA set version.
    Certificates []MtlstruststoreCaSetCertificateArgs
    The certificates that are valid, non-expired, root, or intermediate.
    AllowInsecureSha1 bool
    Allows certificates with SHA-1 signatures if enabled.
    Description string
    Any additional comments you can add to the CA set.
    Name string
    The name of the CA set.
    Timeouts MtlstruststoreCaSetTimeoutsArgs
    VersionDescription string
    Additional description for the CA set version.
    certificates List<MtlstruststoreCaSetCertificate>
    The certificates that are valid, non-expired, root, or intermediate.
    allowInsecureSha1 Boolean
    Allows certificates with SHA-1 signatures if enabled.
    description String
    Any additional comments you can add to the CA set.
    name String
    The name of the CA set.
    timeouts MtlstruststoreCaSetTimeouts
    versionDescription String
    Additional description for the CA set version.
    certificates MtlstruststoreCaSetCertificate[]
    The certificates that are valid, non-expired, root, or intermediate.
    allowInsecureSha1 boolean
    Allows certificates with SHA-1 signatures if enabled.
    description string
    Any additional comments you can add to the CA set.
    name string
    The name of the CA set.
    timeouts MtlstruststoreCaSetTimeouts
    versionDescription string
    Additional description for the CA set version.
    certificates Sequence[MtlstruststoreCaSetCertificateArgs]
    The certificates that are valid, non-expired, root, or intermediate.
    allow_insecure_sha1 bool
    Allows certificates with SHA-1 signatures if enabled.
    description str
    Any additional comments you can add to the CA set.
    name str
    The name of the CA set.
    timeouts MtlstruststoreCaSetTimeoutsArgs
    version_description str
    Additional description for the CA set version.
    certificates List<Property Map>
    The certificates that are valid, non-expired, root, or intermediate.
    allowInsecureSha1 Boolean
    Allows certificates with SHA-1 signatures if enabled.
    description String
    Any additional comments you can add to the CA set.
    name String
    The name of the CA set.
    timeouts Property Map
    versionDescription String
    Additional description for the CA set version.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MtlstruststoreCaSet resource produces the following output properties:

    AccountId string
    Identifies the account the CA set belongs to.
    CreatedBy string
    The user who created the CA set.
    CreatedDate string
    When the CA set was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LatestVersion int
    Version number for newly created or cloned version in a CA set.
    ProductionVersion int
    Version of the CA set that is active on production.
    StagingVersion int
    Version number of the CA set that is active on staging.
    VersionCreatedBy string
    The user who created the CA set version.
    VersionCreatedDate string
    When the CA set version was created.
    VersionModifiedBy string
    The user who modified the CA set version.
    VersionModifiedDate string
    When the CA set version was modified.
    AccountId string
    Identifies the account the CA set belongs to.
    CreatedBy string
    The user who created the CA set.
    CreatedDate string
    When the CA set was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LatestVersion int
    Version number for newly created or cloned version in a CA set.
    ProductionVersion int
    Version of the CA set that is active on production.
    StagingVersion int
    Version number of the CA set that is active on staging.
    VersionCreatedBy string
    The user who created the CA set version.
    VersionCreatedDate string
    When the CA set version was created.
    VersionModifiedBy string
    The user who modified the CA set version.
    VersionModifiedDate string
    When the CA set version was modified.
    accountId String
    Identifies the account the CA set belongs to.
    createdBy String
    The user who created the CA set.
    createdDate String
    When the CA set was created.
    id String
    The provider-assigned unique ID for this managed resource.
    latestVersion Integer
    Version number for newly created or cloned version in a CA set.
    productionVersion Integer
    Version of the CA set that is active on production.
    stagingVersion Integer
    Version number of the CA set that is active on staging.
    versionCreatedBy String
    The user who created the CA set version.
    versionCreatedDate String
    When the CA set version was created.
    versionModifiedBy String
    The user who modified the CA set version.
    versionModifiedDate String
    When the CA set version was modified.
    accountId string
    Identifies the account the CA set belongs to.
    createdBy string
    The user who created the CA set.
    createdDate string
    When the CA set was created.
    id string
    The provider-assigned unique ID for this managed resource.
    latestVersion number
    Version number for newly created or cloned version in a CA set.
    productionVersion number
    Version of the CA set that is active on production.
    stagingVersion number
    Version number of the CA set that is active on staging.
    versionCreatedBy string
    The user who created the CA set version.
    versionCreatedDate string
    When the CA set version was created.
    versionModifiedBy string
    The user who modified the CA set version.
    versionModifiedDate string
    When the CA set version was modified.
    account_id str
    Identifies the account the CA set belongs to.
    created_by str
    The user who created the CA set.
    created_date str
    When the CA set was created.
    id str
    The provider-assigned unique ID for this managed resource.
    latest_version int
    Version number for newly created or cloned version in a CA set.
    production_version int
    Version of the CA set that is active on production.
    staging_version int
    Version number of the CA set that is active on staging.
    version_created_by str
    The user who created the CA set version.
    version_created_date str
    When the CA set version was created.
    version_modified_by str
    The user who modified the CA set version.
    version_modified_date str
    When the CA set version was modified.
    accountId String
    Identifies the account the CA set belongs to.
    createdBy String
    The user who created the CA set.
    createdDate String
    When the CA set was created.
    id String
    The provider-assigned unique ID for this managed resource.
    latestVersion Number
    Version number for newly created or cloned version in a CA set.
    productionVersion Number
    Version of the CA set that is active on production.
    stagingVersion Number
    Version number of the CA set that is active on staging.
    versionCreatedBy String
    The user who created the CA set version.
    versionCreatedDate String
    When the CA set version was created.
    versionModifiedBy String
    The user who modified the CA set version.
    versionModifiedDate String
    When the CA set version was modified.

    Look up Existing MtlstruststoreCaSet Resource

    Get an existing MtlstruststoreCaSet 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?: MtlstruststoreCaSetState, opts?: CustomResourceOptions): MtlstruststoreCaSet
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            allow_insecure_sha1: Optional[bool] = None,
            certificates: Optional[Sequence[MtlstruststoreCaSetCertificateArgs]] = None,
            created_by: Optional[str] = None,
            created_date: Optional[str] = None,
            description: Optional[str] = None,
            latest_version: Optional[int] = None,
            name: Optional[str] = None,
            production_version: Optional[int] = None,
            staging_version: Optional[int] = None,
            timeouts: Optional[MtlstruststoreCaSetTimeoutsArgs] = None,
            version_created_by: Optional[str] = None,
            version_created_date: Optional[str] = None,
            version_description: Optional[str] = None,
            version_modified_by: Optional[str] = None,
            version_modified_date: Optional[str] = None) -> MtlstruststoreCaSet
    func GetMtlstruststoreCaSet(ctx *Context, name string, id IDInput, state *MtlstruststoreCaSetState, opts ...ResourceOption) (*MtlstruststoreCaSet, error)
    public static MtlstruststoreCaSet Get(string name, Input<string> id, MtlstruststoreCaSetState? state, CustomResourceOptions? opts = null)
    public static MtlstruststoreCaSet get(String name, Output<String> id, MtlstruststoreCaSetState state, CustomResourceOptions options)
    resources:  _:    type: akamai:MtlstruststoreCaSet    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    AccountId string
    Identifies the account the CA set belongs to.
    AllowInsecureSha1 bool
    Allows certificates with SHA-1 signatures if enabled.
    Certificates List<MtlstruststoreCaSetCertificate>
    The certificates that are valid, non-expired, root, or intermediate.
    CreatedBy string
    The user who created the CA set.
    CreatedDate string
    When the CA set was created.
    Description string
    Any additional comments you can add to the CA set.
    LatestVersion int
    Version number for newly created or cloned version in a CA set.
    Name string
    The name of the CA set.
    ProductionVersion int
    Version of the CA set that is active on production.
    StagingVersion int
    Version number of the CA set that is active on staging.
    Timeouts MtlstruststoreCaSetTimeouts
    VersionCreatedBy string
    The user who created the CA set version.
    VersionCreatedDate string
    When the CA set version was created.
    VersionDescription string
    Additional description for the CA set version.
    VersionModifiedBy string
    The user who modified the CA set version.
    VersionModifiedDate string
    When the CA set version was modified.
    AccountId string
    Identifies the account the CA set belongs to.
    AllowInsecureSha1 bool
    Allows certificates with SHA-1 signatures if enabled.
    Certificates []MtlstruststoreCaSetCertificateArgs
    The certificates that are valid, non-expired, root, or intermediate.
    CreatedBy string
    The user who created the CA set.
    CreatedDate string
    When the CA set was created.
    Description string
    Any additional comments you can add to the CA set.
    LatestVersion int
    Version number for newly created or cloned version in a CA set.
    Name string
    The name of the CA set.
    ProductionVersion int
    Version of the CA set that is active on production.
    StagingVersion int
    Version number of the CA set that is active on staging.
    Timeouts MtlstruststoreCaSetTimeoutsArgs
    VersionCreatedBy string
    The user who created the CA set version.
    VersionCreatedDate string
    When the CA set version was created.
    VersionDescription string
    Additional description for the CA set version.
    VersionModifiedBy string
    The user who modified the CA set version.
    VersionModifiedDate string
    When the CA set version was modified.
    accountId String
    Identifies the account the CA set belongs to.
    allowInsecureSha1 Boolean
    Allows certificates with SHA-1 signatures if enabled.
    certificates List<MtlstruststoreCaSetCertificate>
    The certificates that are valid, non-expired, root, or intermediate.
    createdBy String
    The user who created the CA set.
    createdDate String
    When the CA set was created.
    description String
    Any additional comments you can add to the CA set.
    latestVersion Integer
    Version number for newly created or cloned version in a CA set.
    name String
    The name of the CA set.
    productionVersion Integer
    Version of the CA set that is active on production.
    stagingVersion Integer
    Version number of the CA set that is active on staging.
    timeouts MtlstruststoreCaSetTimeouts
    versionCreatedBy String
    The user who created the CA set version.
    versionCreatedDate String
    When the CA set version was created.
    versionDescription String
    Additional description for the CA set version.
    versionModifiedBy String
    The user who modified the CA set version.
    versionModifiedDate String
    When the CA set version was modified.
    accountId string
    Identifies the account the CA set belongs to.
    allowInsecureSha1 boolean
    Allows certificates with SHA-1 signatures if enabled.
    certificates MtlstruststoreCaSetCertificate[]
    The certificates that are valid, non-expired, root, or intermediate.
    createdBy string
    The user who created the CA set.
    createdDate string
    When the CA set was created.
    description string
    Any additional comments you can add to the CA set.
    latestVersion number
    Version number for newly created or cloned version in a CA set.
    name string
    The name of the CA set.
    productionVersion number
    Version of the CA set that is active on production.
    stagingVersion number
    Version number of the CA set that is active on staging.
    timeouts MtlstruststoreCaSetTimeouts
    versionCreatedBy string
    The user who created the CA set version.
    versionCreatedDate string
    When the CA set version was created.
    versionDescription string
    Additional description for the CA set version.
    versionModifiedBy string
    The user who modified the CA set version.
    versionModifiedDate string
    When the CA set version was modified.
    account_id str
    Identifies the account the CA set belongs to.
    allow_insecure_sha1 bool
    Allows certificates with SHA-1 signatures if enabled.
    certificates Sequence[MtlstruststoreCaSetCertificateArgs]
    The certificates that are valid, non-expired, root, or intermediate.
    created_by str
    The user who created the CA set.
    created_date str
    When the CA set was created.
    description str
    Any additional comments you can add to the CA set.
    latest_version int
    Version number for newly created or cloned version in a CA set.
    name str
    The name of the CA set.
    production_version int
    Version of the CA set that is active on production.
    staging_version int
    Version number of the CA set that is active on staging.
    timeouts MtlstruststoreCaSetTimeoutsArgs
    version_created_by str
    The user who created the CA set version.
    version_created_date str
    When the CA set version was created.
    version_description str
    Additional description for the CA set version.
    version_modified_by str
    The user who modified the CA set version.
    version_modified_date str
    When the CA set version was modified.
    accountId String
    Identifies the account the CA set belongs to.
    allowInsecureSha1 Boolean
    Allows certificates with SHA-1 signatures if enabled.
    certificates List<Property Map>
    The certificates that are valid, non-expired, root, or intermediate.
    createdBy String
    The user who created the CA set.
    createdDate String
    When the CA set was created.
    description String
    Any additional comments you can add to the CA set.
    latestVersion Number
    Version number for newly created or cloned version in a CA set.
    name String
    The name of the CA set.
    productionVersion Number
    Version of the CA set that is active on production.
    stagingVersion Number
    Version number of the CA set that is active on staging.
    timeouts Property Map
    versionCreatedBy String
    The user who created the CA set version.
    versionCreatedDate String
    When the CA set version was created.
    versionDescription String
    Additional description for the CA set version.
    versionModifiedBy String
    The user who modified the CA set version.
    versionModifiedDate String
    When the CA set version was modified.

    Supporting Types

    MtlstruststoreCaSetCertificate, MtlstruststoreCaSetCertificateArgs

    CertificatePem string
    The certificate in PEM format, as found in a Base64 ASCII encoded file.
    CreatedBy string
    The user who created this CA certificate.
    CreatedDate string
    When the CA certificate was created.
    Description string
    Optional description for the certificate.
    EndDate string
    The certificate's ISO 8601 formatted expiration date.
    Fingerprint string
    The fingerprint of the certificate.
    Issuer string
    The certificate's issuer.
    SerialNumber string
    The unique serial number of the certificate.
    SignatureAlgorithm string
    The signature algorithm of the CA certificate.
    StartDate string
    The start date of the certificate.
    Subject string
    The certificate's subject field.
    CertificatePem string
    The certificate in PEM format, as found in a Base64 ASCII encoded file.
    CreatedBy string
    The user who created this CA certificate.
    CreatedDate string
    When the CA certificate was created.
    Description string
    Optional description for the certificate.
    EndDate string
    The certificate's ISO 8601 formatted expiration date.
    Fingerprint string
    The fingerprint of the certificate.
    Issuer string
    The certificate's issuer.
    SerialNumber string
    The unique serial number of the certificate.
    SignatureAlgorithm string
    The signature algorithm of the CA certificate.
    StartDate string
    The start date of the certificate.
    Subject string
    The certificate's subject field.
    certificatePem String
    The certificate in PEM format, as found in a Base64 ASCII encoded file.
    createdBy String
    The user who created this CA certificate.
    createdDate String
    When the CA certificate was created.
    description String
    Optional description for the certificate.
    endDate String
    The certificate's ISO 8601 formatted expiration date.
    fingerprint String
    The fingerprint of the certificate.
    issuer String
    The certificate's issuer.
    serialNumber String
    The unique serial number of the certificate.
    signatureAlgorithm String
    The signature algorithm of the CA certificate.
    startDate String
    The start date of the certificate.
    subject String
    The certificate's subject field.
    certificatePem string
    The certificate in PEM format, as found in a Base64 ASCII encoded file.
    createdBy string
    The user who created this CA certificate.
    createdDate string
    When the CA certificate was created.
    description string
    Optional description for the certificate.
    endDate string
    The certificate's ISO 8601 formatted expiration date.
    fingerprint string
    The fingerprint of the certificate.
    issuer string
    The certificate's issuer.
    serialNumber string
    The unique serial number of the certificate.
    signatureAlgorithm string
    The signature algorithm of the CA certificate.
    startDate string
    The start date of the certificate.
    subject string
    The certificate's subject field.
    certificate_pem str
    The certificate in PEM format, as found in a Base64 ASCII encoded file.
    created_by str
    The user who created this CA certificate.
    created_date str
    When the CA certificate was created.
    description str
    Optional description for the certificate.
    end_date str
    The certificate's ISO 8601 formatted expiration date.
    fingerprint str
    The fingerprint of the certificate.
    issuer str
    The certificate's issuer.
    serial_number str
    The unique serial number of the certificate.
    signature_algorithm str
    The signature algorithm of the CA certificate.
    start_date str
    The start date of the certificate.
    subject str
    The certificate's subject field.
    certificatePem String
    The certificate in PEM format, as found in a Base64 ASCII encoded file.
    createdBy String
    The user who created this CA certificate.
    createdDate String
    When the CA certificate was created.
    description String
    Optional description for the certificate.
    endDate String
    The certificate's ISO 8601 formatted expiration date.
    fingerprint String
    The fingerprint of the certificate.
    issuer String
    The certificate's issuer.
    serialNumber String
    The unique serial number of the certificate.
    signatureAlgorithm String
    The signature algorithm of the CA certificate.
    startDate String
    The start date of the certificate.
    subject String
    The certificate's subject field.

    MtlstruststoreCaSetTimeouts, MtlstruststoreCaSetTimeoutsArgs

    Delete string
    Optional configurable resource delete timeout. By default it's 1h.
    Delete string
    Optional configurable resource delete timeout. By default it's 1h.
    delete String
    Optional configurable resource delete timeout. By default it's 1h.
    delete string
    Optional configurable resource delete timeout. By default it's 1h.
    delete str
    Optional configurable resource delete timeout. By default it's 1h.
    delete String
    Optional configurable resource delete timeout. By default it's 1h.

    Package Details

    Repository
    Akamai pulumi/pulumi-akamai
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the akamai Terraform Provider.
    akamai logo
    Akamai v10.1.0 published on Thursday, Nov 6, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate