google-apis-privateca_v1 0.61.0 → 0.62.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ec725d812405fe58018d828d6ec817c9683888aadca269e1c87175c7ea81e48
4
- data.tar.gz: 2b6bce32be347e21612b24f024deb5b16ac392f40687999c22737dd6468983e4
3
+ metadata.gz: 878a59f7afca626a25001c9e6ae82d4e15e0cea0e63655d0c8df9ce9adf3ef8c
4
+ data.tar.gz: 25f924a62c5dc45f884181598947a63c35bf7f8b6eabc09151271e9cf23c777a
5
5
  SHA512:
6
- metadata.gz: 6aa39960d82db3cb9ae5cd8f9aee38390ebbc37a18424cdde20586a091866e60b16e2b4333d5038a015be3f4a9efdfd9e2d6de9d1ad6a37006ed9f23f4345295
7
- data.tar.gz: c7dab1949b155b1eb8bf224e14e752efdadaffd6677c76828a871a4b5716a6ebe4478191e5e9c89733d41ff60a14f9e49c30c63786c11d5c9665006c7d29313d
6
+ metadata.gz: 02227ea7830dd58eef2099006ea17b563b848ed0a49cbe15facbebd1a2b711f30fd31c2f5b69640f95c798f5d94aabce076192dcdfa5f5582fd421ebe68f57e0
7
+ data.tar.gz: 77a919c731cd03535b13f2f94fcf5549027d4c38ecfa67004323f0b8263bcbd7220cd368dca490d27315fedba1a0ab4f5fd57006911eef8945934e8cf2d73e74
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-privateca_v1
2
2
 
3
+ ### v0.62.0 (2026-05-17)
4
+
5
+ * Regenerated from discovery document revision 20260430
6
+
3
7
  ### v0.61.0 (2026-04-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20260318
@@ -518,6 +518,17 @@ module Google
518
518
  # @return [String]
519
519
  attr_accessor :pem_csr
520
520
 
521
+ # Optional. The requested not_before_time of this Certificate. This field may
522
+ # only be set if the CaPool.IssuancePolicy.
523
+ # allow_requester_specified_not_before_time field is set to true for the issuing
524
+ # CaPool. If this field is specified, the certificate will be issued with this '
525
+ # not_before_time'. If this is not specified, the 'not_before_time' will be set
526
+ # to the issuance time or issuance time minus backdate_duration depending on the
527
+ # CaPool configuration.
528
+ # Corresponds to the JSON property `requestedNotBeforeTime`
529
+ # @return [String]
530
+ attr_accessor :requested_not_before_time
531
+
521
532
  # Describes fields that are relavent to the revocation of a Certificate.
522
533
  # Corresponds to the JSON property `revocationDetails`
523
534
  # @return [Google::Apis::PrivatecaV1::RevocationDetails]
@@ -551,6 +562,7 @@ module Google
551
562
  @pem_certificate = args[:pem_certificate] if args.key?(:pem_certificate)
552
563
  @pem_certificate_chain = args[:pem_certificate_chain] if args.key?(:pem_certificate_chain)
553
564
  @pem_csr = args[:pem_csr] if args.key?(:pem_csr)
565
+ @requested_not_before_time = args[:requested_not_before_time] if args.key?(:requested_not_before_time)
554
566
  @revocation_details = args[:revocation_details] if args.key?(:revocation_details)
555
567
  @subject_mode = args[:subject_mode] if args.key?(:subject_mode)
556
568
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -1439,6 +1451,18 @@ module Google
1439
1451
  class IssuancePolicy
1440
1452
  include Google::Apis::Core::Hashable
1441
1453
 
1454
+ # Optional. If set to true, allows requesters to specify the
1455
+ # requested_not_before_time field when creating a Certificate. Certificates
1456
+ # requested with this option enabled will have a 'not_before_time' equal to the
1457
+ # value specified in the request. The 'not_after_time' will be adjusted to
1458
+ # preserve the requested lifetime. The maximum time that a certificate can be
1459
+ # backdated with these options is 48 hours in the past. This option cannot be
1460
+ # set if backdate_duration is set.
1461
+ # Corresponds to the JSON property `allowRequesterSpecifiedNotBeforeTime`
1462
+ # @return [Boolean]
1463
+ attr_accessor :allow_requester_specified_not_before_time
1464
+ alias_method :allow_requester_specified_not_before_time?, :allow_requester_specified_not_before_time
1465
+
1442
1466
  # IssuanceModes specifies the allowed ways in which Certificates may be
1443
1467
  # requested from this CaPool.
1444
1468
  # Corresponds to the JSON property `allowedIssuanceModes`
@@ -1494,6 +1518,7 @@ module Google
1494
1518
 
1495
1519
  # Update properties of this object
1496
1520
  def update!(**args)
1521
+ @allow_requester_specified_not_before_time = args[:allow_requester_specified_not_before_time] if args.key?(:allow_requester_specified_not_before_time)
1497
1522
  @allowed_issuance_modes = args[:allowed_issuance_modes] if args.key?(:allowed_issuance_modes)
1498
1523
  @allowed_key_types = args[:allowed_key_types] if args.key?(:allowed_key_types)
1499
1524
  @backdate_duration = args[:backdate_duration] if args.key?(:backdate_duration)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PrivatecaV1
18
18
  # Version of the google-apis-privateca_v1 gem
19
- GEM_VERSION = "0.61.0"
19
+ GEM_VERSION = "0.62.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260318"
25
+ REVISION = "20260430"
26
26
  end
27
27
  end
28
28
  end
@@ -565,6 +565,7 @@ module Google
565
565
  property :pem_certificate, as: 'pemCertificate'
566
566
  collection :pem_certificate_chain, as: 'pemCertificateChain'
567
567
  property :pem_csr, as: 'pemCsr'
568
+ property :requested_not_before_time, as: 'requestedNotBeforeTime'
568
569
  property :revocation_details, as: 'revocationDetails', class: Google::Apis::PrivatecaV1::RevocationDetails, decorator: Google::Apis::PrivatecaV1::RevocationDetails::Representation
569
570
 
570
571
  property :subject_mode, as: 'subjectMode'
@@ -797,6 +798,7 @@ module Google
797
798
  class IssuancePolicy
798
799
  # @private
799
800
  class Representation < Google::Apis::Core::JsonRepresentation
801
+ property :allow_requester_specified_not_before_time, as: 'allowRequesterSpecifiedNotBeforeTime'
800
802
  property :allowed_issuance_modes, as: 'allowedIssuanceModes', class: Google::Apis::PrivatecaV1::IssuanceModes, decorator: Google::Apis::PrivatecaV1::IssuanceModes::Representation
801
803
 
802
804
  collection :allowed_key_types, as: 'allowedKeyTypes', class: Google::Apis::PrivatecaV1::AllowedKeyType, decorator: Google::Apis::PrivatecaV1::AllowedKeyType::Representation
@@ -84,8 +84,8 @@ module Google
84
84
  end
85
85
 
86
86
  # Lists information about the supported locations for this service. This method
87
- # lists locations based on the resource scope provided in the [
88
- # ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
87
+ # lists locations based on the resource scope provided in the
88
+ # ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
89
89
  # the method lists the public locations available to all projects. * **Project-
90
90
  # specific locations**: If `name` follows the format `projects/`project``, the
91
91
  # method lists locations visible to that specific project. This includes public,
@@ -96,8 +96,8 @@ module Google
96
96
  # @param [String] name
97
97
  # The resource that owns the locations collection, if applicable.
98
98
  # @param [Array<String>, String] extra_location_types
99
- # Optional. Do not use this field. It is unsupported and is ignored unless
100
- # explicitly documented otherwise. This is primarily for internal usage.
99
+ # Optional. Do not use this field unless explicitly documented otherwise. This
100
+ # is primarily for internal usage.
101
101
  # @param [String] filter
102
102
  # A filter to narrow down results to a preferred subset. The filtering language
103
103
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-privateca_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.61.0
4
+ version: 0.62.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-privateca_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.61.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.62.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-privateca_v1
62
62
  rdoc_options: []
63
63
  require_paths: