Skip to main content

Gcp/privateca

@swamp/gcp/privatecav2026.07.29.1· 2d agoMODELS
01README

Google Cloud privateca infrastructure models

02Release Notes
  • Updated: locations, capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates
03Models6
@swamp/gcp/privateca/capoolsv2026.07.29.1capools.ts

Global Arguments

ArgumentTypeDescription
accessToken?stringGCP OAuth2 access token; overrides GCP_ACCESS_TOKEN environment variable. Wire with a vault.get(...) expression to source it from a vault.
credentialsJson?stringGCP service account JSON credentials; overrides GOOGLE_APPLICATION_CREDENTIALS_JSON environment variable. Wire with a vault.get(...) expression to source it from a vault.
project?stringGCP project ID; overrides GCP_PROJECT / GOOGLE_CLOUD_PROJECT environment variables.
scopes?stringComma-separated OAuth scopes to request when minting access tokens via gcloud. Defaults to the API's Discovery Document scopes.
quotaProject?stringGCP project ID for quota and billing attribution; sets the x-goog-user-project header. Overrides GOOGLE_CLOUD_QUOTA_PROJECT environment variable. Required for APIs like Cloud Identity when using user credentials.
encryptionSpec?objectOptional. When EncryptionSpec is provided, the Subject, SubjectAltNames, and the PEM-encoded certificate fields will be encrypted at rest.
issuancePolicy?objectOptional. The IssuancePolicy to control how Certificates will be issued from this CaPool.
labels?recordOptional. Labels with user-defined metadata.
name?stringIdentifier. The resource name for this CaPool in the format `projects/*/locations/*/caPools/*`.
publishingOptions?objectOptional. The PublishingOptions to follow when issuing Certificates from any CertificateAuthority in this CaPool.
tier?enumRequired. Immutable. The Tier of this CaPool.
caPoolId?stringRequired. It must be unique within a location and match the regular expression `[a-zA-Z0-9_-]{1,63}`
requestId?stringOptional. An ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and
location?stringThe location for this resource (e.g., 'us', 'us-central1', 'europe-west1')
fn create()
Create a caPools
fn get(identifier: string)
Get a caPools
ArgumentTypeDescription
identifierstringThe name of the caPools
fn update(identifier?: string)
Update caPools attributes
ArgumentTypeDescription
identifier?stringTarget a specific caPools by name (e.g. one discovered by list)
fn delete(identifier: string)
Delete the caPools
ArgumentTypeDescription
identifierstringThe name of the caPools
fn sync(identifier?: string)
Sync caPools state from GCP
ArgumentTypeDescription
identifier?stringTarget a specific caPools by name (e.g. one discovered by list)
fn list(filter?: string, orderBy?: string, pageSize?: number, maxPages?: number)
List caPools resources
ArgumentTypeDescription
filter?stringOptional. Only include resources that match the filter in the response.
orderBy?stringOptional. Specify how the results should be sorted.
pageSize?numberOptional. Limit on the number of CaPools to include in the response. Further CaPools can subsequently be obtained by including the ListCaPoolsResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.
maxPages?numberMaximum number of pages to fetch (default: 10)
fn fetch_ca_certs(requestId?: any)
fetch ca certs
ArgumentTypeDescription
requestId?any
fn get_iam_policy()
get iam policy
fn set_iam_policy(policy?: any, updateMask?: any)
set iam policy
ArgumentTypeDescription
policy?any
updateMask?any
fn test_iam_permissions(permissions?: any)
test iam permissions
ArgumentTypeDescription
permissions?any

Resources

state(infinite)— A CaPool represents a group of CertificateAuthorities that form a trust ancho...
@swamp/gcp/privateca/capools-certificateauthoritiesv2026.07.29.1capools_certificateauthorities.ts

Global Arguments

ArgumentTypeDescription
accessToken?stringGCP OAuth2 access token; overrides GCP_ACCESS_TOKEN environment variable. Wire with a vault.get(...) expression to source it from a vault.
credentialsJson?stringGCP service account JSON credentials; overrides GOOGLE_APPLICATION_CREDENTIALS_JSON environment variable. Wire with a vault.get(...) expression to source it from a vault.
project?stringGCP project ID; overrides GCP_PROJECT / GOOGLE_CLOUD_PROJECT environment variables.
scopes?stringComma-separated OAuth scopes to request when minting access tokens via gcloud. Defaults to the API's Discovery Document scopes.
quotaProject?stringGCP project ID for quota and billing attribution; sets the x-goog-user-project header. Overrides GOOGLE_CLOUD_QUOTA_PROJECT environment variable. Required for APIs like Cloud Identity when using user credentials.
config?objectRequired. Immutable. The config used to create a self-signed X.509 certificate or CSR.
gcsBucket?stringImmutable. The name of a Cloud Storage bucket where this CertificateAuthority will publish content, such as the CA certificate and CRLs. This must be a bucket name, without any prefixes (such as `gs://`) or suffixes (such as `.googleapis.com`). For example, to use a bucket named `my-bucket`, you would simply specify `my-bucket`. If not specified, a managed bucket will be created.
keySpec?objectRequired. Immutable. Used when issuing certificates for this CertificateAuthority. If this CertificateAuthority is a self-signed CertificateAuthority, this key is also used to sign the self-signed CA certificate. Otherwise, it is used to sign a CSR.
labels?recordOptional. Labels with user-defined metadata.
lifetime?stringRequired. Immutable. The desired lifetime of the CA certificate. Used to create the "not_before_time" and "not_after_time" fields inside an X.509 certificate.
name?stringIdentifier. The resource name for this CertificateAuthority in the format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.
subordinateConfig?objectOptional. If this is a subordinate CertificateAuthority, this field will be set with the subordinate configuration, which describes its issuers. This may be updated, but this CertificateAuthority must continue to validate.
type?enumRequired. Immutable. The Type of this CertificateAuthority.
userDefinedAccessUrls?objectOptional. User-defined URLs for CA certificate and CRLs. The service does not publish content to these URLs. It is up to the user to mirror content to these URLs.
certificateAuthorityId?stringRequired. It must be unique within a location and match the regular expression `[a-zA-Z0-9_-]{1,63}`
requestId?stringOptional. An ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and
parent?stringThe parent resource name (e.g., projects/my-project/locations/us-central1, organizations/123, folders/456)
location?stringThe location for this resource (e.g., 'us', 'us-central1', 'europe-west1')
fn create(waitForReady?: boolean)
Create a certificateAuthorities
ArgumentTypeDescription
waitForReady?booleanWait for the resource to reach a ready state after creation (default: true)
fn get(identifier: string)
Get a certificateAuthorities
ArgumentTypeDescription
identifierstringThe name of the certificateAuthorities
fn update(identifier?: string, waitForReady?: boolean)
Update certificateAuthorities attributes
ArgumentTypeDescription
identifier?stringTarget a specific certificateAuthorities by name (e.g. one discovered by list)
waitForReady?booleanWait for the resource to reach a ready state after update (default: true)
fn delete(identifier: string)
Delete the certificateAuthorities
ArgumentTypeDescription
identifierstringThe name of the certificateAuthorities
fn sync(identifier?: string)
Sync certificateAuthorities state from GCP
ArgumentTypeDescription
identifier?stringTarget a specific certificateAuthorities by name (e.g. one discovered by list)
fn list(filter?: string, orderBy?: string, pageSize?: number, maxPages?: number)
List certificateAuthorities resources
ArgumentTypeDescription
filter?stringOptional. Only include resources that match the filter in the response.
orderBy?stringOptional. Specify how the results should be sorted.
pageSize?numberOptional. Limit on the number of CertificateAuthorities to include in the response. Further CertificateAuthorities can subsequently be obtained by including the ListCertificateAuthoritiesResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.
maxPages?numberMaximum number of pages to fetch (default: 10)
fn activate(pemCaCertificate?: any, requestId?: any, subordinateConfig?: any)
activate
ArgumentTypeDescription
pemCaCertificate?any
requestId?any
subordinateConfig?any
fn disable(ignoreDependentResources?: any, requestId?: any)
disable
ArgumentTypeDescription
ignoreDependentResources?any
requestId?any
fn enable(requestId?: any)
enable
ArgumentTypeDescription
requestId?any
fn fetch()
fetch
fn undelete(requestId?: any)
undelete
ArgumentTypeDescription
requestId?any

Resources

state(infinite)— A CertificateAuthority represents an individual Certificate Authority. A Cert...
@swamp/gcp/privateca/capools-certificateauthorities-certificaterevocationlistsv2026.07.29.1capools_certificateauthorities_certificaterevocationlists.ts

Global Arguments

ArgumentTypeDescription
accessToken?stringGCP OAuth2 access token; overrides GCP_ACCESS_TOKEN environment variable. Wire with a vault.get(...) expression to source it from a vault.
credentialsJson?stringGCP service account JSON credentials; overrides GOOGLE_APPLICATION_CREDENTIALS_JSON environment variable. Wire with a vault.get(...) expression to source it from a vault.
project?stringGCP project ID; overrides GCP_PROJECT / GOOGLE_CLOUD_PROJECT environment variables.
scopes?stringComma-separated OAuth scopes to request when minting access tokens via gcloud. Defaults to the API's Discovery Document scopes.
quotaProject?stringGCP project ID for quota and billing attribution; sets the x-goog-user-project header. Overrides GOOGLE_CLOUD_QUOTA_PROJECT environment variable. Required for APIs like Cloud Identity when using user credentials.
accessUrl?stringOutput only. The location where 'pem_crl' can be accessed.
createTime?stringOutput only. The time at which this CertificateRevocationList was created.
labels?recordOptional. Labels with user-defined metadata.
name?stringIdentifier. The resource name for this CertificateRevocationList in the format `projects/*/locations/*/caPools/*certificateAuthorities/*/ certificateRevocationLists/*`.
pemCrl?stringOutput only. The PEM-encoded X.509 CRL.
revisionId?stringOutput only. The revision ID of this CertificateRevocationList. A new revision is committed whenever a new CRL is published. The format is an 8-character hexadecimal string.
revokedCertificates?arrayOutput only. The revoked serial numbers that appear in pem_crl.
sequenceNumber?stringOutput only. The CRL sequence number that appears in pem_crl.
state?enumOutput only. The State for this CertificateRevocationList.
updateTime?stringOutput only. The time at which this CertificateRevocationList was updated.
parent?stringThe parent resource name (e.g., projects/my-project/locations/us-central1, organizations/123, folders/456)
location?stringThe location for this resource (e.g., 'us', 'us-central1', 'europe-west1')
fn get(identifier: string)
Get a certificateRevocationLists
ArgumentTypeDescription
identifierstringThe name of the certificateRevocationLists
fn update(identifier?: string, waitForReady?: boolean)
Update certificateRevocationLists attributes
ArgumentTypeDescription
identifier?stringTarget a specific certificateRevocationLists by name (e.g. one discovered by list)
waitForReady?booleanWait for the resource to reach a ready state after update (default: true)
fn sync(identifier?: string)
Sync certificateRevocationLists state from GCP
ArgumentTypeDescription
identifier?stringTarget a specific certificateRevocationLists by name (e.g. one discovered by list)
fn list(filter?: string, orderBy?: string, pageSize?: number, maxPages?: number)
List certificateRevocationLists resources
ArgumentTypeDescription
filter?stringOptional. Only include resources that match the filter in the response.
orderBy?stringOptional. Specify how the results should be sorted.
pageSize?numberOptional. Limit on the number of CertificateRevocationLists to include in the response. Further CertificateRevocationLists can subsequently be obtained by including the ListCertificateRevocationListsResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.
maxPages?numberMaximum number of pages to fetch (default: 10)
fn get_iam_policy()
get iam policy
fn set_iam_policy(policy?: any, updateMask?: any)
set iam policy
ArgumentTypeDescription
policy?any
updateMask?any
fn test_iam_permissions(permissions?: any)
test iam permissions
ArgumentTypeDescription
permissions?any

Resources

state(infinite)— A CertificateRevocationList corresponds to a signed X.509 certificate Revocat...
@swamp/gcp/privateca/capools-certificatesv2026.07.29.1capools_certificates.ts

Global Arguments

ArgumentTypeDescription
accessToken?stringGCP OAuth2 access token; overrides GCP_ACCESS_TOKEN environment variable. Wire with a vault.get(...) expression to source it from a vault.
credentialsJson?stringGCP service account JSON credentials; overrides GOOGLE_APPLICATION_CREDENTIALS_JSON environment variable. Wire with a vault.get(...) expression to source it from a vault.
project?stringGCP project ID; overrides GCP_PROJECT / GOOGLE_CLOUD_PROJECT environment variables.
scopes?stringComma-separated OAuth scopes to request when minting access tokens via gcloud. Defaults to the API's Discovery Document scopes.
quotaProject?stringGCP project ID for quota and billing attribution; sets the x-goog-user-project header. Overrides GOOGLE_CLOUD_QUOTA_PROJECT environment variable. Required for APIs like Cloud Identity when using user credentials.
certificateTemplate?stringImmutable. The resource name for a CertificateTemplate used to issue this certificate, in the format `projects/*/locations/*/certificateTemplates/*`. If this is specified, the caller must have the necessary permission to use this template. If this is omitted, no template will be used. This template must be in the same location as the Certificate.
config?objectImmutable. A description of the certificate and key that does not require X.509 or ASN.1.
labels?recordOptional. Labels with user-defined metadata.
lifetime?stringRequired. Immutable. The desired lifetime of a certificate. Used to create the "not_before_time" and "not_after_time" fields inside an X.509 certificate. Note that the lifetime may be truncated if it would extend past the life of any certificate authority in the issuing chain.
name?stringIdentifier. The resource name for this Certificate in the format `projects/*/locations/*/caPools/*/certificates/*`.
pemCsr?stringImmutable. A pem-encoded X.509 certificate signing request (CSR).
requestedNotBeforeTime?stringOptional. The requested not_before_time of this Certificate. This field may only be set if the CaPool.IssuancePolicy.allow_requester_specified_not_before_time field is set to true for the issuing CaPool. If this field is specified, the certificate will be issued with this 'not_before_time'. If this is not specified, the 'not_before_time' will be set to the issuance time or issuance time minus backdate_duration depending on the CaPool configuration.
subjectMode?enumImmutable. Specifies how the Certificate's identity fields are to be decided. If this is omitted, the `DEFAULT` subject mode will be used.
certificateId?stringOptional. It must be unique within a location and match the regular expression `[a-zA-Z0-9_-]{1,63}`. This field is required when using a CertificateAuthority in the Enterprise CertificateAuthority.tier, but is optional and its value is ignored otherwise.
issuingCertificateAuthorityId?stringOptional. The resource ID of the CertificateAuthority that should issue the certificate. This optional field will ignore the load-balancing scheme of the Pool and directly issue the certificate from the CA with the specified ID, contained in the same CaPool referenced by `parent`. Per-CA quota rules apply. If left empty, a CertificateAuthority will be chosen from the CaPool by the service. For example, to issue a Certificate from a Certificate Authority with resource name "projects/my-project/lo
requestId?stringOptional. An ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and
parent?stringThe parent resource name (e.g., projects/my-project/locations/us-central1, organizations/123, folders/456)
location?stringThe location for this resource (e.g., 'us', 'us-central1', 'europe-west1')
fn create()
Create a certificates
fn get(identifier: string)
Get a certificates
ArgumentTypeDescription
identifierstringThe name of the certificates
fn update(identifier?: string)
Update certificates attributes
ArgumentTypeDescription
identifier?stringTarget a specific certificates by name (e.g. one discovered by list)
fn sync(identifier?: string)
Sync certificates state from GCP
ArgumentTypeDescription
identifier?stringTarget a specific certificates by name (e.g. one discovered by list)
fn list(filter?: string, orderBy?: string, pageSize?: number, maxPages?: number)
List certificates resources
ArgumentTypeDescription
filter?stringOptional. Only include resources that match the filter in the response. For details on supported filters and syntax, see [Certificates Filtering documentation](https://cloud.google.com/certificate-authority-service/docs/sorting-filtering-certificates#filtering_support).
orderBy?stringOptional. Specify how the results should be sorted. For details on supported fields and syntax, see [Certificates Sorting documentation](https://cloud.google.com/certificate-authority-service/docs/sorting-filtering-certificates#sorting_support).
pageSize?numberOptional. Limit on the number of Certificates to include in the response. Further Certificates can subsequently be obtained by including the ListCertificatesResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.
maxPages?numberMaximum number of pages to fetch (default: 10)
fn revoke(reason?: any, requestId?: any)
revoke
ArgumentTypeDescription
reason?any
requestId?any

Resources

state(infinite)— A Certificate corresponds to a signed X.509 certificate issued by a Certifica...
@swamp/gcp/privateca/certificatetemplatesv2026.07.29.1certificatetemplates.ts

Global Arguments

ArgumentTypeDescription
accessToken?stringGCP OAuth2 access token; overrides GCP_ACCESS_TOKEN environment variable. Wire with a vault.get(...) expression to source it from a vault.
credentialsJson?stringGCP service account JSON credentials; overrides GOOGLE_APPLICATION_CREDENTIALS_JSON environment variable. Wire with a vault.get(...) expression to source it from a vault.
project?stringGCP project ID; overrides GCP_PROJECT / GOOGLE_CLOUD_PROJECT environment variables.
scopes?stringComma-separated OAuth scopes to request when minting access tokens via gcloud. Defaults to the API's Discovery Document scopes.
quotaProject?stringGCP project ID for quota and billing attribution; sets the x-goog-user-project header. Overrides GOOGLE_CLOUD_QUOTA_PROJECT environment variable. Required for APIs like Cloud Identity when using user credentials.
description?stringOptional. A human-readable description of scenarios this template is intended for.
identityConstraints?objectOptional. Describes constraints on identities that may be appear in Certificates issued using this template. If this is omitted, then this template will not add restrictions on a certificate's identity.
labels?recordOptional. Labels with user-defined metadata.
maximumLifetime?stringOptional. The maximum lifetime allowed for issued Certificates that use this template. If the issuing CaPool resource's IssuancePolicy specifies a maximum_lifetime the minimum of the two durations will be the maximum lifetime for issued Certificates. Note that if the issuing CertificateAuthority expires before a Certificate's requested maximum_lifetime, the effective lifetime will be explicitly truncated to match it.
name?stringIdentifier. The resource name for this CertificateTemplate in the format `projects/*/locations/*/certificateTemplates/*`.
passthroughExtensions?objectOptional. Describes the set of X.509 extensions that may appear in a Certificate issued using this CertificateTemplate. If a certificate request sets extensions that don't appear in the passthrough_extensions, those extensions will be dropped. If the issuing CaPool's IssuancePolicy defines baseline_values that don't appear here, the certificate issuance request will fail. If this is omitted, then this template will not add restrictions on a certificate's X.509 extensions. These constraints do no
predefinedValues?objectOptional. A set of X.509 values that will be applied to all issued certificates that use this template. If the certificate request includes conflicting values for the same properties, they will be overwritten by the values defined here. If the issuing CaPool's IssuancePolicy defines conflicting baseline_values for the same properties, the certificate issuance request will fail.
certificateTemplateId?stringRequired. It must be unique within a location and match the regular expression `[a-zA-Z0-9_-]{1,63}`
requestId?stringOptional. An ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and
location?stringThe location for this resource (e.g., 'us', 'us-central1', 'europe-west1')
fn create()
Create a certificateTemplates
fn get(identifier: string)
Get a certificateTemplates
ArgumentTypeDescription
identifierstringThe name of the certificateTemplates
fn update(identifier?: string)
Update certificateTemplates attributes
ArgumentTypeDescription
identifier?stringTarget a specific certificateTemplates by name (e.g. one discovered by list)
fn delete(identifier: string)
Delete the certificateTemplates
ArgumentTypeDescription
identifierstringThe name of the certificateTemplates
fn sync(identifier?: string)
Sync certificateTemplates state from GCP
ArgumentTypeDescription
identifier?stringTarget a specific certificateTemplates by name (e.g. one discovered by list)
fn list(filter?: string, orderBy?: string, pageSize?: number, maxPages?: number)
List certificateTemplates resources
ArgumentTypeDescription
filter?stringOptional. Only include resources that match the filter in the response.
orderBy?stringOptional. Specify how the results should be sorted.
pageSize?numberOptional. Limit on the number of CertificateTemplates to include in the response. Further CertificateTemplates can subsequently be obtained by including the ListCertificateTemplatesResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.
maxPages?numberMaximum number of pages to fetch (default: 10)
fn get_iam_policy()
get iam policy
fn set_iam_policy(policy?: any, updateMask?: any)
set iam policy
ArgumentTypeDescription
policy?any
updateMask?any
fn test_iam_permissions(permissions?: any)
test iam permissions
ArgumentTypeDescription
permissions?any

Resources

state(infinite)— A CertificateTemplate refers to a managed template for certificate issuance.
@swamp/gcp/privateca/locationsv2026.07.29.1locations.ts

Global Arguments

ArgumentTypeDescription
accessToken?stringGCP OAuth2 access token; overrides GCP_ACCESS_TOKEN environment variable. Wire with a vault.get(...) expression to source it from a vault.
credentialsJson?stringGCP service account JSON credentials; overrides GOOGLE_APPLICATION_CREDENTIALS_JSON environment variable. Wire with a vault.get(...) expression to source it from a vault.
project?stringGCP project ID; overrides GCP_PROJECT / GOOGLE_CLOUD_PROJECT environment variables.
scopes?stringComma-separated OAuth scopes to request when minting access tokens via gcloud. Defaults to the API's Discovery Document scopes.
quotaProject?stringGCP project ID for quota and billing attribution; sets the x-goog-user-project header. Overrides GOOGLE_CLOUD_QUOTA_PROJECT environment variable. Required for APIs like Cloud Identity when using user credentials.
namestringThe resource that owns the locations collection, if applicable.
fn get(identifier: string)
Get a locations
ArgumentTypeDescription
identifierstringThe name of the locations
fn sync(identifier?: string)
Sync locations state from GCP
ArgumentTypeDescription
identifier?stringTarget a specific locations by name (e.g. one discovered by list)
fn list(extraLocationTypes?: string, filter?: string, pageSize?: number, maxPages?: number)
List locations resources
ArgumentTypeDescription
extraLocationTypes?stringOptional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage.
filter?stringA filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
pageSize?numberThe maximum number of results to return. If not set, the service selects a default.
maxPages?numberMaximum number of pages to fetch (default: 10)

Resources

state(infinite)— A resource that represents a Google Cloud location.
04Previous Versions19
2026.07.21.4
  • Updated: locations, capools, capools_certificates
2026.07.21.1
  • Updated: capools, capools_certificateauthorities, capools_certificates, certificatetemplates
2026.07.20.2
  • Updated: locations, capools, capools_certificates
2026.07.20.1
  • Updated: locations, capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates
2026.07.19.2
  • Updated: locations
2026.07.19.1
  • Updated: locations, capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates
2026.07.18.2
  • Updated: locations, capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates
2026.07.17.2
  • Updated: capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates
2026.07.17.1
  • Updated: capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates
2026.06.08.2
  • Updated: locations, capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates
2026.06.07.1
  • Updated: locations, capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates
2026.05.26.1
  • Updated: locations, capools, capools_certificates
2026.05.25.1
  • Updated: locations, capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates

Modified 6 models

2026.05.24.1
  • Updated: locations, capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates
2026.05.21.2
  • Updated: locations, capools, capools_certificateauthorities, capools_certificateauthorities_certificaterevocationlists, capools_certificates, certificatetemplates
2026.05.21.1

Modified 3 models

2026.05.20.1
  • Updated: capools, capools_certificates
2026.05.19.2
2026.05.19.1
05Stats
A
100 / 100
Downloads
0
Archive size
135.2 KB
Verified by Swamp
  • Has README or module doc2/2earned
  • README has a code example1/1earned
  • README is substantive1/1earned
  • Most symbols documented1/1earned
  • No slow types (deprecated)1/1earned
  • Dependencies pass trust audit2/2earned
  • Has description1/1earned
  • Platform support declared (or universal)2/2earned
  • License declared1/1earned
  • Verified public repository2/2earned
06Platforms
07Labels