google-apis-privateca_v1 0.52.0 → 0.54.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: ccc08b67c91d9d65494f3a299c443f4f3ccaf01a41aa0c11779821281b68d080
4
- data.tar.gz: 29b22a979b39606e8188ab7dac187735081e86945189f6852ab20ba382b4c445
3
+ metadata.gz: 5024c0cd7c6c77ea574e08342f6a3e059484e2f20656e9cb294b54c8cad36ddb
4
+ data.tar.gz: 2e1a55986f2c8924a5d72e9c832dfe7f62931686c15cf154275d8e56954fd22b
5
5
  SHA512:
6
- metadata.gz: a54f84a3d9023ab07c0d1ca1f1a79b2acca4908fda76b2426e35c9d79a46ac1f31e2326d426d2485eb5169c6f72ac664aef06b44386214ea0c452f4980ade1c8
7
- data.tar.gz: fb7bfb17ff1e55da791f9131dafee3df5b970d2a4f7cfd2bbbc99fafd67dd9a50a23ebea4f4afd53c0ae574c52657b45fa4cd23d8e5043881f9da6ac5067d380
6
+ metadata.gz: '051595c4b6e6efc5c5292c5bd396c7e033e2f3d7fb5ba3a5c3b0013ede74041ea483acfd6499a50f985973e10025e2aa96d8713b46a9ab6f043851024a50f4d6'
7
+ data.tar.gz: 0e3291c6a273ccaf1be16e981bf6aa44685f87dc9f2c2e8a227bb466351765315efd090bf994c61bdf5208a95406bce6b1c3da830b646b325d668f6b9e772454
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-privateca_v1
2
2
 
3
+ ### v0.54.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250901
6
+
7
+ ### v0.53.0 (2025-06-08)
8
+
9
+ * Regenerated from discovery document revision 20250528
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.52.0 (2025-05-04)
4
13
 
5
14
  * Regenerated using generator version 0.17.0
@@ -120,6 +120,39 @@ module Google
120
120
  end
121
121
  end
122
122
 
123
+ # AttributeTypeAndValue specifies an attribute type and value. It can use either
124
+ # a OID or enum value to specify the attribute type.
125
+ class AttributeTypeAndValue
126
+ include Google::Apis::Core::Hashable
127
+
128
+ # An ObjectId specifies an object identifier (OID). These provide context and
129
+ # describe types in ASN.1 messages.
130
+ # Corresponds to the JSON property `objectId`
131
+ # @return [Google::Apis::PrivatecaV1::ObjectIdProp]
132
+ attr_accessor :object_id_prop
133
+
134
+ # The attribute type of the attribute and value pair.
135
+ # Corresponds to the JSON property `type`
136
+ # @return [String]
137
+ attr_accessor :type
138
+
139
+ # The value for the attribute type.
140
+ # Corresponds to the JSON property `value`
141
+ # @return [String]
142
+ attr_accessor :value
143
+
144
+ def initialize(**args)
145
+ update!(**args)
146
+ end
147
+
148
+ # Update properties of this object
149
+ def update!(**args)
150
+ @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop)
151
+ @type = args[:type] if args.key?(:type)
152
+ @value = args[:value] if args.key?(:value)
153
+ end
154
+ end
155
+
123
156
  # Specifies the audit configuration for a service. The configuration determines
124
157
  # which permission types are logged, and what identities, if any, are exempted
125
158
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -332,6 +365,11 @@ module Google
332
365
  class CaPool
333
366
  include Google::Apis::Core::Hashable
334
367
 
368
+ # The configuration used for encrypting data at rest.
369
+ # Corresponds to the JSON property `encryptionSpec`
370
+ # @return [Google::Apis::PrivatecaV1::EncryptionSpec]
371
+ attr_accessor :encryption_spec
372
+
335
373
  # Defines controls over all certificate issuance within a CaPool.
336
374
  # Corresponds to the JSON property `issuancePolicy`
337
375
  # @return [Google::Apis::PrivatecaV1::IssuancePolicy]
@@ -367,6 +405,7 @@ module Google
367
405
 
368
406
  # Update properties of this object
369
407
  def update!(**args)
408
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
370
409
  @issuance_policy = args[:issuance_policy] if args.key?(:issuance_policy)
371
410
  @labels = args[:labels] if args.key?(:labels)
372
411
  @name = args[:name] if args.key?(:name)
@@ -1164,6 +1203,26 @@ module Google
1164
1203
  end
1165
1204
  end
1166
1205
 
1206
+ # The configuration used for encrypting data at rest.
1207
+ class EncryptionSpec
1208
+ include Google::Apis::Core::Hashable
1209
+
1210
+ # The resource name for a Cloud KMS key in the format `projects/*/locations/*/
1211
+ # keyRings/*/cryptoKeys/*`.
1212
+ # Corresponds to the JSON property `cloudKmsKey`
1213
+ # @return [String]
1214
+ attr_accessor :cloud_kms_key
1215
+
1216
+ def initialize(**args)
1217
+ update!(**args)
1218
+ end
1219
+
1220
+ # Update properties of this object
1221
+ def update!(**args)
1222
+ @cloud_kms_key = args[:cloud_kms_key] if args.key?(:cloud_kms_key)
1223
+ end
1224
+ end
1225
+
1167
1226
  # Represents a textual expression in the Common Expression Language (CEL) syntax.
1168
1227
  # CEL is a C-like expression language. The syntax and semantics of CEL are
1169
1228
  # documented at https://github.com/google/cel-spec. Example (Comparison): title:
@@ -2266,20 +2325,15 @@ module Google
2266
2325
  end
2267
2326
  end
2268
2327
 
2269
- # Operation metadata returned by the CLH during resource state reconciliation.
2270
- class ReconciliationOperationMetadata
2328
+ # RelativeDistinguishedName specifies a relative distinguished name which will
2329
+ # be used to build a distinguished name.
2330
+ class RelativeDistinguishedName
2271
2331
  include Google::Apis::Core::Hashable
2272
2332
 
2273
- # DEPRECATED. Use exclusive_action instead.
2274
- # Corresponds to the JSON property `deleteResource`
2275
- # @return [Boolean]
2276
- attr_accessor :delete_resource
2277
- alias_method :delete_resource?, :delete_resource
2278
-
2279
- # Excluisive action returned by the CLH.
2280
- # Corresponds to the JSON property `exclusiveAction`
2281
- # @return [String]
2282
- attr_accessor :exclusive_action
2333
+ # Attributes describes the attribute value assertions in the RDN.
2334
+ # Corresponds to the JSON property `attributes`
2335
+ # @return [Array<Google::Apis::PrivatecaV1::AttributeTypeAndValue>]
2336
+ attr_accessor :attributes
2283
2337
 
2284
2338
  def initialize(**args)
2285
2339
  update!(**args)
@@ -2287,8 +2341,7 @@ module Google
2287
2341
 
2288
2342
  # Update properties of this object
2289
2343
  def update!(**args)
2290
- @delete_resource = args[:delete_resource] if args.key?(:delete_resource)
2291
- @exclusive_action = args[:exclusive_action] if args.key?(:exclusive_action)
2344
+ @attributes = args[:attributes] if args.key?(:attributes)
2292
2345
  end
2293
2346
  end
2294
2347
 
@@ -2544,6 +2597,11 @@ module Google
2544
2597
  # @return [String]
2545
2598
  attr_accessor :province
2546
2599
 
2600
+ # This field can be used in place of the named subject fields.
2601
+ # Corresponds to the JSON property `rdnSequence`
2602
+ # @return [Array<Google::Apis::PrivatecaV1::RelativeDistinguishedName>]
2603
+ attr_accessor :rdn_sequence
2604
+
2547
2605
  # The street address of the subject.
2548
2606
  # Corresponds to the JSON property `streetAddress`
2549
2607
  # @return [String]
@@ -2562,6 +2620,7 @@ module Google
2562
2620
  @organizational_unit = args[:organizational_unit] if args.key?(:organizational_unit)
2563
2621
  @postal_code = args[:postal_code] if args.key?(:postal_code)
2564
2622
  @province = args[:province] if args.key?(:province)
2623
+ @rdn_sequence = args[:rdn_sequence] if args.key?(:rdn_sequence)
2565
2624
  @street_address = args[:street_address] if args.key?(:street_address)
2566
2625
  end
2567
2626
  end
@@ -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.52.0"
19
+ GEM_VERSION = "0.54.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250326"
25
+ REVISION = "20250901"
26
26
  end
27
27
  end
28
28
  end
@@ -40,6 +40,12 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class AttributeTypeAndValue
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
43
49
  class AuditConfig
44
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
51
 
@@ -166,6 +172,12 @@ module Google
166
172
  include Google::Apis::Core::JsonObjectSupport
167
173
  end
168
174
 
175
+ class EncryptionSpec
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
169
181
  class Expr
170
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
183
 
@@ -322,7 +334,7 @@ module Google
322
334
  include Google::Apis::Core::JsonObjectSupport
323
335
  end
324
336
 
325
- class ReconciliationOperationMetadata
337
+ class RelativeDistinguishedName
326
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
339
 
328
340
  include Google::Apis::Core::JsonObjectSupport
@@ -464,6 +476,16 @@ module Google
464
476
  end
465
477
  end
466
478
 
479
+ class AttributeTypeAndValue
480
+ # @private
481
+ class Representation < Google::Apis::Core::JsonRepresentation
482
+ property :object_id_prop, as: 'objectId', class: Google::Apis::PrivatecaV1::ObjectIdProp, decorator: Google::Apis::PrivatecaV1::ObjectIdProp::Representation
483
+
484
+ property :type, as: 'type'
485
+ property :value, as: 'value'
486
+ end
487
+ end
488
+
467
489
  class AuditConfig
468
490
  # @private
469
491
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -502,6 +524,8 @@ module Google
502
524
  class CaPool
503
525
  # @private
504
526
  class Representation < Google::Apis::Core::JsonRepresentation
527
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::PrivatecaV1::EncryptionSpec, decorator: Google::Apis::PrivatecaV1::EncryptionSpec::Representation
528
+
505
529
  property :issuance_policy, as: 'issuancePolicy', class: Google::Apis::PrivatecaV1::IssuancePolicy, decorator: Google::Apis::PrivatecaV1::IssuancePolicy::Representation
506
530
 
507
531
  hash :labels, as: 'labels'
@@ -711,6 +735,13 @@ module Google
711
735
  end
712
736
  end
713
737
 
738
+ class EncryptionSpec
739
+ # @private
740
+ class Representation < Google::Apis::Core::JsonRepresentation
741
+ property :cloud_kms_key, as: 'cloudKmsKey'
742
+ end
743
+ end
744
+
714
745
  class Expr
715
746
  # @private
716
747
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -978,11 +1009,11 @@ module Google
978
1009
  end
979
1010
  end
980
1011
 
981
- class ReconciliationOperationMetadata
1012
+ class RelativeDistinguishedName
982
1013
  # @private
983
1014
  class Representation < Google::Apis::Core::JsonRepresentation
984
- property :delete_resource, as: 'deleteResource'
985
- property :exclusive_action, as: 'exclusiveAction'
1015
+ collection :attributes, as: 'attributes', class: Google::Apis::PrivatecaV1::AttributeTypeAndValue, decorator: Google::Apis::PrivatecaV1::AttributeTypeAndValue::Representation
1016
+
986
1017
  end
987
1018
  end
988
1019
 
@@ -1047,6 +1078,8 @@ module Google
1047
1078
  property :organizational_unit, as: 'organizationalUnit'
1048
1079
  property :postal_code, as: 'postalCode'
1049
1080
  property :province, as: 'province'
1081
+ collection :rdn_sequence, as: 'rdnSequence', class: Google::Apis::PrivatecaV1::RelativeDistinguishedName, decorator: Google::Apis::PrivatecaV1::RelativeDistinguishedName::Representation
1082
+
1050
1083
  property :street_address, as: 'streetAddress'
1051
1084
  end
1052
1085
  end
@@ -87,8 +87,8 @@ module Google
87
87
  # @param [String] name
88
88
  # The resource that owns the locations collection, if applicable.
89
89
  # @param [Array<String>, String] extra_location_types
90
- # Optional. A list of extra location types that should be used as conditions for
91
- # controlling the visibility of the locations.
90
+ # Optional. Do not use this field. It is unsupported and is ignored unless
91
+ # explicitly documented otherwise. This is primarily for internal usage.
92
92
  # @param [String] filter
93
93
  # A filter to narrow down results to a preferred subset. The filtering language
94
94
  # 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.52.0
4
+ version: 0.54.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.52.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.54.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Certificate Authority API V1
79
79
  test_files: []