Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
CertificateAuthorityServiceClient,
)
from google.cloud.security.privateca_v1.types.resources import (
AttributeType,
AttributeTypeAndValue,
CaPool,
Certificate,
CertificateAuthority,
Expand All @@ -37,6 +39,7 @@
KeyUsage,
ObjectId,
PublicKey,
RelativeDistinguishedName,
RevocationReason,
Subject,
SubjectAltNames,
Expand Down Expand Up @@ -88,6 +91,7 @@
__all__ = (
"CertificateAuthorityServiceClient",
"CertificateAuthorityServiceAsyncClient",
"AttributeTypeAndValue",
"CaPool",
"Certificate",
"CertificateAuthority",
Expand All @@ -100,11 +104,13 @@
"KeyUsage",
"ObjectId",
"PublicKey",
"RelativeDistinguishedName",
"Subject",
"SubjectAltNames",
"SubordinateConfig",
"X509Extension",
"X509Parameters",
"AttributeType",
"RevocationReason",
"SubjectRequestMode",
"ActivateCertificateAuthorityRequest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "1.14.3" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
CertificateAuthorityServiceClient,
)
from .types.resources import (
AttributeType,
AttributeTypeAndValue,
CaPool,
Certificate,
CertificateAuthority,
Expand All @@ -35,6 +37,7 @@
KeyUsage,
ObjectId,
PublicKey,
RelativeDistinguishedName,
RevocationReason,
Subject,
SubjectAltNames,
Expand Down Expand Up @@ -86,6 +89,8 @@
__all__ = (
"CertificateAuthorityServiceAsyncClient",
"ActivateCertificateAuthorityRequest",
"AttributeType",
"AttributeTypeAndValue",
"CaPool",
"Certificate",
"CertificateAuthority",
Expand Down Expand Up @@ -128,6 +133,7 @@
"ObjectId",
"OperationMetadata",
"PublicKey",
"RelativeDistinguishedName",
"RevocationReason",
"RevokeCertificateRequest",
"Subject",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "1.14.3" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,9 @@ async def sample_create_certificate():
the regular expression ``[a-zA-Z0-9_-]{1,63}``. This
field is required when using a
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
in the Enterprise [CertificateAuthority.Tier][], but is
optional and its value is ignored otherwise.
in the Enterprise
[CertificateAuthority.tier][google.cloud.security.privateca.v1.CertificateAuthority.tier],
but is optional and its value is ignored otherwise.

This corresponds to the ``certificate_id`` field
on the ``request`` instance; if ``request`` is provided, this
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -910,8 +910,9 @@ def sample_create_certificate():
the regular expression ``[a-zA-Z0-9_-]{1,63}``. This
field is required when using a
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority]
in the Enterprise [CertificateAuthority.Tier][], but is
optional and its value is ignored otherwise.
in the Enterprise
[CertificateAuthority.tier][google.cloud.security.privateca.v1.CertificateAuthority.tier],
but is optional and its value is ignored otherwise.

This corresponds to the ``certificate_id`` field
on the ``request`` instance; if ``request`` is provided, this
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
# limitations under the License.
#
from .resources import (
AttributeType,
AttributeTypeAndValue,
CaPool,
Certificate,
CertificateAuthority,
Expand All @@ -26,6 +28,7 @@
KeyUsage,
ObjectId,
PublicKey,
RelativeDistinguishedName,
RevocationReason,
Subject,
SubjectAltNames,
Expand Down Expand Up @@ -75,6 +78,7 @@
)

__all__ = (
"AttributeTypeAndValue",
"CaPool",
"Certificate",
"CertificateAuthority",
Expand All @@ -87,11 +91,13 @@
"KeyUsage",
"ObjectId",
"PublicKey",
"RelativeDistinguishedName",
"Subject",
"SubjectAltNames",
"SubordinateConfig",
"X509Extension",
"X509Parameters",
"AttributeType",
"RevocationReason",
"SubjectRequestMode",
"ActivateCertificateAuthorityRequest",
Expand Down
Loading
Loading