google-apis-privateca_v1 0.52.0 → 0.53.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 823480f19ca421868d3da85e10a625fe8728276d26af6505198f57fde2cad32c
|
4
|
+
data.tar.gz: 6957d78d7ddfa91d08cbb591921e138106aabcbe734c62943287b22fd5864458
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7153a5a79f889fecef042b40f56ce09744a35b577b2e1c17ba290aaa5eb1a1513d55448baf74d737a44d98410777bf16759a54bc2125443dbd3167cc6cbe4008
|
7
|
+
data.tar.gz: 3e5d8d89d1b9561a016cb21d69fae689fc79c1aa3c5ba4c9228b19c2635c47821808a4d67bc8087980284e142a07221e5f272791cc58ad3d1fba095e530f399a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-privateca_v1
|
2
2
|
|
3
|
+
### v0.53.0 (2025-06-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250528
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.52.0 (2025-05-04)
|
4
9
|
|
5
10
|
* 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
|
@@ -2292,6 +2325,26 @@ module Google
|
|
2292
2325
|
end
|
2293
2326
|
end
|
2294
2327
|
|
2328
|
+
# RelativeDistinguishedName specifies a relative distinguished name which will
|
2329
|
+
# be used to build a distinguished name.
|
2330
|
+
class RelativeDistinguishedName
|
2331
|
+
include Google::Apis::Core::Hashable
|
2332
|
+
|
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
|
2337
|
+
|
2338
|
+
def initialize(**args)
|
2339
|
+
update!(**args)
|
2340
|
+
end
|
2341
|
+
|
2342
|
+
# Update properties of this object
|
2343
|
+
def update!(**args)
|
2344
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
2345
|
+
end
|
2346
|
+
end
|
2347
|
+
|
2295
2348
|
# Describes fields that are relavent to the revocation of a Certificate.
|
2296
2349
|
class RevocationDetails
|
2297
2350
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.53.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250528"
|
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
|
|
@@ -328,6 +334,12 @@ module Google
|
|
328
334
|
include Google::Apis::Core::JsonObjectSupport
|
329
335
|
end
|
330
336
|
|
337
|
+
class RelativeDistinguishedName
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
331
343
|
class RevocationDetails
|
332
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
345
|
|
@@ -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
|
@@ -986,6 +1008,14 @@ module Google
|
|
986
1008
|
end
|
987
1009
|
end
|
988
1010
|
|
1011
|
+
class RelativeDistinguishedName
|
1012
|
+
# @private
|
1013
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1014
|
+
collection :attributes, as: 'attributes', class: Google::Apis::PrivatecaV1::AttributeTypeAndValue, decorator: Google::Apis::PrivatecaV1::AttributeTypeAndValue::Representation
|
1015
|
+
|
1016
|
+
end
|
1017
|
+
end
|
1018
|
+
|
989
1019
|
class RevocationDetails
|
990
1020
|
# @private
|
991
1021
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1047,6 +1077,8 @@ module Google
|
|
1047
1077
|
property :organizational_unit, as: 'organizationalUnit'
|
1048
1078
|
property :postal_code, as: 'postalCode'
|
1049
1079
|
property :province, as: 'province'
|
1080
|
+
collection :rdn_sequence, as: 'rdnSequence', class: Google::Apis::PrivatecaV1::RelativeDistinguishedName, decorator: Google::Apis::PrivatecaV1::RelativeDistinguishedName::Representation
|
1081
|
+
|
1050
1082
|
property :street_address, as: 'streetAddress'
|
1051
1083
|
end
|
1052
1084
|
end
|
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.
|
4
|
+
version: 0.53.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-privateca_v1/v0.53.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.
|
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: []
|