Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [privateca] add X.509 Name Constraints support #9117

Merged
merged 2 commits into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions java-security-private-ca/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-security-private-ca</artifactId>
<version>2.11.0</version>
<version>2.12.0</version>
</dependency>
```

If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-security-private-ca:2.11.0'
implementation 'com.google.cloud:google-cloud-security-private-ca:2.12.0'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-security-private-ca" % "2.11.0"
libraryDependencies += "com.google.cloud" % "google-cloud-security-private-ca" % "2.12.0"
```

## Authentication
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ public interface ActivateCertificateAuthorityRequestOrBuilder
*
*
* <pre>
* Required. The resource name for this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
* format `projects/&#42;&#47;locations/&#42;&#47;caPools/&#42;&#47;certificateAuthorities/&#42;`.
* Required. The resource name for this
* [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
* in the format `projects/&#42;&#47;locations/&#42;&#47;caPools/&#42;&#47;certificateAuthorities/&#42;`.
* </pre>
*
* <code>
Expand All @@ -42,8 +43,9 @@ public interface ActivateCertificateAuthorityRequestOrBuilder
*
*
* <pre>
* Required. The resource name for this [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
* format `projects/&#42;&#47;locations/&#42;&#47;caPools/&#42;&#47;certificateAuthorities/&#42;`.
* Required. The resource name for this
* [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
* in the format `projects/&#42;&#47;locations/&#42;&#47;caPools/&#42;&#47;certificateAuthorities/&#42;`.
* </pre>
*
* <code>
Expand Down Expand Up @@ -85,8 +87,8 @@ public interface ActivateCertificateAuthorityRequestOrBuilder
*
*
* <pre>
* Required. Must include information about the issuer of 'pem_ca_certificate', and any
* further issuers until the self-signed CA.
* Required. Must include information about the issuer of
* 'pem_ca_certificate', and any further issuers until the self-signed CA.
* </pre>
*
* <code>
Expand All @@ -100,8 +102,8 @@ public interface ActivateCertificateAuthorityRequestOrBuilder
*
*
* <pre>
* Required. Must include information about the issuer of 'pem_ca_certificate', and any
* further issuers until the self-signed CA.
* Required. Must include information about the issuer of
* 'pem_ca_certificate', and any further issuers until the self-signed CA.
* </pre>
*
* <code>
Expand All @@ -115,8 +117,8 @@ public interface ActivateCertificateAuthorityRequestOrBuilder
*
*
* <pre>
* Required. Must include information about the issuer of 'pem_ca_certificate', and any
* further issuers until the self-signed CA.
* Required. Must include information about the issuer of
* 'pem_ca_certificate', and any further issuers until the self-signed CA.
* </pre>
*
* <code>
Expand All @@ -129,12 +131,12 @@ public interface ActivateCertificateAuthorityRequestOrBuilder
*
*
* <pre>
* Optional. 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 t
* he request times out. If you make the request again with the same request
* Optional. 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 if so, will ignore the second request. This prevents
* clients from accidentally creating duplicate commitments.
Expand All @@ -151,12 +153,12 @@ public interface ActivateCertificateAuthorityRequestOrBuilder
*
*
* <pre>
* Optional. 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 t
* he request times out. If you make the request again with the same request
* Optional. 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 if so, will ignore the second request. This prevents
* clients from accidentally creating duplicate commitments.
Expand Down
Loading