google-apis-privateca_v1 0.48.0 → 0.49.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: 54bf4375bc5927c4b4b0731592e7200920516d421b7725f7f473cac2dc800329
4
- data.tar.gz: 513eab4018593c7ade04a352f563e1c14c68fc80152cb4ef11440a1dfdd28b86
3
+ metadata.gz: 9271fe13d6bf58ddf7aabca52bd313a815c9a4b90db74ae3ddfb465d5245ea0d
4
+ data.tar.gz: bcecc9eadc7d8b054e4eb45260a96f4b0eec8e6b72d7edae5379b20eb893bb70
5
5
  SHA512:
6
- metadata.gz: 8ccd8097cf03a0013e47d7dd1ed449fc7fecea12c6a255809b1da8fcd8d1a3aac0b392bd18fd441a9732374e53048da926b315f9c39e6e1f94bdb39397fef83f
7
- data.tar.gz: 061aa3ca37e07d19166478d50753ac3557f0f86a736bd99d50e56ab6befbe576ef44ef00d1ac5f682779e8ccb6698883e72112b133ec7bfc37b03a697bb28b45
6
+ metadata.gz: 06b867006fdcfd017e5052a980a23797fd144e326277971665c895ff88d65114e5817534f9a4206a5ad50eb3f61e2c4d8d8b98bd7237093ebf9d5d9c58972e3a
7
+ data.tar.gz: 7903324492f9757dfd829db2d26009840ecf6aec6a35f5d28cd511844279ed54128ef4822dd507605e06bca00b924e8bf86299ed279e62163b32f81e746614b3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-privateca_v1
2
2
 
3
+ ### v0.49.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250219
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.48.0 (2024-12-15)
4
9
 
5
10
  * Regenerated from discovery document revision 20241204
@@ -636,6 +636,11 @@ module Google
636
636
  # @return [String]
637
637
  attr_accessor :update_time
638
638
 
639
+ # User-defined URLs for accessing content published by this CertificateAuthority.
640
+ # Corresponds to the JSON property `userDefinedAccessUrls`
641
+ # @return [Google::Apis::PrivatecaV1::UserDefinedAccessUrls]
642
+ attr_accessor :user_defined_access_urls
643
+
639
644
  def initialize(**args)
640
645
  update!(**args)
641
646
  end
@@ -661,6 +666,7 @@ module Google
661
666
  @tier = args[:tier] if args.key?(:tier)
662
667
  @type = args[:type] if args.key?(:type)
663
668
  @update_time = args[:update_time] if args.key?(:update_time)
669
+ @user_defined_access_urls = args[:user_defined_access_urls] if args.key?(:user_defined_access_urls)
664
670
  end
665
671
  end
666
672
 
@@ -1387,6 +1393,16 @@ module Google
1387
1393
  # @return [Array<Google::Apis::PrivatecaV1::AllowedKeyType>]
1388
1394
  attr_accessor :allowed_key_types
1389
1395
 
1396
+ # Optional. The duration to backdate all certificates issued from this CaPool.
1397
+ # If not set, the certificates will be issued with a not_before_time of the
1398
+ # issuance time (i.e. the current time). If set, the certificates will be issued
1399
+ # with a not_before_time of the issuance time minus the backdate_duration. The
1400
+ # not_after_time will be adjusted to preserve the requested lifetime. The
1401
+ # backdate_duration must be less than or equal to 48 hours.
1402
+ # Corresponds to the JSON property `backdateDuration`
1403
+ # @return [String]
1404
+ attr_accessor :backdate_duration
1405
+
1390
1406
  # An X509Parameters is used to describe certain fields of an X.509 certificate,
1391
1407
  # such as the key usage fields, fields specific to CA certificates, certificate
1392
1408
  # policy extensions and custom extensions.
@@ -1421,6 +1437,7 @@ module Google
1421
1437
  def update!(**args)
1422
1438
  @allowed_issuance_modes = args[:allowed_issuance_modes] if args.key?(:allowed_issuance_modes)
1423
1439
  @allowed_key_types = args[:allowed_key_types] if args.key?(:allowed_key_types)
1440
+ @backdate_duration = args[:backdate_duration] if args.key?(:backdate_duration)
1424
1441
  @baseline_values = args[:baseline_values] if args.key?(:baseline_values)
1425
1442
  @identity_constraints = args[:identity_constraints] if args.key?(:identity_constraints)
1426
1443
  @maximum_lifetime = args[:maximum_lifetime] if args.key?(:maximum_lifetime)
@@ -2798,6 +2815,35 @@ module Google
2798
2815
  end
2799
2816
  end
2800
2817
 
2818
+ # User-defined URLs for accessing content published by this CertificateAuthority.
2819
+ class UserDefinedAccessUrls
2820
+ include Google::Apis::Core::Hashable
2821
+
2822
+ # Optional. A list of URLs where the issuer CA certificate may be downloaded,
2823
+ # which appears in the "Authority Information Access" extension in the
2824
+ # certificate. If specified, the default GCS URLs will be omitted.
2825
+ # Corresponds to the JSON property `aiaIssuingCertificateUrls`
2826
+ # @return [Array<String>]
2827
+ attr_accessor :aia_issuing_certificate_urls
2828
+
2829
+ # Optional. A list of URLs where to obtain CRL information, i.e. the
2830
+ # DistributionPoint.fullName described by https://tools.ietf.org/html/rfc5280#
2831
+ # section-4.2.1.13. If specified, the default GCS URLs will be omitted.
2832
+ # Corresponds to the JSON property `crlAccessUrls`
2833
+ # @return [Array<String>]
2834
+ attr_accessor :crl_access_urls
2835
+
2836
+ def initialize(**args)
2837
+ update!(**args)
2838
+ end
2839
+
2840
+ # Update properties of this object
2841
+ def update!(**args)
2842
+ @aia_issuing_certificate_urls = args[:aia_issuing_certificate_urls] if args.key?(:aia_issuing_certificate_urls)
2843
+ @crl_access_urls = args[:crl_access_urls] if args.key?(:crl_access_urls)
2844
+ end
2845
+ end
2846
+
2801
2847
  # An X509Extension specifies an X.509 extension, which may be used in different
2802
2848
  # parts of X.509 objects like certificates, CSRs, and CRLs.
2803
2849
  class X509Extension
@@ -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.48.0"
19
+ GEM_VERSION = "0.49.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241204"
25
+ REVISION = "20250219"
26
26
  end
27
27
  end
28
28
  end
@@ -418,6 +418,12 @@ module Google
418
418
  include Google::Apis::Core::JsonObjectSupport
419
419
  end
420
420
 
421
+ class UserDefinedAccessUrls
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
421
427
  class X509Extension
422
428
  class Representation < Google::Apis::Core::JsonRepresentation; end
423
429
 
@@ -569,6 +575,8 @@ module Google
569
575
  property :tier, as: 'tier'
570
576
  property :type, as: 'type'
571
577
  property :update_time, as: 'updateTime'
578
+ property :user_defined_access_urls, as: 'userDefinedAccessUrls', class: Google::Apis::PrivatecaV1::UserDefinedAccessUrls, decorator: Google::Apis::PrivatecaV1::UserDefinedAccessUrls::Representation
579
+
572
580
  end
573
581
  end
574
582
 
@@ -762,6 +770,7 @@ module Google
762
770
 
763
771
  collection :allowed_key_types, as: 'allowedKeyTypes', class: Google::Apis::PrivatecaV1::AllowedKeyType, decorator: Google::Apis::PrivatecaV1::AllowedKeyType::Representation
764
772
 
773
+ property :backdate_duration, as: 'backdateDuration'
765
774
  property :baseline_values, as: 'baselineValues', class: Google::Apis::PrivatecaV1::X509Parameters, decorator: Google::Apis::PrivatecaV1::X509Parameters::Representation
766
775
 
767
776
  property :identity_constraints, as: 'identityConstraints', class: Google::Apis::PrivatecaV1::CertificateIdentityConstraints, decorator: Google::Apis::PrivatecaV1::CertificateIdentityConstraints::Representation
@@ -1115,6 +1124,14 @@ module Google
1115
1124
  end
1116
1125
  end
1117
1126
 
1127
+ class UserDefinedAccessUrls
1128
+ # @private
1129
+ class Representation < Google::Apis::Core::JsonRepresentation
1130
+ collection :aia_issuing_certificate_urls, as: 'aiaIssuingCertificateUrls'
1131
+ collection :crl_access_urls, as: 'crlAccessUrls'
1132
+ end
1133
+ end
1134
+
1118
1135
  class X509Extension
1119
1136
  # @private
1120
1137
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-privateca_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.48.0
4
+ version: 0.49.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-privateca_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.48.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.49.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-privateca_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Certificate Authority API V1
82
79
  test_files: []